/* ============================================
   ARTE E MOVIMENTO — MAIN CSS
   Versão: 1.0.0
   Cores: #572278 | #e9bfff | #8d6aa4 | #f9fafd
   Tipografia: Lexend (body) + Playfair Display (display)
   ============================================ */

:root {
    --roxo: #572278;
    --lilas: #e9bfff;
    --lilas-apagado: #8d6aa4;
    --branco: #f9fafd;
    --preto-suave: #240e32;
    --preto-profundo: #240e32;
    --roxo-escuro: #3d1656;
    --roxo-translucido: rgba(87, 34, 120, 0.7);
    --lilas-translucido: rgba(233, 191, 255, 0.15);
    --lilas-glow: rgba(233, 191, 255, 0.3);
    --texto-claro: #c9b8d6;
    --texto-escuro: #2d1f3a;
    --cinza-corpo: #5a4a6a;
    --font-body: 'Lexend', sans-serif;
    --font-display: 'Playfair Display', serif;

    /* Horários */
    --status-aberta: #1a9e80;
    --status-aberta-bg: #e0f8f3;
    --status-sem-vaga: #c43d57;
    --status-sem-vaga-bg: #fce8ec;
    --status-corpo-baile: #b08a1a;
    --status-corpo-baile-bg: #fdf5d3;
}

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

html, body { max-width: 100%; overflow-x: hidden; }

body {
    font-family: var(--font-body);
    background-color: var(--preto-profundo);
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   UTILIDADES
   ============================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--lilas);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 1rem;
    text-align: center;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-align: center;
    line-height: 1.15;
}

.section-desc {
    text-align: center;
    color: var(--cinza-corpo);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    font-size: 1rem;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* ============================================
   STICKY STACKING ENGINE
   ============================================ */
.layer-section {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 -30px 80px rgba(13, 8, 18, 0.6);
}

.hero-section         { z-index: 1; position: sticky; top: 0; }
.about-section        { z-index: 2; }
.gallery-section      { z-index: 3; }
.modalidades-section  { z-index: 4; }
.manifesto-section    { z-index: 5; }
.schedule-section     { z-index: 6; }
.ong-section          { z-index: 7; }
.services-section     { z-index: 8; }
.testimonials-section { z-index: 9; }
.contact-section      { z-index: 10; }

.site-footer { position: relative; z-index: 11; background: var(--preto-profundo); }

/* ============================================
   HEADER
   ============================================ */
#main-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 60;
    padding: 1.25rem 1.5rem;
    opacity: 0;
    transition: opacity 1s ease-in-out, background-color 0.4s, padding 0.4s;
}

/* Páginas internas: header sempre visível */
#main-header.scrolled {
    background-color: rgba(249, 250, 253, 0.97);
    box-shadow: 0 2px 20px rgba(87, 34, 120, 0.08);
    padding: 0.5rem 1.5rem;
    opacity: 1;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
}

.logo-link { height: 100%; display: flex; align-items: center; }
.logo-img { height: 5.5rem; width: auto; opacity: 0.95; transition: opacity 0.3s; }
.logo-img:hover { opacity: 1; }

.nav-pill { display: none; }
@media (min-width: 768px) {
    .nav-pill {
        display: flex;
        align-items: center;
        padding: 0.6rem 2rem;
        border-radius: 9999px;
        background: rgba(255, 255, 255, 0.04);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }
}

.main-nav { display: none; }
@media (min-width: 768px) { .main-nav { display: flex; gap: 2.25rem; } }

.main-nav a {
    text-decoration: none;
    color: var(--texto-claro);
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s;
}
.main-nav a:hover,
.main-nav a.active { color: white; }

#main-header.scrolled .nav-pill {
    background: transparent;
    border-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
#main-header.scrolled .main-nav a { color: var(--texto-escuro); }
#main-header.scrolled .main-nav a:hover,
#main-header.scrolled .main-nav a.active { color: var(--roxo); }

.cta-button {
    display: none;
    text-decoration: none;
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(87, 34, 120, 0.3);
    color: var(--lilas);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    transition: all 0.3s;
}
@media (min-width: 768px) { .cta-button { display: block; } }
.cta-button:hover { background-color: rgba(87, 34, 120, 0.2); }
#main-header.scrolled .cta-button { color: var(--roxo); border-color: rgba(87, 34, 120, 0.25); }

#main-header, .nav-pill, .main-nav a { transition: all 0.4s ease-in-out; }

/* ============================================
   HERO
   ============================================ */
.hero-section {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    z-index: 0;
}

.video-background {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    background-color: var(--preto-profundo);
}

.video-background video {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(30, 19, 42, 0.5),
        rgba(13, 8, 18, 0.2) 40%,
        rgba(29, 18, 40, 0.85)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    max-width: 820px;
    margin-top: 2rem;
}

.hero-content h1,
.hero-content p,
.hero-content .buttons-container {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 1.8s ease-out, transform 1.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-content h1.visible,
.hero-content p.visible,
.hero-content .buttons-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
@media (min-width: 768px) { .hero-content h1 { font-size: 4.2rem; } }

.hero-content h1 span { font-weight: 400; font-style: italic; color: var(--lilas); }

.hero-content p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--texto-claro);
    margin-bottom: 3rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    transition-delay: 200ms;
}
@media (min-width: 768px) { .hero-content p { font-size: 1rem; } }

.buttons-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transition-delay: 500ms;
}
@media (min-width: 640px) { .buttons-container { flex-direction: row; } }

.btn {
    cursor: pointer;
    border: none;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 9999px;
    padding: 1rem 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--roxo), var(--lilas-apagado));
    border: 1px solid rgba(87, 34, 120, 0.6);
    color: white;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px -8px rgba(87, 34, 120, 0.4);
}

.btn-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--texto-claro);
    background: transparent;
}
.btn-secondary:hover { color: white; }
.btn-secondary svg { width: 1rem; height: 1rem; transition: transform 0.3s; }
.btn-secondary:hover svg { transform: translateX(4px); }

/* ============================================
   WIDGET DE EVENTOS
   ============================================ */
#widget {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    overflow: hidden;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(233, 191, 255, 0.1);
    box-shadow: 0 20px 60px rgba(13, 8, 18, 0.7);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.widget-closed {
    width: 74px; height: 74px; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    background: var(--roxo);
    border-color: rgba(87, 34, 120, 0.4);
}
.widget-open {
    width: 340px; height: auto; border-radius: 24px;
    cursor: default; padding: 16px;
    background: var(--roxo);
}

#widget-icon {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
    transition: opacity 0.3s;
}
#widget-icon svg { width: 1.75rem; height: 1.75rem; color: white; }
.widget-icon-label {
    font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
    color: rgba(255,255,255,0.85); line-height: 1;
}
#widget-icon .notification-dot {
    position: absolute; top: 8px; right: 8px;
    width: 9px; height: 9px; background: #f59e0b;
    border-radius: 50%;
    border: 2px solid var(--roxo);
    animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5); }
    50% { box-shadow: 0 0 0 6px rgba(245, 158, 11, 0); }
}
.widget-closed {
    animation: pulseWidget 3s ease-in-out infinite;
}
@keyframes pulseWidget {
    0%, 100% { box-shadow: 0 20px 60px rgba(13, 8, 18, 0.7), 0 0 0 0 rgba(87, 34, 120, 0.4); }
    50% { box-shadow: 0 20px 60px rgba(13, 8, 18, 0.7), 0 0 0 12px rgba(87, 34, 120, 0); }
}

#widget-content {
    display: flex; flex-direction: column;
    height: 100%; width: 100%; position: relative;
    opacity: 0; transition: opacity 0.5s;
    pointer-events: none;
}
.widget-open #widget-content { opacity: 1; pointer-events: auto; }
/* Widget começa aberto — conteúdo visível de imediato */
#widget.widget-open #widget-content { opacity: 1; pointer-events: auto; }

.widget-close-btn {
    position: absolute; top: -8px; right: -8px;
    z-index: 30; padding: 0.5rem;
    cursor: pointer; border: none; background: transparent;
}
.widget-close-btn div {
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    border-radius: 50%; padding: 6px;
    transition: background-color 0.3s;
}
.widget-close-btn:hover div { background-color: rgba(239, 68, 68, 0.8); }
.widget-close-btn svg { width: 0.75rem; height: 0.75rem; color: white; display: block; }

.slide-content { opacity: 1; transition: opacity 0.4s ease; }
.slide-content.fade-out { opacity: 0; }

.insta-image {
    aspect-ratio: 4/5; width: 100%; object-fit: cover;
    border-radius: 16px; box-shadow: 0 4px 20px rgba(13, 8, 18, 0.4);
}

.image-tag {
    position: absolute; top: 12px; left: 12px;
    background: rgba(13, 8, 18, 0.6);
    backdrop-filter: blur(10px);
    padding: 4px 8px; border-radius: 6px;
    border: 1px solid rgba(233, 191, 255, 0.1);
}
.image-tag p { font-size: 10px; font-weight: 600; color: white; text-transform: uppercase; }

.text-content { margin-top: 1rem; padding: 0 4px; }
.text-content h4 { font-size: 0.875rem; font-weight: 500; }
.text-content p { font-size: 0.75rem; font-weight: 300; color: var(--texto-claro); margin-top: 4px; line-height: 1.4; }

.widget-footer { margin-top: auto; padding-top: 1rem; display: flex; align-items: center; justify-content: space-between; }
#dots-container { display: flex; gap: 6px; }
.dot { width: 6px; height: 6px; background: rgba(255,255,255,0.2); border-radius: 50%; transition: all 0.3s; }
.dot.active { background: var(--lilas); transform: scale(1.2); }
.nav-arrows { display: flex; gap: 0.75rem; }
.nav-arrows button { background: transparent; border: none; cursor: pointer; color: var(--texto-claro); padding: 4px; }
.nav-arrows button:hover { color: white; }
.nav-arrows svg { width: 1.25rem; height: 1.25rem; }

/* ============================================
   SOBRE A ESCOLA
   ============================================ */
.about-section {
    background: var(--branco);
    color: var(--texto-escuro);
    padding: 6rem 1.5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 -50px 100px rgba(13, 8, 18, 0.7);
}

.about-container { width: 100%; max-width: 1100px; margin: 0 auto; }

.about-text {
    display: grid;
    gap: 2.5rem;
    max-width: 900px;
    margin: 2rem auto 0;
    text-align: left;
}
@media (min-width: 768px) { .about-text { grid-template-columns: 1fr 1fr; } }

.about-text p { font-size: 1rem; line-height: 1.8; font-weight: 300; color: var(--cinza-corpo); }

.features-grid {
    display: grid;
    gap: 2.5rem;
    margin-top: 4rem;
    max-width: 1000px;
    margin-inline: auto;
}
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(3, 1fr); text-align: center; } }

.feat-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.feat-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    margin-bottom: 1.25rem;
    display: flex; align-items: center; justify-content: center;
    background: var(--roxo);
}
.feat-icon img { width: 26px; height: 26px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.9; }
.feat-item h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; margin-bottom: 0.5rem; color: var(--texto-escuro); }
.feat-item p { font-size: 0.92rem; color: var(--cinza-corpo); font-weight: 300; line-height: 1.6; }

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(87, 34, 120, 0.1);
    text-align: center;
    width: 100%;
}
/* FIX: terceiro item centralizado no mobile */
.stats-container .stat-item:last-child { grid-column: 1 / -1; }
@media (min-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 5rem;
    }
    .stats-container .stat-item:last-child { grid-column: auto; }
}

.stat-item { display: flex; flex-direction: column; align-items: center; }
.stat-item h3 {
    font-family: var(--font-display);
    font-size: 2.5rem; font-weight: 400;
    color: var(--roxo);
    margin-bottom: 0.25rem;
    letter-spacing: -0.03em;
}
.stat-item p { font-size: 0.78rem; color: var(--lilas-apagado); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; }

/* ============================================
   GALERIA (BENTO GRID)
   ============================================ */
.gallery-section {
    background: var(--preto-profundo);
    color: white;
    padding: 6rem 0;
    display: flex; flex-direction: column; justify-content: center;
}

.bento-grid {
    display: grid;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1.5rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 280px);
    }
}

.bento-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(233, 191, 255, 0.06);
    background: var(--preto-suave);
}
.bento-item img, .bento-item video {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s ease;
}
.bento-item:hover img, .bento-item:hover video { transform: scale(1.05); }

/* Vídeo com controles no bento grid — não aplica scale nem object-fit cover */
.bento-video-item video {
    object-fit: contain;
    background: #000;
    cursor: pointer;
}
.bento-video-item:hover video { transform: none; }
.bento-video-item video::-webkit-media-controls {
    display: flex !important;
}

.main-video { grid-column: span 1; grid-row: span 1; }
@media (min-width: 768px) { .main-video { grid-column: span 2; grid-row: span 2; } }

/* ============================================
   MODALIDADES
   ============================================ */
.modalidades-section {
    min-height: 100vh;
    background: var(--branco);
    color: var(--texto-escuro);
    padding: 6rem 0;
    display: flex; flex-direction: column; justify-content: center;
    box-shadow: 0 -20px 50px rgba(13, 8, 18, 0.2);
}
.modalidades-section .section-desc { color: var(--cinza-corpo); }
.modalidades-header { max-width: 1200px; margin: 0 auto 3rem; padding: 0 1.5rem; text-align: center; }

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 1.5rem;
}

.modalidades-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    transition: opacity 0.5s ease, transform 0.5s ease;
}
@media (max-width: 1024px) { .modalidades-track { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .modalidades-track { grid-template-columns: 1fr; } }

.modalidade-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(87, 34, 120, 0.06);
    border: 1px solid rgba(87, 34, 120, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: none;
}
.modalidade-card.mod-visible { display: block; }
.modalidade-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(87, 34, 120, 0.12); }

.card-img { height: 220px; background-size: cover; background-position: center; }
.card-content { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.course-tag { font-size: 0.62rem; font-weight: 600; color: var(--roxo); text-transform: uppercase; letter-spacing: 0.12em; }
.card-content h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; margin-bottom: 0.25rem; color: var(--texto-escuro); }
.card-content p { font-size: 0.85rem; color: var(--cinza-corpo); font-weight: 300; line-height: 1.5; }

.mod-nav {
    display: flex; justify-content: center; align-items: center; gap: 1.5rem;
    margin-top: 2.5rem; padding: 0 1.5rem;
}
.mod-nav button {
    width: 48px; height: 48px; border-radius: 50%;
    border: 1px solid rgba(87, 34, 120, 0.12);
    background: rgba(87, 34, 120, 0.03);
    color: var(--lilas-apagado);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}
.mod-nav button:hover { border-color: var(--roxo); color: var(--roxo); background: rgba(87, 34, 120, 0.06); }
.mod-nav button svg { width: 20px; height: 20px; }

.mod-dots { display: flex; gap: 8px; }
.mod-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(87, 34, 120, 0.12); transition: all 0.3s; cursor: pointer; }
.mod-dot.active { background: var(--roxo); transform: scale(1.3); }

/* ============================================
   MANIFESTO
   ============================================ */
.manifesto-section {
    min-height: 60vh;
    background-color: var(--preto-profundo);
    color: white;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    box-shadow: 0 -20px 50px rgba(13, 8, 18, 0.5);
}
.manifesto-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0.25; filter: grayscale(40%); z-index: 0;
}
.manifesto-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(circle, rgba(13, 8, 18, 0.363) 0%, rgba(13, 8, 18, 0.644) 90%);
    z-index: 1;
}
.manifesto-content { position: relative; z-index: 2; text-align: center; max-width: 700px; padding: 2rem; }
.manifesto-text { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; line-height: 1.55; color: #e4e4e7; font-style: italic; }
.manifesto-text em { font-style: italic; color: var(--lilas); }

/* ============================================
   FESTIVAIS E PREMIAÇÕES
   ============================================ */
.schedule-section {
    padding: 6rem 1.5rem;
    background: var(--branco);
    color: var(--texto-escuro);
}
.schedule-section .eyebrow,
.schedule-section .section-title { text-align: center; margin-bottom: 1rem; }

.awards-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
.awards-track .award-card {
    display: none;
}
.awards-track .award-card.awards-visible {
    display: flex;
}
@media (max-width: 1023px) {
    .awards-track { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 639px) {
    .awards-track { grid-template-columns: 1fr; }
}
.awards-nav {
    display: flex; align-items: center; justify-content: center; gap: 1.5rem;
    margin-top: 2rem;
}
.awards-nav button {
    width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid rgba(87, 34, 120, 0.2);
    background: transparent; cursor: pointer;
    color: var(--cinza-corpo); display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.awards-nav button:hover { border-color: var(--roxo); color: var(--roxo); background: rgba(87, 34, 120, 0.06); }
.awards-nav button svg { width: 20px; height: 20px; }
.awards-dots { display: flex; gap: 8px; align-items: center; }
.awards-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(87, 34, 120, 0.2); cursor: pointer;
    transition: all 0.3s;
}
.awards-dot.active { background: var(--roxo); transform: scale(1.2); }

.award-card {
    border: 1px solid rgba(87, 34, 120, 0.1);
    border-radius: 20px; padding: 2rem 1.75rem;
    background: white;
    display: flex; flex-direction: column; gap: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.award-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(87, 34, 120, 0.09); }
.award-festival-tag {
    font-size: 0.62rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--roxo); background: rgba(87, 34, 120, 0.07);
    padding: 0.35rem 0.9rem; border-radius: 9999px;
    display: inline-block; align-self: flex-start;
}
.award-title-row { display: flex; align-items: center; gap: 0.6rem; }
.award-trophy { display: none; }
.award-trophy-icon { display: none; }
.award-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: var(--roxo);
    opacity: 0.5;
    flex-shrink: 0;
    margin-top: 0.45rem;
}
.award-title-row h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; color: var(--texto-escuro); }
.award-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin: 0; padding: 0; border-top: 1px solid rgba(87, 34, 120, 0.07); padding-top: 1rem; }
.award-list li { font-size: 0.85rem; font-weight: 300; color: var(--cinza-corpo); line-height: 1.5; display: flex; gap: 0.5rem; align-items: baseline; }
.award-year { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lilas-apagado); white-space: nowrap; flex-shrink: 0; }

/* ============================================
   ONG ARTE POR UM SORRISO
   ============================================ */
.ong-section {
    min-height: 70vh;
    background-color: var(--preto-profundo);
    color: white;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    box-shadow: 0 -20px 50px rgba(13, 8, 18, 0.5);
    padding: 6rem 0;
}

/* Imagem de fundo opcional — mesmo padrão do manifesto */
.ong-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0.2; filter: grayscale(30%); z-index: 0;
}
.ong-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(circle, rgba(13, 8, 18, 0.4) 0%, rgba(13, 8, 18, 0.75) 90%);
    z-index: 1;
}

/* Conteúdo centralizado com max-width */
.ong-content {
    position: relative; z-index: 2;
    text-align: center;
    max-width: 780px;
    width: 100%;
    padding: 0 1.5rem;
    margin: 0 auto;
}

/* Força font-weight correto contra estilos do WP */
.ong-text-block p {
    font-family: var(--font-body) !important;
    font-size: 1rem !important;
    line-height: 1.8 !important;
    font-weight: 300 !important;
    color: var(--texto-claro) !important;
    margin-bottom: 1.25rem !important;
}

.ong-highlight-block {
    margin: 2rem auto;
    padding: 1.75rem 2rem;
    border-left: 3px solid var(--lilas);
    background: linear-gradient(135deg, rgba(87, 34, 120, 0.12), rgba(233, 191, 255, 0.04));
    border-radius: 0 12px 12px 0;
    text-align: left;
    max-width: 100%;
}
.ong-highlight-block p {
    font-family: var(--font-body) !important;
    font-size: 1rem !important;
    font-weight: 300 !important;
    color: white !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}
.ong-highlight-block p em { font-style: normal; color: var(--lilas); font-weight: 400; }

@media (max-width: 768px) {
    .ong-highlight-block { padding: 1.25rem; }
    .ong-content { padding: 0 1.25rem; }
}

.ong-cta { margin-top: 2.5rem; }


/* ============================================
   SERVIÇOS
   ============================================ */
.services-section { background: var(--branco); color: var(--texto-escuro); padding: 6rem 1.5rem; }
.services-grid { display: grid; gap: 2rem; max-width: 1100px; margin: 0 auto; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
    background: white; border: 1px solid rgba(87, 34, 120, 0.06);
    border-radius: 20px; padding: 2.5rem 2rem; text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(87, 34, 120, 0.08); }
.service-card .service-icon { width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 1.25rem; display: flex; align-items: center; justify-content: center; background: var(--roxo); }
.service-card .service-icon img { width: 28px; height: 28px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.9; }
.service-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; margin-bottom: 0.75rem; color: var(--texto-escuro); }
.service-card p { font-size: 0.9rem; color: var(--cinza-corpo); font-weight: 300; line-height: 1.6; margin-bottom: 1.5rem; }

.btn-outline {
    display: inline-block; text-decoration: none;
    font-family: var(--font-body); font-size: 0.68rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--roxo); border: 1px solid rgba(87, 34, 120, 0.2);
    padding: 0.75rem 1.75rem; border-radius: 9999px; transition: all 0.3s;
}
.btn-outline:hover { background: rgba(87, 34, 120, 0.06); border-color: var(--roxo); }

/* ============================================
   DEPOIMENTOS
   ============================================ */
.testimonials-section {
    background: var(--preto-profundo); color: white;
    padding: 8rem 1.5rem;
    display: flex; align-items: center; justify-content: center;
}
.testi-container { max-width: 800px; text-align: center; }
.testi-slide { display: none; animation: fadeUp 1s ease; }
.testi-slide.active { display: block; }
.quote-mark { font-size: 12rem; color: var(--lilas); opacity: 0.3; line-height: 1; }
.testi-text { font-size: 1.4rem; font-weight: 300; font-style: italic; margin: 1.5rem 0 2rem; color: #e4e4e7; line-height: 1.6; }
.testi-author { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--lilas); font-weight: 400; }

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

/* ============================================
   CONTATO
   ============================================ */
.contact-section { background: var(--branco); color: var(--texto-escuro); padding: 6rem 0; }
.contact-grid {
    max-width: 1100px; margin: 0 auto; padding: 0 1.5rem;
    display: grid; gap: 4rem;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-form h2 { font-family: var(--font-display); text-align: left; }
.contact-form p { color: var(--cinza-corpo); margin-bottom: 1rem; font-weight: 300; line-height: 1.6; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.info-text strong { display: block; font-size: 0.88rem; margin-bottom: 0.2rem; color: var(--roxo); }
.info-text span { color: var(--cinza-corpo); font-size: 0.88rem; font-weight: 300; }
.map-frame { width: 100%; height: 300px; border-radius: 16px; overflow: hidden; margin-top: 2rem; }
.map-frame iframe { border: 0; width: 100%; height: 100%; }

/* ============================================
   RETROSPECTIVA FESTIVAIS
   ============================================ */
.retro-section { background: var(--preto-profundo); padding: 0; padding-bottom: 3rem; overflow: hidden; position: relative; }
.retro-header {
    position: absolute; top: 0; left: 0; right: 0; z-index: 5;
    text-align: center; padding: 3rem 1.5rem 5rem;
    background: linear-gradient(to bottom, var(--preto-profundo) 0%, rgba(13, 8, 18, 0.7) 50%, transparent 100%);
    pointer-events: none;
}
.retro-header .section-title { color: white; }
.retro-carousel { position: relative; width: 100%; }
.retro-track { display: flex; transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); will-change: transform; }
.retro-slide { flex: 0 0 100%; position: relative; aspect-ratio: 16/7; overflow: hidden; }

@media (max-width: 768px) {
    .retro-slide { aspect-ratio: 4/3; }
    .retro-info { padding: 1.5rem !important; flex-direction: column; align-items: flex-start !important; gap: 0.5rem !important; }
    .retro-info h3 { font-size: 1.3rem !important; }
    .retro-header { padding: 2rem 1rem 3.5rem; }
    .retro-header .section-title { font-size: 1.8rem; }
}

.retro-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.retro-slide-placeholder {
    position: absolute; inset: 0;
    background-color: var(--preto-profundo);
    background-size: cover; background-position: center; background-repeat: no-repeat;
}
.retro-slide::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13, 8, 18, 0.85) 0%, rgba(13, 8, 18, 0.2) 40%, rgba(13, 8, 18, 0.05) 100%);
    pointer-events: none;
}
.retro-info {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
    padding: 2.5rem 3rem;
    display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem;
}
.retro-info h3 { font-family: var(--font-display); font-size: 2rem; font-weight: 400; color: white; line-height: 1.2; }
@media (min-width: 768px) { .retro-info h3 { font-size: 2.8rem; } }
.retro-info .retro-year {
    font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--lilas);
    background: rgba(87, 34, 120, 0.3); border: 1px solid rgba(233, 191, 255, 0.15);
    padding: 0.5rem 1.25rem; border-radius: 9999px; white-space: nowrap;
    backdrop-filter: blur(10px);
}
.retro-nav { display: flex; justify-content: center; align-items: center; gap: 1.5rem; margin-top: 2rem; padding: 0 1.5rem; }
.retro-nav button {
    width: 48px; height: 48px; border-radius: 50%;
    border: 1px solid rgba(233, 191, 255, 0.12); background: rgba(233, 191, 255, 0.04);
    color: var(--lilas-apagado); cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}
.retro-nav button:hover { border-color: var(--lilas); color: var(--lilas); background: rgba(233, 191, 255, 0.08); }
.retro-nav button svg { width: 20px; height: 20px; }
.retro-dots { display: flex; gap: 8px; }
.retro-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(233, 191, 255, 0.15); transition: all 0.3s; cursor: pointer; }
.retro-dot.active { background: var(--lilas); transform: scale(1.3); }


/* ============================================
   SEJA UM APOIADOR
   ============================================ */
.apoiador-section {
    position: relative;
    background: var(--preto-profundo);
    color: white;
    padding: 7rem 1.5rem;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.apoiador-bg-pattern {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(87, 34, 120, 0.25) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 85% 30%, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.apoiador-content {
    position: relative; z-index: 1;
    max-width: 780px; width: 100%;
    margin: 0 auto; text-align: center;
}
.apoiador-text-block {
    margin: 2rem 0;
}
.apoiador-text-block p {
    font-size: 1rem; font-weight: 300; line-height: 1.8;
    color: var(--texto-claro); margin-bottom: 1rem;
}
.apoiador-stats {
    display: flex; gap: 2rem; justify-content: center;
    flex-wrap: wrap; margin: 2.5rem 0;
    padding: 2rem;
    border: 1px solid rgba(233, 191, 255, 0.1);
    border-radius: 20px;
    background: rgba(87, 34, 120, 0.12);
    backdrop-filter: blur(10px);
}
.apoiador-stat {
    display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
}
.apoiador-stat-num {
    font-family: var(--font-display);
    font-size: 2.2rem; font-weight: 500;
    color: white; letter-spacing: -0.02em;
}
.apoiador-stat-label {
    font-size: 0.75rem; font-weight: 300; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--lilas-apagado);
}
.apoiador-highlight {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 3px solid rgba(245, 158, 11, 0.5);
    background: rgba(245, 158, 11, 0.04);
    border-radius: 0 12px 12px 0;
    text-align: left;
}
.apoiador-highlight p {
    font-family: var(--font-display);
    font-size: 1.1rem; font-style: italic;
    color: rgba(255, 255, 255, 0.85); line-height: 1.7;
}
.apoiador-cta { margin-top: 2.5rem; }
.btn-apoiador {
    display: inline-flex; align-items: center; gap: 0.75rem;
    background: #25d366;
    color: white; font-weight: 500; font-size: 0.95rem;
    padding: 0.9rem 2rem; border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}
.btn-apoiador:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}
@media (max-width: 640px) {
    .apoiador-stats { gap: 1.5rem; padding: 1.5rem; }
    .apoiador-stat-num { font-size: 1.8rem; }
    .apoiador-highlight { padding: 1.25rem 1.5rem; text-align: left; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--preto-profundo); color: var(--lilas-apagado);
    padding: 4rem 1.5rem; text-align: center;
    border-top: 1px solid rgba(233, 191, 255, 0.06);
}
.footer-content { max-width: 1100px; margin: 0 auto; }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; }
.footer-links a { color: var(--lilas-apagado); text-decoration: none; font-size: 0.78rem; letter-spacing: 0.08em; transition: color 0.3s; }
.footer-links a:hover { color: var(--lilas); }
.footer-social { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 2rem; }
.footer-social a {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid rgba(233, 191, 255, 0.1);
    color: var(--lilas-apagado); transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--lilas); background: rgba(233, 191, 255, 0.05); color: var(--lilas); transform: translateY(-2px); }
.site-footer p { font-size: 0.72rem; color: rgba(141, 106, 164, 0.5); }

/* ============================================
   MENU MOBILE
   ============================================ */
.mobile-toggle {
    display: flex; flex-direction: column; gap: 6px;
    background: transparent; border: none; cursor: pointer;
    z-index: 100; padding: 10px;
}
.mobile-toggle span { display: block; width: 24px; height: 1.5px; background-color: white; transition: all 0.3s ease; }
#main-header.scrolled .mobile-toggle span { background-color: var(--texto-escuro); }
.mobile-toggle.active span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }
.mobile-toggle.active { opacity: 0; pointer-events: none; }
@media (min-width: 768px) { .mobile-toggle { display: none; } }

.mobile-menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(13, 8, 18, 0.95); z-index: 80;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    transform: translateX(100%);
}
.mobile-menu-overlay.active { transform: translateX(0); }
.mobile-nav { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.mobile-nav a { color: white; text-decoration: none; font-size: 1.4rem; font-weight: 200; text-transform: uppercase; letter-spacing: 0.2em; }
.close-menu-btn {
    position: absolute; top: 2rem; right: 2rem;
    background: transparent; border: none; cursor: pointer;
    padding: 10px; z-index: 90; transition: transform 0.3s ease;
}
.close-menu-btn:hover { transform: scale(1.1); }

/* ============================================
   PÁGINA DE HORÁRIOS (hero interno + grade)
   ============================================ */
.hero-internal {
    position: relative; padding: 10rem 1.5rem 5rem;
    text-align: center;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: var(--preto-profundo);
    overflow: hidden;
}
.hero-internal-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(13,8,18,0.9), rgba(87,34,120,0.5));
    z-index: 1;
}
.hero-internal-content { position: relative; z-index: 2; }
.hero-internal h1 { font-family: var(--font-display); font-size: 2.8rem; font-weight: 400; color: white; margin-bottom: 0.5rem; }
.hero-internal p { color: white; font-size: 1rem; font-weight: 300; }

/* Controles */
.controls { max-width: 1000px; margin: 0 auto; padding: 2.5rem 1.5rem 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }
.unit-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; width: 100%; }
.unit-tab {
    padding: 0.75rem 1.5rem; border-radius: 9999px; border: 1px solid rgba(87,34,120,.12);
    background: white; color: var(--cinza-corpo); font-family: var(--font-body); font-size: 0.8rem;
    font-weight: 400; cursor: pointer; transition: all .3s;
}
.unit-tab:hover { border-color: var(--roxo); color: var(--roxo); }
.unit-tab.active { background: var(--roxo); color: white; border-color: var(--roxo); }

/* Legenda */
.legend { max-width: 1000px; margin: 0 auto; padding: 0 1.5rem 2.5rem; display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.legend-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--cinza-corpo); font-family: var(--font-body); }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; }

/* Grade */
/* Página de horários — fundo claro em toda a página */
body.page-template-page-horarios {
    background-color: var(--branco);
    color: var(--texto-escuro);
}

.schedule-content { max-width: 1000px; margin: 0 auto; padding: 0 1.5rem 4rem; background: var(--branco); }
.unit-section { display: none; animation: fadeIn 0.4s ease; }
.unit-section.active { display: block; }

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

.day-group { margin-bottom: 3.5rem; }
.day-group-title {
    font-family: var(--font-display); font-size: 1.6rem;
    color: var(--roxo); padding-bottom: 0.75rem; margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(87,34,120,.15); font-weight: 500;
}

.class-row {
    display: flex; align-items: center; gap: 1.25rem;
    padding: 0.9rem 0; border-bottom: 1px solid rgba(87,34,120,.06);
    transition: background 0.2s;
}
.class-row:hover { background: rgba(87,34,120,.02); border-radius: 8px; padding-left: 0.5rem; padding-right: 0.5rem; }
.class-time { font-size: 0.8rem; font-weight: 500; color: var(--roxo); min-width: 80px; font-variant-numeric: tabular-nums; }
.class-info { flex: 1; display: flex; flex-direction: column; gap: 0.15rem; }
.class-name { font-size: 0.95rem; font-weight: 400; color: var(--texto-escuro); }
.class-detail { font-size: 0.78rem; font-weight: 300; color: var(--cinza-corpo); }
.class-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; align-items: center; flex-shrink: 0; }

.tag {
    font-size: 0.6rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; padding: 0.25rem 0.6rem;
    border-radius: 9999px; white-space: nowrap;
}
.tag-turno { background: rgba(87,34,120,.08); color: var(--roxo); }
.tag-status-aberta    { background: var(--status-aberta-bg);    color: var(--status-aberta); }
.tag-status-sem-vaga  { background: var(--status-sem-vaga-bg);  color: var(--status-sem-vaga); }
.tag-status-corpo     { background: var(--status-corpo-baile-bg); color: var(--status-corpo-baile); }
.tag-nova { background: rgba(8, 135, 226, 0.1); color: #0887e2; }

.no-classes { font-size: 0.88rem; color: var(--cinza-corpo); font-style: italic; padding: 1rem 0; font-family: var(--font-body); }

/* Mobile horários */
@media (max-width: 640px) {
    .class-row {
        flex-wrap: wrap;
        gap: 0.75rem;
        padding: 1rem 0;
        align-items: flex-start;
    }
    .class-time {
        min-width: 70px;
        font-size: 0.78rem;
        padding-top: 0.1rem;
    }
    .class-info {
        flex: 1;
        gap: 0.25rem;
    }
    .class-name { font-size: 0.9rem; }
    .class-detail { font-size: 0.75rem; }
    .class-tags {
        width: 100%;
        margin-top: 0.1rem;
        padding-left: 0;
        gap: 0.35rem;
    }
    .tag { font-size: 0.58rem; padding: 0.2rem 0.55rem; }
    .hero-internal h1 { font-size: 2rem; }
    .day-group-title { font-size: 1.3rem; }
    .controls { padding: 2rem 1rem 1rem; }
    .unit-tabs { gap: 0.4rem; }
    .unit-tab { padding: 0.6rem 1rem; font-size: 0.75rem; }
}


/* ============================================
   WIDGET — ESTADO DE ATENÇÃO (após 5s)
   ============================================ */
.widget-closed.widget-attention {
    animation: pulseAttention 0.7s ease-in-out infinite;
}
@keyframes pulseAttention {
    0%   { transform: scale(1);    box-shadow: 0 20px 60px rgba(13,8,18,.7), 0 0 0 0 rgba(87,34,120,.6); }
    50%  { transform: scale(1.12); box-shadow: 0 20px 60px rgba(13,8,18,.7), 0 0 0 18px rgba(87,34,120,0); }
    100% { transform: scale(1);    box-shadow: 0 20px 60px rgba(13,8,18,.7), 0 0 0 0 rgba(87,34,120,.6); }
}


/* ============================================
   PÁGINA SEJA UM APOIADOR
   ============================================ */
.apoiador-hero {
    min-height: 38vh;
}
.apoiador-hero .hero-internal-content {
    display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}

.apoiador-page-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--branco);
    color: var(--texto-escuro);
}
.apoiador-page-inner {
    max-width: 820px; margin: 0 auto;
    padding: 5rem 2rem 6rem;
    display: flex; flex-direction: column; gap: 3rem;
}

.apoiador-page-text p {
    font-size: 1.05rem; font-weight: 300; line-height: 1.8;
    color: var(--cinza-corpo); margin-bottom: 1rem;
}
.apoiador-page-text p:last-child { margin-bottom: 0; }

/* stats do apoiador reutilizam .stats-container/.stat-item da home */

.apoiador-page-highlight {
    padding: 2rem 2.5rem; border-left: 3px solid var(--roxo);
    background: rgba(87,34,120,.04); border-radius: 0 12px 12px 0;
}
.apoiador-page-highlight p {
    font-size: 1rem; line-height: 1.8; color: var(--texto-escuro); font-weight: 300;
}

.apoiador-page-closing p {
    font-size: 1.15rem; font-weight: 500; color: var(--texto-escuro);
    font-family: var(--font-display); font-style: italic;
    text-align: center;
}

.apoiador-page-cta { display: flex; justify-content: center; }
.btn.btn-lg { padding: 1.1rem 2.8rem; font-size: 1rem; letter-spacing: 0.04em; }

@media (max-width: 640px) {
    .apoiador-page-inner { padding: 3rem 1.25rem 4rem; gap: 2rem; }
    .apoiador-page-highlight { padding: 1.5rem; }
}
