/* Variáveis baseadas na Identidade Visual da Neia Doces */
:root {
    --pink-primary: #f2427a; /* Rosa vibrante da logo Neia */
    --pink-light: #ffd6e4;   /* Rosa clarinho do fundo */
    --brown-dark: #8c5d4f;   /* Marrom da forminha do doce */
    --bg-cream: #fdf1ec;     /* Creme do fundo do selo */
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-cream);
    color: var(--brown-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- CABEÇALHO --- */
.site-header {
    background-color: var(--pink-light);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000; 
}

.header-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    max-height: 110px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--brown-dark);
    font-weight: 600;
    transition: color 0.3s ease;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--pink-primary);
}

/* --- 1. HERO SECTION (Lado a Lado) --- */
.hero {
    background-color: var(--bg-cream); 
    padding: 60px 0;
}

.hero-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-image-box {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(140, 93, 79, 0.15);
    border: 1px solid var(--pink-primary);
}

.hero-image-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px;
}

.hero-content {
    flex: 1;
    text-align: center;
    padding: 0;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    color: var(--pink-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--brown-dark);
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 0; 
}

@media (max-width: 850px) {
    .hero-container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
        padding-top: 20px;
    }
}

/* --- 2. QUEM SOMOS --- */
.about-us {
    padding: 80px 20px;
    text-align: center;
}

.section-title-elegant {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--pink-primary);
    margin-bottom: 50px;
}

.about-split {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1050px;
    margin: 0 auto;
    gap: 60px;
}

.about-quote-side {
    flex: 1;
    text-align: right;
    padding-right: 60px;
    border-right: 1px solid rgba(140, 93, 79, 0.3);
}

.about-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--pink-primary);
    line-height: 1.7;
}

.about-story-side {
    flex: 1;
    text-align: left;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--brown-dark);
    line-height: 1.7;
}

.about-story-side p {
    margin-bottom: 20px;
}

.about-story-side p:last-child {
    margin-bottom: 0;
}

.about-story-side strong {
    color: var(--pink-primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .about-split {
        flex-direction: column;
        gap: 30px;
    }
    .about-quote-side {
        text-align: center;
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(140, 93, 79, 0.3);
        padding-bottom: 30px;
    }
    .about-story-side {
        text-align: justify;
    }
}

/* --- TÍTULO PADRÃO DE SEÇÕES --- */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--pink-primary);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--brown-dark);
    font-size: 1.1rem;
}

/* --- 3. NOSSOS FAVORITOS --- */
.favorites {
    padding: 20px 20px 80px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: center;
    border: 1px solid var(--pink-light);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(242, 66, 122, 0.15); 
}

.product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 2px solid var(--bg-cream);
}

.fallback-img {
    object-fit: contain !important;
    padding: 30px;
    background-color: var(--pink-light);
}

.product-info {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.3rem;
    color: var(--brown-dark);
    margin-bottom: 10px;
}

.product-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
}

.price {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--pink-primary);
    margin-bottom: 20px; 
}

.btn-order {
    display: inline-block;
    background-color: var(--brown-dark);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    width: 100%;
}

.btn-order:hover {
    background-color: var(--pink-primary);
}

.favorites-actions {
    text-align: center;
    margin-top: 50px;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--pink-primary);
    color: var(--pink-primary);
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-outline:hover {
    background-color: var(--pink-primary);
    color: var(--white);
}

.btn-primary {
    display: inline-block;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

/* --- 4. DEPOIMENTOS DE CLIENTES --- */
.testimonials {
    background-color: var(--pink-light); 
    padding: 80px 0;
    margin-bottom: 80px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--brown-dark);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-family: 'Playfair Display', serif;
    color: var(--pink-primary);
    font-size: 1.2rem;
}

/* --- 5. PERGUNTAS FREQUENTES (FAQ) --- */
.faq {
    padding-bottom: 80px;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--pink-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--pink-primary);
    box-shadow: 0 4px 12px rgba(242, 66, 122, 0.08);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-question h3 {
    color: var(--pink-primary);
    font-size: 1.2rem;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--pink-primary);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 30px;
}

.faq-answer p {
    color: var(--brown-dark);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    padding-bottom: 25px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-question {
    padding-bottom: 15px;
}

/* --- 6. CHAMADA FINAL --- */
.final-cta {
    display: flex;
    justify-content: center;
    padding-bottom: 80px;
}

.whatsapp-cta {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 2px dashed var(--pink-primary);
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.whatsapp-cta p {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
    color: var(--brown-dark);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25D366; 
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: background 0.3s, transform 0.3s;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: scale(1.05); 
}

.wa-icon {
    width: 26px;
    height: 26px;
}

/* --- RODAPÉ --- */
.site-footer {
    background-color: var(--brown-dark, #8c5d4f);
    color: var(--white, #ffffff);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    max-height: 160px;
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
    border-radius: 0;
}

.catchphrase {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 25px;
    color: #fdf1ec;
    max-width: 280px;
    line-height: 1.4;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: var(--white, #ffffff);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--pink-primary, #f2427a);
    transform: translateY(-3px);
}

.social-icons svg {
    width: 22px;
    height: 22px;
}

.footer-col h3 {
    color: var(--pink-light, #ffd6e4);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.info-icon {
    color: var(--pink-light, #ffd6e4);
    background-color: rgba(255,255,255,0.05);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 22px;
    height: 22px;
}

.info-text strong {
    display: block;
    color: var(--pink-light, #ffd6e4);
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.info-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    color: #fdf1ec;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* --- WIDGETS FLUTUANTES (WhatsApp e Tradutor) --- */

/* Estilos do Botão do WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Cor oficial do WhatsApp */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.floating-whatsapp:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.floating-whatsapp svg {
    width: 35px;
    height: 35px;
}

/* Força a bandeira do GTranslate a ficar acima do WhatsApp */
/* O plugin cria um ID #gt_float_wrapper, usaremos o !important para sobescrever o CSS deles */
.gtranslate_wrapper,
#gt_float_wrapper {
    position: fixed !important;
    bottom: 95px !important; /* Altura do Botão do WhatsApp (60) + Margem (20) + Espaçamento (15) = 95px */
    right: 20px !important;
    z-index: 9999 !important;
}

/* Responsividade dos Widgets Flutuantes para Celulares */
@media (max-width: 768px) {
    .floating-whatsapp {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
    .floating-whatsapp svg {
        width: 30px;
        height: 30px;
    }
    .gtranslate_wrapper,
    #gt_float_wrapper {
        bottom: 85px !important; /* Altura do Botão Mobile (55) + Margem (15) + Espaçamento (15) = 85px */
        right: 15px !important;
    }
}