/* Hero Section */
@import 'hero.css';

/* Products Grid */
.products-section {
    padding: 2rem;
    /*background-color: #f9f9f9; /* Fundo claro para contraste */
	background-color: #fff; /* Fundo branco */
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    /*color: #333; /* Cor do título */
	color: #000; /* Título em preto */
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Duas colunas */
    gap: 1rem; /* Espaço entre os cards */
   /* justify-items: center; /* Centraliza os cards na coluna */
   /* align-items: stretch; /* Faz os cards terem a mesma altura */
}

.product-card {
    /*background: white; /* Fundo branco para destacar os cards */
	background-color: #f3f4fe; /* Fundo lilás claro */
    border: 1px solid #ddd; /* Borda sutil */
    border-radius: 8px; /* Bordas arredondadas */
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra leve */
    /*text-align: center; */
	text-align: left; /* Alinhamento do conteúdo à esquerda */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card h3 {
    font-size: 1.25rem;
	font-weight: bold;
    /*color: #4f46e5; /* Destaque no título */
	color: #333; /* Cor do título */
    margin-bottom: 0.5rem;
}

.product-card p {
    font-size: 1rem;
    color: #555; /* Texto menos destacado */
}

.product-card:hover {
    transform: translateY(-3px); /* Eleva o card no hover */
    /*box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* Sombra mais forte no hover */
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15); /* Sombra mais forte no hover */
}




/* Product Details */
.product-details {
    padding: 2rem;
    background-color: #f9f9f9; /* Fundo claro semelhante à seção anterior */
    text-align: center;
	max-width: 1200px; /* Define um limite para o conteúdo */
    margin: 0 auto; /* Centraliza a seção na página */
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #000; /* Consistência no título */
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Três colunas */
    gap: 1.5rem; /* Espaço entre os itens */
    width: 100%; /* Garante que ocupe a largura total */
}

.detail-item {
    background-color: #f3f4fe; /* Fundo lilás claro para continuidade visual */
    border-radius: 8px; /* Bordas arredondadas */
    padding: 1.5rem;
    text-align: left; /* Alinhamento do texto à esquerda */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Sombra leve */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	/*height: 100%; /* Faz os itens ocuparem a mesma altura */
}


.detail-item h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333; /* Destaque no título */
    margin-bottom: 0.5rem;
}

.detail-item p {
    font-size: 1rem;
    color: #555; /* Cor do texto */
}

.detail-item:hover {
    transform: translateY(-3px); /* Eleva o item no hover */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15); /* Sombra mais forte no hover */
}


.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.home-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.home-link:hover {
    color: #666;
}

.logo img {
    height: 40px;
    width: auto;
}

.products-link {
    background-color: #6366f1;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.products-link:hover {
    /* background-color: #4f46e5; */
	transform: scale(1.05); /* Aumenta levemente o botão ao passar o mouse */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #333;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #666;
}

.admin-button {
    background: none;
    border: none;
    color: #333;
    font-size: 1.25rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.admin-button:hover {
    color: #666;
}

/* Rodapé */
.footer-img-container {
    position: relative;
    display: flex;
    flex-direction: column; /* Organiza itens em coluna */
    align-items: center; /* Centraliza itens horizontalmente */
    max-width: 200px; /* Limite de largura do contêiner */
    margin: 0 auto; /* Centraliza no rodapé */
    text-align: center;
}

/* Imagem */
.footer-img {
    max-width: 100%; /* Garante que a imagem não ultrapasse o contêiner */
    height: auto;
    display: block;
}

/* Texto adicional */
.footer-text {
    margin-top: 0.2rem; /* Espaçamento entre os textos */
    font-size: 1rem;
    color: #333; /* Cor mais escura para contraste */
    text-align: center;
    font-weight: 500;
}

.footer-social {
    margin-top: 1rem;
    text-align: center;
}

.footer-social .social-link {
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.footer-social .social-link:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
}

.canecas-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #4f46e5; /* Adjust this color to match your design */
}

.feature h4 {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.feature p {
    font-size: 0.875rem;
    color: #6b7280; /* Adjust this color to match your design */
}

.caixas-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.caixas-features .feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.caixas-features .feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #4f46e5; /* Adjust this color to match your design */
}

.caixas-features .feature h4 {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.caixas-features .feature p {
    font-size: 0.875rem;
    color: #6b7280; /* Adjust this color to match your design */
}

.whatsapp-link {
    color: #25D366 !important;
}

.topos-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.topos-features .feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.topos-features .feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #4f46e5; /* Adjust this color to match your design */
}

.topos-features .feature h4 {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.topos-features .feature p {
    font-size: 0.875rem;
    color: #6b7280; /* Adjust this color to match your design */
}

.contact-section {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 3rem;
}

.contact-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    padding-left: 3rem;
}

.step-number {
    position: absolute;
    left: 0;
    font-size: 2.25rem;
    font-weight: bold;
    color: #333;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.step-content p {
    color: #666;
    font-size: 1rem;
}

.chevron-shape {
    position: relative;
    width: 5%;
    height: 60px;
    background-color: #836FFF;
    clip-path: polygon(0% 0%, 100% 0%, 80% 85%, 50% 80%, 80% 85%);
    position: absolute;
    left: 0;
    top: 10px;
    z-index: -1;
}

.admin-dialog {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.admin-dialog-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.admin-dialog-content h2 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.admin-dialog-content input {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.admin-dialog-content button {
    background-color: var(--primary-gold);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    margin: 0.5rem;
    transition: background-color 0.3s ease;
}

.admin-dialog-content button:hover {
    background-color: var(--primary-pink);
}

.entrar-button {
    background-color: #DAA520 !important;
}

.close-button {
    background-color: #999 !important;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-left {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        width: 100%;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr; /* Em telas menores, apenas 1 coluna */
    }
	
	.details-grid {
        grid-template-columns: 1fr; /* Uma coluna em telas menores */
    }
	
	.caixas-table {
        margin-left: -1rem;
        margin-right: -1rem;
        padding: 0 1rem;
    }
	
	.contact-section {
        padding: 3rem 1rem;
    }

    .contact-step {
        padding-left: 2rem;
    }

    .chevron-shape {
        height: 50px;
    }
}