/* ==========================================================================
   1. IMPORTAÇÕES, VARIÁVEIS E CONFIGURAÇÕES BASE
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght=300;400;500;600;700&display=swap');

:root {
    /* Paleta Solicitada: Vinho, Cinza e Preto */
    --primary-color: #722F37;      /* Vermelho Vinho Principal */
    --primary-dark: #551C23;       /* Vinho Escuro para Hovers */
    --primary-light: #E297A1;      /* Rosê/Vinho Claro para contrastes escuros */
    --secondary-color: #1A1A1A;    /* Preto Asfalto / Dark principal */
    --accent-color: #555555;       /* Cinza Médio */
    --neutral-gray: #EEEEEE;       /* Cinza Claro para fundos alternados */
    
    /* Cores de Texto e Interface */
    --text-dark: #222222;
    --text-light: #F4F4F4;
    --background-light: #FFFFFF;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
    --transition-smooth: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #F9F9F9;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Utilitário de Acessibilidade */
.sr-only-focusable {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
}

/* ==========================================================================
   2. COMPONENTES REUTILIZÁVEIS (TÍTULOS, BOTÕES E BLOCOS)
   ========================================================================== */
.section {
    padding: 90px 0;
}

.section-header-block {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 0.9em;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.6em;
    color: var(--secondary-color);
    font-weight: 700;
}

.accent-line {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    transition: var(--transition-smooth);
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(114, 47, 55, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(114, 47, 55, 0.4);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: #3A3A3A;
    transform: translateY(-2px);
}

.btn-secondary-outline {
    background-color: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.btn-secondary-outline:hover {
    background-color: var(--text-light);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* ==========================================================================
   3. HEADER & NAVEGAÇÃO
   ========================================================================== */
.header {
    background-color: var(--background-light);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

/* Classe engatada via JS ao rolar */
.header-scrolled {
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-link {
    text-decoration: none;
}

.logo {
    font-size: 1.6em;
    color: var(--primary-color);
    font-weight: 700;
}

.logo-sub {
    color: var(--secondary-color);
    font-weight: 400;
}

.chef-icon {
    font-size: 0.8em;
    margin-left: 5px;
    color: var(--primary-color);
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-link {
    text-decoration: none;
    color: var(--accent-color);
    font-weight: 500;
    font-size: 0.95em;
    padding: 8px 0;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link i {
    font-size: 0.85em;
    margin-right: 4px;
    opacity: 0.7;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-top-cta {
    background-color: #25D366; /* Verde estável do Whats para ações diretas */
    color: #FFF;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.btn-top-cta:hover {
    background-color: #1ebd58;
    transform: scale(1.03);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4em;
    cursor: pointer;
    color: var(--secondary-color);
}

/* ==========================================================================
   4. SEÇÃO HERO
   ========================================================================== */
.hero {
    background: linear-gradient(rgba(26, 26, 26, 0.75), rgba(26, 26, 26, 0.85)), 
                url('placeholder-chef.jpg') no-repeat center center/cover;
    color: var(--text-light);
    padding: 120px 0;
    min-height: 650px;
    display: flex;
    align-items: center;
}

.hero-container-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
}

.tagline-badge {
    background-color: rgba(114, 47, 55, 0.4);
    border-left: 3px solid var(--primary-light);
    padding: 6px 15px;
    display: inline-block;
    margin-bottom: 20px;
    border-radius: 0 4px 4px 0;
}

.tagline {
    font-size: 0.95em;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

.hero-title {
    font-size: 3.4em;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.text-highlight {
    color: var(--primary-light);
}

.intro-text {
    font-size: 1.15em;
    margin-bottom: 35px;
    font-weight: 300;
    opacity: 0.95;
}

.intro-text strong {
    font-weight: 600;
    color: var(--primary-light);
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 35px;
}

.service-area-badge {
    font-size: 0.9em;
    opacity: 0.85;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.hero-visual-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 380px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    position: relative;
    box-shadow: var(--shadow-md);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background-color: var(--primary-color);
    padding: 15px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.experience-badge .number {
    display: block;
    font-size: 1.8em;
    font-weight: 700;
    color: #FFF;
}

.experience-badge .desc {
    font-size: 0.75em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   5. SEÇÃO SOBRE A CHEF
   ========================================================================== */
.sobre-section {
    background-color: var(--background-light);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.image-placeholder-avatar {
    background-color: var(--neutral-gray);
    height: 450px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4em;
    color: #BBB;
    border-bottom: 6px solid var(--primary-color);
    box-shadow: var(--shadow-md);
}

.sobre-text-box h3 {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.sobre-text-box p {
    margin-bottom: 15px;
    color: #555;
}

.sobre-pillars {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.pillar-item {
    flex: 1;
    background: var(--background-light);
    border: 1px solid #EAEA") no-repeat center;
    border: 1px solid #EAEAEA;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.pillar-item i {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 8px;
    display: block;
}

.pillar-item span {
    font-size: 0.85em;
    font-weight: 600;
    color: var(--secondary-color);
}

/* ==========================================================================
   6. SEÇÃO SERVIÇOS
   ========================================================================== */
.services-section {
    background-color: var(--neutral-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: var(--background-light);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border-top: 4px solid transparent;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--primary-color);
}

.service-icon-wrapper {
    width: 65px;
    height: 65px;
    background-color: rgba(114, 47, 55, 0.08);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon {
    font-size: 1.8em;
    color: var(--primary-color);
}

.service-item h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-item p {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 20px;
}

.service-bullets {
    list-style: none;
    border-top: 1px solid #EEE;
    padding-top: 15px;
}

.service-bullets li {
    font-size: 0.85em;
    color: #444;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-bullets li i {
    color: #25D366;
}

/* ==========================================================================
   7. SEÇÃO CARDÁPIO & PORTFÓLIO VISUAL
   ========================================================================== */
.cardapio-section {
    background-color: var(--background-light);
}

.cardapio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.cardapio-card {
    background: var(--background-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #EAEAEA;
    transition: var(--transition-smooth);
}

.cardapio-card:hover {
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
}

.card-image-placeholder {
    height: 220px;
    background-color: #F0EAEB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    color: var(--primary-color);
    opacity: 0.8;
    position: relative;
}

.badge-cardapio {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--secondary-color);
    color: #FFF;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: 500;
}

.card-info {
    padding: 25px;
}

.card-info h3 {
    font-size: 1.25em;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.card-info p {
    font-size: 0.9em;
    color: #666;
}

/* ==========================================================================
   8. SEÇÃO COMO FUNCIONA (LINHA DO TEMPO)
   ========================================================================== */
.funcionamento-section {
    background-color: var(--neutral-gray);
}

.timeline-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    width: 3px;
    height: 100%;
    background-color: rgba(114, 47, 55, 0.2);
}

.timeline-step {
    position: relative;
    margin-bottom: 45px;
    padding-left: 80px;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    top: 0;
    left: 12px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1em;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.step-content {
    background: var(--background-light);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.step-content h3 {
    font-size: 1.25em;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.step-content p {
    font-size: 0.95em;
    color: #555;
}

/* ==========================================================================
   9. SEÇÃO BENEFÍCIOS
   ========================================================================== */
.benefits-section {
    background: linear-gradient(var(--secondary-color), #2A2A2A);
    color: var(--text-light);
}

.benefits-section .section-title {
    color: var(--text-light);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.benefit-icon-box {
    font-size: 2.2em;
    color: var(--primary-light);
    margin-bottom: 15px;
}

.benefit-card h4 {
    font-size: 1.25em;
    margin-bottom: 10px;
    font-weight: 600;
}

.benefit-card p {
    font-size: 0.9em;
    opacity: 0.8;
}

/* ==========================================================================
   10. SEÇÃO DEPOIMENTOS
   ========================================================================== */
.depoimentos-section {
    background-color: var(--background-light);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.depoimento-card {
    background-color: #FFF;
    border: 1px solid #EAEAEA;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.stars-row {
    color: #FFC107;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.depoimento-text {
    font-style: italic;
    font-size: 0.95em;
    color: #444;
    margin-bottom: 20px;
}

.depoimento-author {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #EEE;
    padding-top: 15px;
}

.author-name {
    font-weight: 600;
    color: var(--secondary-color);
}

.author-location {
    font-size: 0.8em;
    color: var(--accent-color);
}

/* ==========================================================================
   11. SEÇÃO FAQ (PERGUNTAS FREQUENTES)
   ========================================================================== */
.faq-section {
    background-color: var(--neutral-gray);
}

.faq-accordion-container {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--background-light);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-size: 1.05em;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: #555;
    font-size: 0.95em;
}

/* Classes controladas pelo JS */
.faq-item.open .faq-answer {
    max-height: 250px;
    padding-bottom: 20px;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

/* ==========================================================================
   12. SEÇÃO CONTATO & FORMULÁRIO DE CAPTAÇÃO
   ========================================================================== */
.contato-form-section {
    background-color: var(--background-light);
}

.grid-contato-ajuste {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.contato-info-side h3 {
    font-size: 2em;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.contato-info-side p {
    color: #666;
    margin-bottom: 30px;
}

.contato-cards-pequenos .c-card {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    background: var(--neutral-gray);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9em;
    color: var(--secondary-color);
    font-weight: 500;
}

.contato-cards-pequenos .c-card i {
    font-size: 1.3em;
    color: var(--primary-color);
}

/* Form */
.portfolio-form {
    background-color: #FFF;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid #EAEAEA;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-element {
    margin-bottom: 20px;
}

.form-element label {
    display: block;
    font-size: 0.85em;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 6px;
}

.form-element input,
.form-element select,
.form-element textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #EAEAEA;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95em;
    transition: var(--transition-smooth);
}

.form-element input:focus,
.form-element select:focus,
.form-element textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.btn-submit-form {
    width: 100%;
    background-color: var(--primary-color);
    color: #FFF;
    border: none;
    padding: 15px;
    font-size: 1em;
}

/* ==========================================================================
   13. RODAPÉ (FOOTER)
   ========================================================================== */
.footer {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 60px 0 0 0;
}

.footer-wrapper-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #FFF;
}

.text-vinhoclaro {
    color: var(--primary-light);
}

.footer-brand-text {
    font-size: 0.9em;
    opacity: 0.8;
    margin-bottom: 20px;
}

.social-icons-row {
    display: flex;
    gap: 15px;
}

.social-icons-row a {
    color: var(--text-light);
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-icons-row a:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-links-side h4,
.footer-contact-side h4 {
    font-size: 1.1em;
    margin-bottom: 20px;
    border-left: 3px solid var(--primary-color);
    padding-left: 10px;
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 10px;
}

.footer-links-list a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9em;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.footer-links-list a:hover {
    opacity: 1;
    color: var(--primary-light);
    padding-left: 5px;
}

.main-cta-paragraph {
    font-size: 0.9em;
    margin-bottom: 12px;
    opacity: 0.8;
}

.footer-whatsapp-link {
    background-color: #25D366;
    color: #FFF;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.footer-whatsapp-link:hover {
    background-color: #1ebd58;
}

.footer-geo-text {
    font-size: 0.8em;
    opacity: 0.7;
}

/* Sub-Rodapé Barra de Créditos */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    margin-top: 20px;
    font-size: 0.8em;
}

.bottom-bar-wrapper {
    display: flex;
    justify-content: space-between;
    opacity: 0.6;
}

/* ==========================================================================
   14. CLASSES DE ANIMAÇÃO DO SCROLL REVEAL (JS)
   ========================================================================== */
.reveal-hidden {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   15. RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.8em; }
    .hero-container-grid { grid-template-columns: 1fr; }
    .hero-visual-card { display: none; } /* Oculta elemento figurativo em tablets */
    .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
    .grid-contato-ajuste { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .section-title { font-size: 2em; }
    
    /* Configuração Menu Mobile Ativo */
    .menu-toggle { display: block; }
    
    .nav-menu {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--background-light);
        box-shadow: var(--shadow-md);
        padding: 20px 0;
    }

    .nav-menu.active { display: block; }
    .nav-list { flex-direction: column; gap: 0; }
    
    .nav-item {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #F0F0F0;
    }
    
    .nav-item:last-child { border-bottom: none; }
    .nav-link { display: block; padding: 15px 0; }
    .nav-link::after { display: none; }
    
    .btn-top-cta { display: none; } /* Deixa apenas a ação principal na Hero */
    
    .hero { text-align: center; padding: 80px 0; }
    .hero-cta-group { flex-direction: column; width: 100%; }
    .hero-cta-group .btn { width: 100%; }
    
    .form-group-row { grid-template-columns: 1fr; gap: 0; }
    .footer-wrapper-grid { grid-template-columns: 1fr; gap: 30px; }
    .bottom-bar-wrapper { flex-direction: column; text-align: center; gap: 10px; }
    .timeline-wrapper::before { left: 20px; }
    .step-number { left: 2px; }
    .timeline-step { padding-left: 55px; }
}