/* =========================================
VARIÁVEIS E CONFIGURAÇÕES GERAIS
========================================= */
:root {
    /* Paleta de Cores (Fundo Preto, Letras Prata, Detalhes Ouro) */
    --primary-color: #000000; /* Preto Principal para Fundo Total */
    --primary-dark: #000000; /* Fundo absoluto reforçado */
    
    --gold: #D4AF37; /* Dourado Nobre para Logo, Destaques Mínimos e VIP */
    --silver: #E0E0E0; /* Prata substituindo o branco antigo e Vinho */
    --silver-dark: #A9A9A9; /* Prata escuro para hover e textos secundários */
    
    --text-color: #E0E0E0; /* Prata para textos corridos */
    --text-light: #A9A9A9; /* Prata escuro para detalhes */
    --white: #ffffff; /* Mantido para áreas muito pontuais, mas evitado */
    
    /* Fontes */
    --font-title: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-color); /* Fundo Preto Absoluto */
    color: var(--text-color); /* Escrita Prata Padrão */
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--font-title);
    font-weight: 700;
}

a { text-decoration: none; }
ul { list-style: none; }

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

/* =========================================
2. BARRA DE PREVISÃO DO TEMPO E NOTÍCIAS (TICKER)
========================================= */
.weather-ticker {
    background: var(--primary-dark);
    color: var(--white);
    padding: 10px 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gold); /* Detalhe Ouro na borda inferior */
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
    display: flex;
}

.ticker-item {
    display: inline-block;
    white-space: nowrap;
    will-change: transform;
    animation: ticker 50s linear infinite;
}

.ticker-item:hover {
    animation-play-state: paused;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =========================================
3. MENU DE NAVEGAÇÃO (NAVBAR)
========================================= */
.navbar {
    background: rgba(0, 0, 0, 0.98); /* Fundo Preto para Navbar */
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 40px;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border-bottom: 2px solid var(--gold); /* Borda Ouro substituindo Vinho */
    backdrop-filter: blur(5px);
    transition: top 0.3s;
}

.nav-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    color: var(--silver); /* Links Prata */
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: 0.3s;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--gold); /* Hover Ouro */
}

.btn-nav {
    border: 2px solid var(--gold); /* Borda Ouro */
    padding: 6px 20px;
    border-radius: 50px;
    color: var(--gold) !important;
}

.btn-nav:hover {
    background: var(--gold);
    color: var(--primary-dark) !important; /* Texto Preto no botão Ouro */
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--gold); /* Ícone Ouro */
    cursor: pointer;
}

/* =========================================
4. HERO SECTION (CAPA E CARD GRANDE COM CARROSSEL)
========================================= */
.hero {
    background: var(--primary-color); /* Fundo Preto */
    min-height: auto;
    padding-top: 130px; 
    padding-bottom: 0px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    position: relative;
}

.hero-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.logo-container {
    margin-bottom: 0px;
    margin-top: 30px; 
}

.logo-container img {
    max-width: 100%;
    width: 380px;
    height: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
}

.logo-container img:hover {
    transform: scale(1.02);
}

/* === CARD GRANDE DA PIZZARIA === */
.sponsor-banner {
    margin-top: 40px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 500px; 
}

.sponsor-card-large {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--gold);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sponsor-ribbon {
    position: absolute;
    top: -12px;
    left: -12px;
    background: linear-gradient(135deg, #F8E192, #D4AF37, #AA8529);
    color: #000;
    padding: 8px 25px;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    box-shadow: 2px 5px 15px rgba(0,0,0,0.6);
    transform: rotate(-8deg);
    z-index: 10;
}

.sponsor-carousel {
    position: relative;
    width: 100%;
    height: 350px; 
    border-radius: 10px;
    overflow: hidden;
    border: none; 
    background: #000;
}

.carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: top center; 
    opacity: 0;
    transition: opacity 1s ease-in-out; 
}

.logo-slide {
    object-fit: contain !important;
    padding: 20px;
    background-color: var(--primary-dark);
}

.carousel-img.active {
    opacity: 1;
}

.sponsor-text-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sponsor-title-large {
    color: var(--silver);
    font-family: var(--font-title);
    font-size: 1.8rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sponsor-award-large {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.sponsor-paragraph {
    color: var(--silver-dark);
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 25px;
    max-width: 90%;
}

.btn-sponsor {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37, #AA8529);
    color: var(--primary-dark);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.3s;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-sponsor:hover {
    background: var(--primary-dark);
    color: var(--gold);
    border-color: var(--gold);
    transform: scale(1.05);
}

.hero-text-section {
    background: var(--primary-color);
    padding: 20px 0 30px 0; /* Padding reduzido embaixo para colar no novo scroller */
    text-align: center; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

.location-badge {
    display: inline-block;
    background: var(--primary-color);
    border: 1px solid var(--gold); 
    color: var(--gold);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-text-section h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--silver); 
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-text-section .subtitle {
    font-size: 1.1rem;
    color: var(--silver-dark); 
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* =========================================
   NOVA ROLAGEM FLUÍDA DE CONDOMÍNIOS
========================================= */
.condo-scroller {
    width: 100%;
    overflow: hidden;
    background: var(--primary-color);
    padding: 10px 0 60px 0;
    position: relative;
}

.scroller-track {
    display: flex;
    width: max-content;
    animation: scroll-condos 45s linear infinite;
}

.scroller-track:hover {
    animation-play-state: paused;
}

.scroller-item {
    color: var(--silver-dark);
    font-size: 0.95rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.scroller-item .ano {
    color: var(--gold);
    font-size: 0.8rem;
    margin-left: 10px;
    opacity: 0.8;
}

.scroller-item::after {
    content: '★';
    color: var(--gold);
    opacity: 0.4;
    margin-left: 30px;
    font-size: 0.6rem;
}

@keyframes scroll-condos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

/* =========================================
5. QUEM SOMOS & AD BOX
========================================= */
.about-detailed {
    padding: 80px 0;
    background: var(--primary-color); 
    border-top: 1px solid rgba(255,255,255,0.1);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: flex-start;
}

.about-content h3 {
    color: var(--gold); 
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--silver); 
}

.check-list {
    margin-top: 15px;
    list-style: none;
}

.check-list li {
    margin-bottom: 10px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    color: var(--silver);
}

.check-list i {
    color: var(--gold); 
    margin-right: 12px;
    font-size: 1rem;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ad-box-container {
    background: var(--primary-dark);
    height: 300px;
    width: 100%;
    border: 3px solid var(--gold); 
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    padding: 20px;
}

.ad-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.ad-link img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.ad-link:hover img {
    transform: scale(1.05);
}

.vip-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gold); 
    color: var(--primary-dark);
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 2;
    pointer-events: none; 
}

.services-list-text {
    background: rgba(255,255,255,0.05); 
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--gold); 
    font-size: 0.95rem;
    color: var(--silver);
}

.services-list-text ul {
    list-style: disc;
    margin-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* =========================================
SEÇÃO: HISTÓRIA VIVA
========================================= */
.history-section {
    padding: 80px 0;
    background: rgba(255,255,255,0.02); 
}

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

.history-img-wrapper {
    position: relative;
}

.history-img-wrapper img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s;
}

.history-img-wrapper img:hover {
    transform: scale(1.02);
}

.history-text h3 {
    color: var(--gold); 
    font-size: 2rem;
    margin-bottom: 20px;
}

.history-text p {
    color: var(--silver); 
}

.history-text .highlight {
    color: var(--gold); 
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

/* =========================================
SEÇÃO: VOCÊ NO CHURRASCO
========================================= */
.bbq-section {
    padding: 80px 0;
    background: var(--primary-color); 
    border-top: 1px solid rgba(255,255,255,0.1);
}

.bbq-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bbq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 30px;
    align-items: center;
}

.bbq-content {
    order: 1;
}

.bbq-image {
    order: 2;
}

.bbq-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.bbq-content h3 {
    color: var(--gold); 
    font-size: 2rem;
    margin-bottom: 15px;
}

.bbq-content p {
    color: var(--silver); 
}

.bbq-list {
    margin-top: 20px;
}

.bbq-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    color: var(--silver);
}

.bbq-list li::before {
    content: "🍖";
    position: absolute;
    left: 0;
    top: 0;
}

/* =========================================
6. SEÇÃO DICAS
========================================= */
.sindico-section {
    padding: 80px 0;
    background: var(--primary-color); 
    border-top: 1px solid rgba(255,255,255,0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: var(--silver); 
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.divider {
    width: 80px;
    height: 3px;
    background: var(--gold); 
    margin: 10px auto;
}

.sindico-profile {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    background: rgba(255,255,255,0.03); 
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.sindico-photo {
    text-align: center;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
}

.sindico-photo img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--gold); 
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    margin-bottom: 15px;
}

.sindico-name {
    font-family: var(--font-title);
    color: var(--silver);
    font-size: 1.4rem;
    font-weight: bold;
}

.sindico-bio {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--silver);
}

.sindico-bio p {
    margin-bottom: 15px;
}

/* =========================================
7. SEÇÃO DE NOTÍCIAS (COM AUTO-SCROLL)
========================================= */
.news-section {
    padding: 20px 0 40px 0; 
    background: var(--primary-color); 
}

.section-header-news {
    margin-bottom: 40px;
}

.section-header-news h2 {
    font-size: 3.2rem; 
    margin-bottom: 0px;
    font-family: var(--font-title);
}

.classic-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto;
    color: var(--gold);
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1rem;
    letter-spacing: 2px;
}

.classic-divider::before,
.classic-divider::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background-color: var(--gold);
    margin: 0 15px;
    opacity: 0.8;
}

.news-wrapper { 
    width: 100%; 
    overflow: hidden; 
    position: relative; 
}

.news-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 25px;
    padding-bottom: 30px;
    scroll-behavior: smooth;
    -ms-overflow-style: none;  
    scrollbar-width: none;  
}

.news-grid::-webkit-scrollbar {
    display: none;
}

.news-card {
    background: var(--primary-dark); 
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    border: 2px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    flex: 0 0 320px; 
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.8);
    border-color: var(--gold); 
}

.news-image {
    height: 200px;
    background-color: rgba(255,255,255,0.05);
    background-size: cover;
    background-position: center;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold); 
    color: var(--primary-dark);
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.news-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 0.8rem;
    color: var(--gold); 
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.news-card h3 {
    font-size: 1.3rem;
    color: var(--silver); 
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-card p {
    font-size: 0.95rem;
    color: var(--silver-dark); 
    margin-bottom: 20px;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--gold); 
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0;
    text-align: left;
    font-family: var(--font-body);
    text-decoration: underline;
}

.read-more-btn:hover { color: var(--silver); }

/* --- ESTILO DA JANELA MODAL (POP-UP) --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9); 
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--primary-dark); 
    margin: 5% auto;
    padding: 40px;
    border: 1px solid var(--gold); 
    width: 90%;
    max-width: 800px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    animation: fadeDown 0.4s;
}

.close-modal {
    color: var(--gold); 
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover { color: var(--white); }

.modal-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.modal-title {
    color: var(--silver); 
    font-size: 2rem;
    margin-bottom: 10px;
    font-family: var(--font-title);
}

.modal-date {
    color: var(--gold); 
    font-weight: bold;
    margin-bottom: 20px;
    display: block;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.modal-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--silver); 
    white-space: pre-wrap;
}

/* =========================================
SEÇÃO: APOIO PIX / MARKETING
========================================= */
.pix-section {
    padding: 60px 0;
    background: rgba(255,255,255,0.02); 
    border-top: 1px solid rgba(255,255,255,0.1);
}

.pix-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary-dark); 
    padding: 40px 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    border-left: 6px solid var(--gold); 
    border-right: 6px solid var(--gold);
    gap: 40px;
}

.pix-text {
    flex: 1;
}

.pix-text h2 {
    color: var(--silver); 
    font-size: 2.2rem;
}

/* =========================================
8. PARCEIROS E FORMULÁRIO DE CONTATO
========================================= */
.supporters-section {
    padding: 80px 0;
    background: rgba(255,255,255,0.02); 
    text-align: center;
}

.supporters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
    justify-items: center;
    margin: 40px auto;
    max-width: 900px;
}

.supporter-card {
    background: transparent;
    padding: 0;
    border-radius: 0;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.supporter-card:hover {
    transform: scale(1.08);
}

.supporter-card img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5));
}

.btn-primary {
    display: inline-block;
    background: var(--gold); 
    color: var(--primary-dark); 
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    transition: 0.3s;
    margin-top: 20px;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.contact-section {
    padding: 80px 0;
    background: var(--primary-dark); 
    color: var(--silver);
    text-align: center;
}

.form-box {
    max-width: 600px;
    margin: 0 auto;
}

.main-form {
    margin-top: 30px;
    background: rgba(255,255,255,0.02); 
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.05);
}

.input-group {
    margin-bottom: 20px;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--primary-dark); 
    color: var(--silver); 
    outline: none;
}

.input-group input:focus,
.input-group select:focus {
    box-shadow: 0 0 0 3px var(--gold); 
    border-color: var(--gold);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--gold); 
    border: none;
    border-radius: 8px;
    color: var(--primary-dark);
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background: var(--silver);
    color: var(--primary-dark);
}

/* =========================================
10. FOOTER & EXTRAS
========================================= */
footer {
    background: var(--primary-color); 
    color: var(--silver);
    text-align: center;
    padding: 50px 0 30px 0;
    border-top: 5px solid var(--gold); 
}

.footer-socials {
    margin-bottom: 20px;
}

.footer-socials a {
    color: var(--silver);
    font-size: 1.5rem;
    margin: 0 12px;
    transition: 0.3s;
}

.footer-socials a:hover {
    color: var(--gold);
}

footer p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    z-index: 2000;
    transition: 0.3s;
}

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

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-down { animation: fadeDown 1s ease-out; }
.animate-fade-up { animation: fadeUp 1s ease-out 0.5s backwards; }

/* =========================================
11. RESPONSIVO (MOBILE E TABLET)
========================================= */
@media (max-width: 992px) {
}

@media (max-width: 768px) {
    .navbar { top: 38px; }

    .hero { 
        min-height: auto; 
        padding-top: 100px;
    }

    .hero-text-section h1 { font-size: 1.8rem; }

    .logo-container img { width: 280px; }

    .about-grid, .history-grid, .bbq-grid { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }

    .ad-box-container { height: 250px; }

    .pix-container {
        flex-direction: column;
        text-align: center;
    }

    .supporters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .sindico-profile { 
        flex-direction: column; 
        text-align: center; 
        padding: 30px;
        gap: 20px;
    }

    .sindico-photo { position: static; }
    .bbq-content { order: 2; }
    .bbq-image { order: 1; }
    .menu-toggle { display: block; }
    .nav-content { justify-content: flex-end; }

    .nav-links {
        display: none; 
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-dark); 
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        text-align: center;
        border-bottom: 2px solid var(--gold);
    }

    .nav-links.active { display: flex; }

    .modal-content { 
        width: 95%; 
        margin: 20% auto; 
        padding: 20px; 
    }
}

@media (max-width: 480px) {
    .sponsor-carousel {
        height: 250px; 
    }
    
    .sponsor-title-large {
        font-size: 1.3rem; 
    }
    
    .sponsor-paragraph {
        font-size: 0.95rem;
    }

    .section-header-news h2 {
        font-size: 2.5rem; 
    }
    
    /* Responsivo para o scroller fluído */
    .scroller-item {
        font-size: 0.85rem;
    }
}