:root {
    --primary: #e63946; /* Vermelho Brasa */
    --secondary: #ffb703; /* Amarelo/Laranja Batata */
    --dark-bg: #1a1513; /* Marrom Bem Escuro/Carvão */
    --light-bg: #fdfaf7; /* Off-White confortável para ler */
    --text-dark: #2b221e;
    --text-light: #ffffff;
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --transition-pop: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); /* Efeito elástico sutil */
    --transition-fade: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--text-dark);
}

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

.text-center { text-align: center; }

/* Header Comercial */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    z-index: 100;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-bg);
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary);
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    margin-left: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

nav a:hover { color: var(--primary); }

.btn-nav {
    background: var(--primary);
    color: white !important;
    padding: 8px 18px;
    border-radius: 6px;
}

/* Banner Hero */
.hero {
    height: 90vh;
    /* Adicionado o ../ no início do caminho da imagem */
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.4)), 
                url('/assets/img/costela-banner.webp') no-repeat center center/cover;
	background-attachment: fixed !important; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    margin-top: 60px;
}


/*
.hero {
    height: 90vh;
     Substitua a linha antiga de background por esta: 
    background: linear-gradient(135deg, #1f0505 0%, #0d0202 50%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    margin-top: 60px;
}
*/

/*
.hero {
    height: 90vh;
     Substitua a linha antiga de background por esta: 
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #ff0000 100%) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    margin-top: 60px;
}
*/


/* Pequeno ajuste no título para destacar perfeitamente sobre o degradê */
.hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--text-light);
    text-transform: uppercase;
    line-height: 1.1;
    margin: 15px 0;
    max-width: 800px;
    /* Brilho sutil atrás das letras para dar profundidade cinematográfica */
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6); 
}


.badge {
    background: var(--secondary);
    color: var(--dark-bg);
    padding: 5px 15px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}


.hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

/* Botões Populares */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: white;
    text-decoration: none;
    padding: 15px 35px;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
    transition: var(--transition-pop);
}

.btn-primary:hover {
    transform: scale(1.05);
    background: #cc2a36;
}

/* Grade de Cards */
.menu-section h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-transform: uppercase;
}

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

.card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.card-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    font-weight: 700;
    font-size: 0.75rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark-bg);
}

.card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 20px;
}

.btn-card {
    display: block;
    text-align: center;
    background: var(--dark-bg);
    color: white;
    text-decoration: none;
    padding: 10px;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition-pop);
}

.btn-card:hover {
    background: var(--primary);
}

/* Seção CTA */
.cta-section {
    background: var(--dark-bg);
    color: white;
    overflow: hidden;
	padding: 80px 40px 100px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
}

.cta-section p {
    color: #b3a7a2;
    margin-bottom: 30px;
    line-height: 1.6;
}

.mockup-wrapper img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* ==========================================
   CLASSES DE TRANSIÇÃO (REVEAL NO SCROLL)
============================================ */
.hidden-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-fade);
}

.hidden-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: var(--transition-fade);
}

.hidden-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: var(--transition-fade);
}

.hidden-right {
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition-fade);
}

/* Classe ativada via JS */
.show-element {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Responsivo */
@media (max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
    nav { display: none; }
	.logo{font-size: 1.3rem}
}

/* ==========================================
   SEÇÃO DE HORÁRIOS
============================================ */
.horarios-section {
    background: #f7f1eb;
    padding: 20px 0;
}

.horarios-wrapper {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.02);
}

.horarios-section h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-transform: uppercase;
}

.subtitle {
    color: #666;
    margin-bottom: 40px;
}

.horarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.horario-card {
    background: var(--light-bg);
    padding: 30px 20px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.05);
}

.horario-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.horario-card .horas {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 5px;
}

.horario-card .obs {
    font-size: 0.85rem;
    color: #777;
}

/* Card Destaque (Domingo) */
.horario-card.destaque {
    background: var(--dark-bg);
    color: #ffffff;
    border-color: var(--secondary);
    position: relative;
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.horario-card.destaque h3 { color: #ffffff; }
.horario-card.destaque .horas { color: var(--secondary); }
.horario-card.destaque .obs { color: #b3a7a2; }

.mini-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--dark-bg);
    padding: 2px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.aviso {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* ==========================================
   SEÇÃO DE AVALIAÇÕES (DEPOIMENTOS)
============================================ */
.avaliacoes-section h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-transform: uppercase;
}

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

.depoimento-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.estrelas {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.texto-depoimento {
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.autor strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
}

.autor span {
    display: block;
    font-size: 0.8rem;
    color: #999;
}

/* Ajuste Responsivo para o card empilhado */
@media (max-width: 768px) {
    .horario-card.destaque {
        transform: scale(1);
        margin: 10px 0;
    }
}


/* ==========================================
   SEÇÃO FAQ (PERGUNTAS FREQUENTES)
============================================ */
.faq-section {
    background: var(--light-bg);
    padding: 40px 0;
}

.faq-section h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espaço entre cada pergunta */
}

.faq-item {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
    overflow: hidden; /* Garante que o texto escondido não vaze */
    transition: border-color 0.3s ease;
}

/* Quando a pergunta estiver aberta, destaca sutilmente a borda */
.faq-item.active {
    border-color: var(--primary);
}

/* Botão da Pergunta */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

/* Ícone Animado (Transforma o + em -) */
.faq-icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0; /* Impede o ícone de amassar em textos longos */
    margin-left: 20px;
}

/* Linha Horizontal do + */
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: currentColor;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Linha horizontal */
.faq-icon::before {
    top: 7px;
    left: 0;
    width: 100%;
    height: 2px;
}

/* Linha vertical */
.faq-icon::after {
    top: 0;
    left: 7px;
    width: 2px;
    height: 100%;
}

/* Animação do ícone quando ativo: a linha vertical some girando */
.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

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

/* Container da Resposta (Inicia fechado e invisível) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Espaçamento interno da resposta para evitar quebras no cálculo da altura */
.faq-answer-content {
    padding: 0 25px 25px 25px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

