/* =======================================================
   VARS & RESET GLOBAL
======================================================= */
:root {
    --bg: #050505;
    --bg-darker: #000000;
    --red: #bd1f2d;
    --text: #f5f5f5;
    --muted: #555555;
    --border: #1a1a1a;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

.text-red { color: var(--red); }
.text-white { color: #fff; }
.text-center { text-align: center; }
.bg-darker { background-color: var(--bg-darker); }
.bg-white { background-color: #fff; }
.mt-4 { margin-top: 40px; }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* =======================================================
   BOTÕES (Pílulas)
======================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.btn-large {
    padding: 20px 40px; /* Reduzido o botão pra acompanhar o texto */
    font-size: 1.05rem;
}

.btn-pill {
    padding: 12px 30px;
    font-size: 0.9rem;
}

.btn-red {
    background-color: var(--red);
    color: #fff;
}

.btn-red:hover {
    background-color: #a01824;
    transform: scale(1.05);
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid var(--muted);
}

.btn-outline:hover {
    border-color: #fff;
    background-color: rgba(255,255,255,0.05);
}

/* =======================================================
   NAVEGAÇÃO FLUTUANTE
======================================================= */
.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px 10px 30px;
    z-index: 9999;
}

.floating-nav .logo img {
    height: 35px;
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #aaa;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

/* =======================================================
   HERO SECTION & LOGO GIGANTE
======================================================= */
.hero {
    position: relative;
    min-height: 100vh; /* Ajuste suave na altura */
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(189,31,45,0.15) 0%, rgba(0,0,0,0) 70%); /* Menos forte no vermelho */
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
}

.mega-logo {
    width: 80%;
    max-width: 500px; /* <-- REDUZIDO DRASTICAMENTE PARA DAR MAIS CONFORTO */
    height: auto;
    margin: 0 auto 30px auto;
    display: block;
    filter: drop-shadow(0px 10px 30px rgba(0, 0, 0, 0.5));
    animation: floatLogo 6s ease-in-out infinite;
}

.footer-mega-logo {
    width: 100%;
    max-width: 350px; /* Reduzido no rodapé tb */
    height: auto;
    margin: 0 auto;
    display: block;
    opacity: 0.9;
}

@keyframes floatLogo {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.4rem); /* Texto levemente menor */
    color: #888;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* =======================================================
   LETREIRO INFINITO (Marquee)
======================================================= */
.marquee-container {
    width: 100%;
    background-color: var(--red);
    padding: 15px 0; /* Menos largo */
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    transform: rotate(-1.5deg) scale(1.05); /* Rotação mais suave */
    margin: 50px 0 80px;
}

.marquee-content {
    display: inline-block;
    animation: scroll-marquee 25s linear infinite;
}

.marquee-content span {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem; /* Fonte menor */
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    padding-right: 50px;
}

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

/* =======================================================
   ESPAÇAMENTOS GERAIS
======================================================= */
.section {
    padding: 120px 0; /* Espaçamento menor entre blocos */
}

.section-heading {
    font-size: clamp(2.5rem, 5vw, 4.5rem); /* Títulos muito mais controlados e charmosos */
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* =======================================================
   SEÇÕES DE VERSÍCULOS
======================================================= */
.main-verse {
    padding: 80px 20px 100px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(189, 31, 45, 0.1) 0%, var(--bg) 70%);
}

.huge-verse {
    font-size: clamp(1.8rem, 4vw, 3.5rem); /* Texto muito mais amigável */
    font-weight: 900;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: -1px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.verse-ref {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.verse-divider {
    background-color: var(--red);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.verse-divider p {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem); /* Menor */
    font-weight: 700;
    line-height: 1.4;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
}

.verse-divider span {
    display: block;
    margin-top: 25px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* =======================================================
   SOBRE E VALORES
======================================================= */
.about-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.about-title-area { flex: 1; }
.about-text-area { flex: 1.5; }

.lead-paragraph {
    font-size: 1.6rem; /* Reduzido de 2rem para leitura fácil */
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 2rem;
}

.about-text-area p:not(.lead-paragraph) {
    font-size: 1.1rem; /* Texto descritivo mais suave */
    line-height: 1.8;
    color: #aaa; /* Um pouquinho mais claro para contraste */
    margin-bottom: 1.5rem;
}

.vision-box {
    background: rgba(189, 31, 45, 0.05);
    border-left: 4px solid var(--red);
    padding: 30px;
    border-radius: 0 20px 20px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.value-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.value-card:hover { transform: translateY(-8px); border-color: rgba(255,255,255,0.1); }
.value-card i { font-size: 2rem; color: var(--red); margin-bottom: 15px; }
.value-card h4 { font-size: 1.3rem; margin-bottom: 10px; }
.value-card p { color: #888; font-size: 0.95rem; line-height: 1.5; }

/* =======================================================
   JORNADA DO DISCÍPULO
======================================================= */
.journey-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.journey-step {
    background: #111;
    padding: 12px 25px;
    border-radius: 50px;
    border: 1px solid var(--border);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s;
}

.journey-step:hover { transform: scale(1.05); border-color: #333; }

.journey-step span {
    background: rgba(255,255,255,0.1);
    color: #fff;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 0.8rem;
}

.journey-arrow {
    color: var(--muted);
    font-size: 1.2rem;
}

/* =======================================================
   AGENDA MINIMALISTA COM DESTAQUES VISUAIS
======================================================= */
.text-pink { color: #F472B6; }
.text-yellow { color: #FACC15; }
.text-green { color: #4ADE80; }
.mt-2 { margin-top: 20px; }

.schedule-list {
    border-top: 1px solid var(--border);
}

.schedule-item {
    display: grid;
    grid-template-columns: 1fr 3fr;
    align-items: center;
    padding: 40px 20px;
    border-bottom: 1px solid var(--border);
    transition: all 0.4s ease;
}

.schedule-item:hover {
    background-color: rgba(255,255,255,0.02);
}

.schedule-day {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--muted);
}

.event-block h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
    font-weight: 900;
    text-transform: uppercase;
}

.event-block p {
    font-size: 1rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

/* O Segredo do Destaque (Sem Texto) */
.highlight-item {
    background: linear-gradient(90deg, rgba(189, 31, 45, 0.08) 0%, transparent 100%);
    border-left: 6px solid var(--red);
}

.highlight-item:hover {
    background: linear-gradient(90deg, rgba(189, 31, 45, 0.15) 0%, transparent 100%);
    padding-left: 30px;
}

/* =======================================================
   NOVO GRID DINÂMICO DE CÉLULAS E CIDADES
======================================================= */
.city-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem; /* Menor */
    color: #fff;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

.cells-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: 50px;
}

.cell-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.cell-card:hover {
    border-color: var(--red);
    transform: translateY(-5px);
    background: rgba(189, 31, 45, 0.05);
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cell-bairro {
    color: var(--red);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}
.cell-card > .cell-bairro { margin-bottom: 8px; }

.cell-name {
    font-size: 1.4rem; /* Nome da Célula Reduzido e mais elegante */
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}

.cell-leaders {
    font-size: 0.95rem;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cell-leaders i {
    color: rgba(255,255,255,0.3);
}

/* Badge Acessibilidade Libras */
.badge-libras {
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
}
.badge-libras i { color: #3b82f6; }

/* Contraste absoluto para Cartões Vermelhos */
.cell-card.bg-red {
    background-color: var(--red);
    border-color: var(--red);
}

.cell-card.bg-red:hover {
    background-color: #a01824; 
}

.cell-card.bg-red .text-white,
.cell-card.bg-red .text-white i {
    color: #ffffff !important;
}

.cell-card.bg-red .cell-leaders {
    color: rgba(255,255,255,0.9) !important;
}

/* =======================================================
   BARRA DE PESQUISA (CÉLULAS)
======================================================= */
.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-container i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 1.1rem;
}

.search-container input {
    width: 100%;
    padding: 15px 50px 15px 50px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: #111;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.search-container input:focus {
    border-color: var(--red);
    box-shadow: 0 0 15px rgba(189, 31, 45, 0.2);
    background: #1a1a1a;
}

.search-container input {
    width: 100%;
    padding: 15px 50px 15px 50px; /* Atualizado para caber o botão */
    border-radius: 50px;
    border: 1px solid var(--border);
    background: #111;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.search-container input:focus {
    border-color: var(--red);
    box-shadow: 0 0 15px rgba(189, 31, 45, 0.2);
    background: #1a1a1a;
}

/* NOVO: BOTÃO GPS */
.geo-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--red);
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s, color 0.3s;
    padding: 5px;
    outline: none;
}

.geo-btn:hover {
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

/* DISTÂNCIA DA CÉLULA */
.dist-info .badge-libras {
    background: var(--red) !important;
    font-size: 0.75rem;
    padding: 6px 12px;
    box-shadow: 0 4px 10px rgba(189, 31, 45, 0.4);
}
.dist-info .badge-libras i {
    color: #fff !important;
}

/* =======================================================
   LIDERANÇA
======================================================= */
.leadership-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: space-between;
}

.lead-text { flex: 1; }
.lead-text p { font-size: 1.15rem; color: #aaa; line-height: 1.6; max-width: 500px; }

.lead-image-oval {
    width: 100%;
    max-width: 450px; /* Reduzido levemente o oval dos pastores */
    height: 550px;
    border-radius: 300px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    flex-shrink: 0;
}

.lead-image-oval img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}

/* =======================================================
   MÍDIA E APPS
======================================================= */
.media-universe {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.circle-card {
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s ease;
}

.circle-card i { font-size: 3.5rem; margin-bottom: 15px; }
.circle-card span { font-family: 'Montserrat', sans-serif; font-size: 1.3rem; font-weight: 700; text-transform: uppercase; }

.circle-card.spotify:hover { background: #1DB954; color: #000; border-color: #1DB954; }
.circle-card.youtube:hover { background: #FF0000; color: #fff; border-color: #FF0000; }

.app-download-area { padding: 30px; }

/* =======================================================
   MAPA 100VH
======================================================= */
.map-section {
    position: relative;
    width: 100%;
    height: 90vh; /* Tirou 10% da tela para não parecer preso */
    min-height: 500px;
    background-color: #111;
}

.map-section iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    filter: grayscale(100%) invert(90%) contrast(1.2);
}

.map-overlay-card {
    position: absolute;
    bottom: 10%;
    left: 10%;
    z-index: 2;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    max-width: 350px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.map-overlay-card h3 { font-size: 1.6rem; margin-bottom: 10px; color: #fff; }
.map-overlay-card p { font-size: 1rem; color: #ccc; margin-bottom: 20px; line-height: 1.5; }

/* =======================================================
   CTA SECTION & SUPER FOOTER
======================================================= */
.cta-section {
    background-color: var(--bg-darker);
    padding: 120px 20px;
    border-top: 1px solid var(--border);
}

.super-footer {
    padding: 80px 0 30px;
    background-color: var(--red);
    color: #fff;
}

.footer-top {
    border-bottom: 2px solid rgba(255,255,255,0.2);
    padding-bottom: 30px;
    margin-bottom: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.footer-info h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    opacity: 0.7;
    text-transform: uppercase;
}

.footer-info p { font-size: 1.1rem; line-height: 1.5; }

.contact-icons { display: flex; flex-direction: column; gap: 12px; }
.contact-icons a { display: flex; align-items: center; gap: 10px; font-size: 1rem; color: #f5f5f5; transition: color 0.3s; }
.contact-icons a i { font-size: 1.2rem; color: rgba(255,255,255,0.5); }
.contact-icons a:hover, .contact-icons a:hover i { color: #fff; }

.social-icons-row { display: flex; gap: 12px; }
.social-icons-row a {
    width: 50px; height: 50px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: #fff;
    transition: all 0.3s ease;
}

.social-icons-row a[title="Instagram"]:hover { background-color: #E1306C; border-color: #E1306C; transform: translateY(-5px); }
.social-icons-row a[title="Facebook"]:hover { background-color: #1877F2; border-color: #1877F2; transform: translateY(-5px); }
.social-icons-row a[title="YouTube"]:hover { background-color: #FF0000; border-color: #FF0000; transform: translateY(-5px); }

.footer-bottom { text-align: center; opacity: 0.5; font-size: 0.85rem; }
.footer-bottom a:hover { color: #fff; opacity: 1 !important; }

/* =======================================================
   RESPONSIVO
======================================================= */
@media (max-width: 1024px) {
    .schedule-item { grid-template-columns: 1fr; gap: 15px; text-align: center; padding: 30px 0; }
    .highlight-item { border-left: none; border-top: 6px solid var(--red); }
    .highlight-item:hover { padding-left: 0; padding-top: 35px; }
    .about-wrapper { flex-direction: column; gap: 30px; }
    .leadership-wrapper { flex-direction: column; text-align: center; gap: 40px; }
    .lead-image-oval { width: 100%; height: 400px; border-radius: 200px; }
    .media-universe { grid-template-columns: 1fr; }
    .circle-card { aspect-ratio: auto; padding: 50px; border-radius: 100px; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* =======================================================
   RESPONSIVO E MOBILE
======================================================= */
@media (max-width: 1024px) {
    .schedule-item { grid-template-columns: 1fr; gap: 15px; text-align: center; padding: 30px 0; }
    .highlight-item { border-left: none; border-top: 6px solid var(--red); }
    .highlight-item:hover { padding-left: 0; padding-top: 35px; }
    .about-wrapper { flex-direction: column; gap: 30px; }
    .leadership-wrapper { flex-direction: column; text-align: center; gap: 40px; }
    .lead-image-oval { width: 100%; height: 400px; border-radius: 200px; }
    .media-universe { grid-template-columns: 1fr; }
    .circle-card { aspect-ratio: auto; padding: 50px; border-radius: 100px; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    /* Esconde os links de texto do menu */
    .nav-links { display: none; }
    
    /* 1. CORREÇÃO DO MENU MOBILE (Evitar sobreposição) */
    .floating-nav { 
        padding: 8px 15px; 
        width: 95%; 
        gap: 10px; /* Garante que nunca vão se encostar */
    }
    .floating-nav .logo img { 
        height: 24px; /* Logo menorzinha */
        max-width: 130px;
        object-fit: contain;
    }
    .floating-nav .btn { 
        padding: 10px 15px; 
        font-size: 0.75rem; /* Botão mais delicado */
        white-space: nowrap; /* Impede o botão de quebrar a linha */
    }

    /* Outros ajustes gerais do mobile */
    .hero-actions { flex-direction: column; width: 100%; }
    .btn-large { width: 100%; }
    .mega-logo { width: 100%; padding: 0 20px; }
    .map-overlay-card { bottom: 5%; left: 5%; right: 5%; max-width: none; }
    .journey-flow { flex-direction: column; gap: 8px; }
    .journey-arrow { transform: rotate(90deg); }

    /* 2. CORREÇÃO DA LISTA DE CÉLULAS (2 por linha e compactas) */
    .cells-grid {
        grid-template-columns: repeat(2, 1fr); /* Força 2 colunas lado a lado */
        gap: 10px; /* Diminui o buraco entre elas */
        margin-bottom: 30px;
    }
    .cell-card {
        padding: 15px 12px; /* Tira o excesso de respiro para caber na tela */
        border-radius: 10px;
    }
    .flex-between {
        flex-direction: column; /* Coloca os selos (ex: Libras) embaixo do bairro */
        align-items: flex-start;
        gap: 5px;
    }
    .cell-bairro {
        font-size: 0.65rem; /* Bairro menor */
    }
    .badge-libras {
        font-size: 0.55rem;
        padding: 3px 6px;
    }
    .cell-name {
        font-size: 1.1rem; /* Título menor para caber bonito */
        margin-bottom: 8px;
        line-height: 1.2;
    }
    .cell-leaders {
        font-size: 0.8rem; /* Nomes menores */
        align-items: flex-start;
    }
    .dist-info .badge-libras {
        font-size: 0.65rem;
        padding: 5px 8px;
        width: 100%;
        justify-content: center; /* Centraliza o selo da distância */
    }
}

/* Proteção para celulares EXTREMAMENTE finos (ex: iPhone 5/SE) */
@media (max-width: 360px) {
    .cells-grid {
        grid-template-columns: 1fr; /* Volta para 1 por linha se o celular for um tijolinho */
    }
}
/* =======================================================
   BANNER DE COOKIES (LGPD)
======================================================= */
.cookie-banner {
    position: fixed;
    bottom: -150px; 
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    z-index: 99999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
    bottom: 30px; 
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cookie-content p {
    font-size: 0.85rem;
    color: #ccc;
    line-height: 1.5;
    margin: 0;
}

/* =======================================================
   MODAL DE POLÍTICA DE PRIVACIDADE
======================================================= */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #111;
    border: 1px solid var(--border);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    padding: 40px;
    position: relative;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.modal-overlay.open .modal-content {
    transform: translateY(0);
}

.modal-content h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.modal-content p {
    font-size: 1rem;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 15px;
}

.modal-close-btn {
    background: var(--bg);
    border: 1px solid var(--border);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-top: 20px;
    width: 100%;
    transition: background 0.3s;
}

.modal-close-btn:hover {
    background: var(--red);
    border-color: var(--red);
}

/* Modal Responsivo */
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        padding: 20px;
        text-align: center;
        width: 95%;
    }
    .cookie-banner.show { bottom: 15px; }
    .cookie-content { flex-direction: column; gap: 10px; }
    .cookie-banner .btn { width: 100%; }
    .modal-content { padding: 30px 20px; }
}

.cell-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative; /* Isso alinha o ícone do WhatsApp no canto */
    display: block; /* Garante que o link ocupe o cartão inteiro */
}