/* =============================================
   BORA PRA RUA — Premium Design System
   Versão 2.0
   ============================================= */

/* =============================================
   GLOBAL SVG SAFETY — prevents unsized SVGs from expanding
   ============================================= */
svg { overflow: hidden; }
svg:not([width]):not([height]) { max-width: 100%; }

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
    --primary:       #0D0D0D;
    --primary-light: #333333;
    --primary-dark:  #000000;
    --primary-rgb:   13, 13, 13;

    --accent:        #F5C200;
    --accent-light:  #FFD740;
    --accent-dark:   #C9A000;
    --accent-rgb:    245, 194, 0;

    --coral:         #E85D4A;

    --white:         #FFFFFF;
    --off-white:     #F9F9F9;
    --gray-50:       #F5F5F5;
    --gray-100:      #EBEBEB;
    --gray-200:      #D6D6D6;
    --gray-300:      #B8B8B8;
    --gray-400:      #8C8C8C;
    --gray-500:      #636363;
    --gray-600:      #4A4A4A;
    --gray-700:      #333333;
    --gray-800:      #1A1A1A;
    --dark:          #0A0A0A;

    --success:       #10B981;
    --success-light: #D1FAE5;
    --danger:        #EF4444;
    --danger-light:  #FEE2E2;

    --font-primary:  'Montserrat', system-ui, -apple-system, sans-serif;
    --font-display:  'Bebas Neue', 'Barlow Condensed', sans-serif;

    --text-xs:   0.75rem;
    --text-sm:   0.875rem;
    --text-base: 1rem;
    --text-lg:   1.125rem;
    --text-xl:   1.25rem;
    --text-2xl:  1.5rem;
    --text-3xl:  1.875rem;
    --text-4xl:  2.25rem;
    --text-5xl:  3rem;
    --text-6xl:  3.75rem;
    --text-7xl:  clamp(2.6rem, 5.5vw, 4.5rem);

    --space-1:  0.25rem;
    --space-2:  0.5rem;
    --space-3:  0.75rem;
    --space-4:  1rem;
    --space-5:  1.25rem;
    --space-6:  1.5rem;
    --space-8:  2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    --shadow-xs:   0 1px 3px rgba(15,23,42,0.06);
    --shadow-sm:   0 2px 8px rgba(15,23,42,0.08);
    --shadow-md:   0 4px 16px rgba(15,23,42,0.10), 0 1px 4px rgba(15,23,42,0.06);
    --shadow-lg:   0 10px 32px rgba(15,23,42,0.12), 0 2px 8px rgba(15,23,42,0.06);
    --shadow-xl:   0 20px 48px rgba(15,23,42,0.14), 0 4px 12px rgba(15,23,42,0.06);
    --shadow-2xl:  0 32px 64px rgba(15,23,42,0.18);
    --shadow-glow: 0 0 40px rgba(245,194,0,0.30);
    --shadow-dark: 0 0 40px rgba(13,13,13,0.30);

    --radius-sm:   6px;
    --radius:      10px;
    --radius-md:   14px;
    --radius-lg:   18px;
    --radius-xl:   22px;
    --radius-2xl:  28px;
    --radius-full: 9999px;

    --transition-fast:   120ms ease;
    --transition:        240ms ease;
    --transition-base:   240ms ease;
    --transition-slow:   380ms ease;
    --transition-spring: 480ms cubic-bezier(0.34,1.56,0.64,1);

    --header-height:  80px;
    --container-max:  1200px;
    --container-sm:   800px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
    margin: 0; padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: var(--header-height);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--gray-600);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: var(--primary); transition: color var(--transition); }
a:hover { color: var(--accent); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--dark);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: 0.04em;
}
h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: var(--space-4);
}
.section-label::before {
    content: '';
    display: inline-block;
    width: 28px; height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.section-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: var(--space-5);
    line-height: 1.1;
}
.section-title strong { color: var(--accent-dark); }

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--gray-500);
    max-width: 620px;
    line-height: 1.75;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.text-center .section-label { display: flex; justify-content: center; }
.text-accent  { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-white   { color: var(--white); }

/* =============================================
   LAYOUT
   ============================================= */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-8);
}
.container-sm { max-width: var(--container-sm); }

section {
    padding: var(--space-24) 0;
    position: relative;
}
section.bg-light { background: var(--gray-50); }
section.bg-primary {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
}
section.bg-primary .section-title,
section.bg-primary h2, section.bg-primary h3 { color: var(--white); }
section.bg-primary .section-subtitle { color: rgba(255,255,255,0.75); }

.grid { display: grid; gap: var(--space-8); }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 14px 32px;
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: 0.2px;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background var(--transition);
}
.btn:hover::after { background: rgba(255,255,255,0.07); }

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(var(--primary-rgb),0.30);
}
.btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--primary-rgb),0.40);
}

.btn-accent {
    background: var(--accent);
    color: var(--dark);
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(var(--accent-rgb),0.30);
}
.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(var(--accent-rgb),0.40);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-sm { padding: 10px 24px; font-size: var(--text-sm); }
.btn-lg { padding: 18px 42px; font-size: var(--text-lg); }

.btn-group {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    align-items: center;
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.site-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-slow);
    padding: var(--space-5) 0;
}
.site-header.scrolled {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 2px 20px rgba(15,23,42,0.10);
    padding: var(--space-3) 0;
}
.site-header.scrolled .nav-link { color: var(--gray-600); }
.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active { color: var(--primary); }
.site-header.scrolled .menu-toggle span { background: var(--dark); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    z-index: 1001;
}
.header-logo img {
    height: 38px;
    width: auto;
    transition: filter var(--transition);
}
.site-header.scrolled .header-logo img { filter: none; }
.header-logo-text {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: -0.5px;
    transition: color var(--transition);
}
.brand-hash { color: var(--accent); margin-right: 1px; }
.site-header.scrolled .header-logo-text { color: var(--dark); }
.site-header.scrolled .brand-hash { color: var(--accent-dark); }

.main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}
.nav-link {
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-sm);
    font-weight: 500;
    color: rgba(255,255,255,0.88);
    border-radius: var(--radius);
    transition: all var(--transition);
    position: relative;
}
.nav-link:hover,
.nav-link.active { color: var(--accent); }
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 50%;
    transform: translateX(-50%);
    width: 18px; height: 2.5px;
    background: var(--accent);
    border-radius: 2px;
}
.header-cta { margin-left: var(--space-3); }

/* Mobile menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 26px;
    padding: 4px 0;
    z-index: 1001;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    height: 2px; width: 100%;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* =============================================
   HERO SECTION — Two-column split layout
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: #08090c;
    overflow: hidden;
    padding-top: calc(var(--header-height) + var(--space-8));
}

/* Bottom fade — transição para a faixa de parceiros (gray-50) */
.hero::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0;
    width: 100%; height: 140px;
    background: linear-gradient(to top, var(--gray-50), transparent);
    pointer-events: none;
    z-index: 2;
}

/* =============================================
   HERO — KEY VISUAL COMO MOLDURA
   O KV oficial (assets/img/fundo.png) NUNCA aparece inteiro atrás do
   conteúdo — só dois recortes dele, um de cada lado, funcionando como
   moldura. O centro (~40-45%) fica praticamente limpo e escuro para
   título/vídeo/botões/indicadores. Camadas: 1) fundo escuro
   2) recortes do KV (esquerda/direita)  3) overlay radial  4) conteúdo.
   ============================================= */

/* 1. Fundo — preto quase-marinho + textura de concreto quase imperceptível */
.hero-mural-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}
.hero-mural-texture {
    position: absolute;
    inset: 0;
    background-image: url('../art/concrete-texture.svg');
    background-size: 320px 320px;
    background-repeat: repeat;
    mix-blend-mode: overlay;
    opacity: 0.08;
}

/* 2. Recortes do Key Visual — cada painel mostra só uma fatia do PNG
   (via object-position), nunca a arte inteira. Esquerda puxa para a
   região azul/amarelo da composição original; direita puxa para a
   região rosa/laranja/verde. Máscara em duas camadas (wrapper esmaece
   topo/base, inner esmaece a borda voltada ao centro) dissolve todas
   as bordas — nunca um retângulo duro. */
.hero-kv-crop {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 14%, black 86%, transparent 100%);
            mask-image: linear-gradient(to bottom, transparent 0%, black 14%, black 86%, transparent 100%);
}
.hero-kv-crop--left  { left: 0; }
.hero-kv-crop--right { right: 0; }

.hero-kv-crop-inner {
    position: absolute;
    inset: 0;
    filter: drop-shadow(0 20px 46px rgba(0,0,0,0.5));
}
/* esmaece a borda voltada para o centro — é essa que precisa sumir
   suavemente no fundo escuro, mantendo a borda externa (a que "molda"
   a tela) mais firme */
.hero-kv-crop--left .hero-kv-crop-inner {
    -webkit-mask-image: linear-gradient(to right, black 0%, black 45%, transparent 96%);
            mask-image: linear-gradient(to right, black 0%, black 45%, transparent 96%);
}
.hero-kv-crop--right .hero-kv-crop-inner {
    -webkit-mask-image: linear-gradient(to left, black 0%, black 45%, transparent 96%);
            mask-image: linear-gradient(to left, black 0%, black 45%, transparent 96%);
}

.hero-kv-crop img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroKvFloat 18s ease-in-out infinite;
}
/* Recorte esquerdo — puxa para azul/amarelo (canto superior-esquerdo
   do KV original) */
.hero-kv-crop--left img { object-position: 12% 32%; }
/* Recorte direito — puxa para a convergência rosa/laranja/verde
   (canto inferior-direito do KV original) */
.hero-kv-crop--right img { object-position: 88% 62%; animation-delay: 2s; }

/* 3. Overlay radial — centro ~85% preto (protege texto/vídeo/botões),
   laterais ~40% preto (só o suficiente para não competir com o KV,
   sem apagá-lo) */
.hero-kv-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(ellipse 58% 78% at 50% 50%,
        rgba(5,6,8,0.85) 0%, rgba(5,6,8,0.65) 48%, rgba(5,6,8,0.4) 100%);
}

@keyframes heroKvFloat {
    0%, 100% { translate: 0 0; }
    50%      { translate: 0 -8px; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-kv-crop img { animation: none !important; }
}

/* Two-column hero grid */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    padding: var(--space-16) 0 var(--space-24);
    position: relative;
    z-index: 2;
}

.hero-content { max-width: 580px; }

.hero-brand-logo {
    height: 52px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: var(--space-8);
    animation: fadeInUp 0.5s ease forwards;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(12px);
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: var(--space-8);
    border: 1px solid rgba(255,255,255,0.12);
    animation: fadeInUp 0.7s ease forwards;
}
.hero-badge svg {
    width: 14px; height: 14px;
    fill: currentColor;
    flex-shrink: 0;
}

.hero h1 {
    font-size: var(--text-7xl);
    font-weight: 900;
    color: var(--white);
    line-height: 1.02;
    margin-bottom: var(--space-6);
    animation: fadeInUp 0.7s ease 0.1s both;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.hero h1 .highlight { color: var(--accent); }

.hero-subtitle {
    font-size: var(--text-lg);
    color: rgba(255,255,255,0.78);
    line-height: 1.8;
    margin-bottom: var(--space-10);
    max-width: 520px;
    animation: fadeInUp 0.7s ease 0.2s both;
}

.hero .btn-group {
    animation: fadeInUp 0.7s ease 0.3s both;
    margin-bottom: var(--space-10);
}
/* Botões do hero em fonte não-condensada — Bebas Neue fica ilegível
   em frases inteiras como "Quero ser voluntário" */
.hero .btn {
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: 0.01em;
    min-width: 200px;
}
.hero .btn-outline {
    border-color: rgba(255,255,255,0.4);
}
.hero .btn-outline:hover,
.hero .btn-outline:focus-visible {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
    color: var(--white);
}
.hero .btn:focus-visible {
    outline: 3px solid var(--accent-light);
    outline-offset: 2px;
}

/* Hero visual — right side stat cards */
.hero-visual {
    animation: fadeInRight 0.8s ease 0.3s both;
}
.hero-stats-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.hstat-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.hstat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    right: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    opacity: 0;
    transition: opacity var(--transition);
}
.hstat-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}
.hstat-card:hover::before { opacity: 1; }

.hstat-card.featured {
    background: rgba(245,194,0,0.14);
    border-color: rgba(245,194,0,0.28);
}
.hstat-card.featured::before { opacity: 1; }

.hstat-icon {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245,194,0,0.15);
    border-radius: var(--radius-md);
    margin: 0 auto var(--space-3);
    color: var(--accent);
}
.hstat-icon svg {
    width: 24px; height: 24px;
    fill: currentColor;
}

.hstat-number {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: var(--space-2);
}
.hstat-number span {
    font-size: var(--text-xl);
    color: var(--accent);
    font-weight: 700;
}
.hstat-label {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.60);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* =============================================
   HERO — coluna central: título, vídeo, botões, números
   ============================================= */
.hero-center {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    padding: calc(var(--space-16) + var(--space-6)) 0 var(--space-20);
    position: relative;
    z-index: 3;
}
.hero-center .hero-brand-logo {
    filter: none; /* mostra as cores naturais (preto+amarelo) no fundo escuro */
    margin-bottom: var(--space-6);
    height: 54px;
}
.hero-center h1 {
    max-width: 15ch;
    margin: 0 auto var(--space-5);
}
.hero-center .hero-subtitle { margin: 0 auto var(--space-8); max-width: 600px; }
.hero-center .btn-group { justify-content: center; margin-bottom: var(--space-12); }

/* ── Vídeo institucional — moldura discreta, capa própria ───────── */
.hero-video-wrap {
    position: relative;
    max-width: 760px;
    margin: 0 auto var(--space-10);
    padding-bottom: 46.875%; /* proporção real do arquivo (2304x1080 = 32:15), evita cortar as laterais */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #111;
    z-index: 3;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}
@supports (aspect-ratio: 16/9) {
    .hero-video-wrap { aspect-ratio: 32/15; padding-bottom: 0; height: auto; }
}
.hero-video-wrap iframe,
.hero-video-wrap video {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
    border-radius: calc(var(--radius-lg) - 1px);
    object-fit: cover;
    background: #111;
}

/* Capa personalizada — cobre o vídeo até o primeiro play */
.hero-video-cover {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
    border-radius: inherit;
    overflow: hidden;
    z-index: 2;
    transition: opacity var(--transition), visibility var(--transition);
}
.hero-video-cover-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, #0A0A0C 0%, #16161A 100%);
}
.hero-video-cover-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 20% 28%;
    filter: grayscale(1) contrast(1.15) brightness(0.5);
}
.hero-video-cover-photo img.is-broken { display: none; }
.hero-video-cover-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(5,5,6,0.55) 0%, rgba(5,5,6,0.72) 55%, rgba(5,5,6,0.88) 100%);
}
/* Pequeno detalhe de tinta — um traço, não uma pincelada inteira */
.hero-video-cover-accent {
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 5px;
    z-index: 3;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 16%, var(--coral) 16%, var(--coral) 26%, transparent 26%);
}
.hero-video-cover-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    color: var(--white);
    padding: var(--space-4);
}
.hero-video-cover-word {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.6vw, 2.3rem);
    letter-spacing: 0.09em;
    color: var(--accent);
    line-height: 1;
}
.hero-video-cover-tag {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.78);
    letter-spacing: 0.02em;
    margin-bottom: var(--space-2);
}
.hero-video-cover-play {
    width: 60px; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--primary-dark);
    border-radius: var(--radius-full);
    box-shadow: 0 10px 26px rgba(0,0,0,0.5);
    transform: translateX(2px);
    transition: transform var(--transition);
}
.hero-video-cover:hover .hero-video-cover-play,
.hero-video-cover:focus-visible .hero-video-cover-play { transform: translateX(2px) scale(1.07); }
.hero-video-cover:focus-visible { outline: 3px solid var(--accent-light); outline-offset: -4px; }

.hero-video-wrap.is-playing .hero-video-cover,
.hero-video-wrap.has-error .hero-video-cover {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Fallback exibido apenas se o vídeo falhar ao carregar */
.hero-video-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    background: linear-gradient(135deg, #000000 0%, #0A0A0A 60%, #141414 100%);
    color: rgba(255,255,255,0.85);
    text-align: center;
    padding: var(--space-6);
    z-index: 4;
}
.hero-video-fallback[hidden] { display: none; }

/* ── Faixa de números de impacto — presença forte, nunca espremida ── */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 0;
    padding: var(--space-6) 0 0;
    margin-top: var(--space-2);
    border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-stat-item {
    text-align: center;
    padding: 0 var(--space-6);
    max-width: 190px;
    border-left: 1px solid rgba(255,255,255,0.14);
}
.hero-stat-item:first-child { border-left: 0; }
.hero-stat-number {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.hero-stat-unit { font-size: 1.1rem; font-weight: 700; margin-left: 2px; }
.hero-stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.62);
    margin-top: var(--space-2);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.4;
}

/* =============================================
   ABOUT / SOBRE SECTION
   ============================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-20);
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
}
.about-image::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--accent), var(--primary-light), var(--primary));
    border-radius: calc(var(--radius-2xl) + 4px);
    z-index: -1;
}
.about-image > img {
    width: 100%; height: 460px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    display: block;
}
.about-image-badge {
    position: absolute;
    bottom: var(--space-6); right: var(--space-6);
    background: var(--accent);
    color: var(--dark);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-lg);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--text-sm);
    box-shadow: var(--shadow-lg);
}
.about-text p {
    margin-bottom: var(--space-5);
    font-size: var(--text-lg);
    color: var(--gray-500);
    line-height: 1.8;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-top: var(--space-8);
}
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}
.about-feature:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: transparent;
}
.about-feature-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius);
    color: var(--white);
}
.about-feature-icon svg { width: 22px; height: 22px; fill: currentColor; }
.about-feature h4 { font-size: var(--text-base); font-weight: 600; margin-bottom: 2px; color: var(--dark); }
.about-feature p { font-size: var(--text-sm); color: var(--gray-500); margin: 0; }

/* =============================================
   IMPACT / IMPACTO SECTION
   ============================================= */
.impact-section {
    background: linear-gradient(135deg, #000000 0%, #0A0A0A 50%, #111111 100%);
    position: relative;
    overflow: hidden;
}
.impact-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 85% 15%, rgba(245,194,0,0.08) 0%, transparent 55%),
        radial-gradient(ellipse 50% 70% at 10% 90%, rgba(245,194,0,0.04) 0%, transparent 55%);
    pointer-events: none;
}
.impact-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: var(--space-6);
    position: relative;
    z-index: 1;
}
.impact-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: var(--space-8) var(--space-6);
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.impact-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}
.impact-card:hover {
    background: rgba(255,255,255,0.10);
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.14);
    box-shadow: 0 20px 40px rgba(0,0,0,0.30);
}
.impact-card:hover::after { transform: scaleX(1); }
.impact-icon {
    width: 64px; height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(245,194,0,0.25), rgba(245,194,0,0.10));
    border-radius: var(--radius-lg);
    margin: 0 auto var(--space-5);
    border: 1px solid rgba(245,194,0,0.20);
}
.impact-icon svg { width: 30px; height: 30px; fill: var(--accent); }
.impact-number {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: var(--space-2);
}
.impact-number .suffix { font-size: var(--text-3xl); color: var(--accent); }
.impact-title {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-2);
}
.impact-desc { font-size: var(--text-sm); color: rgba(255,255,255,0.50); line-height: 1.5; }

/* =============================================
   ODS & ESG SECTION
   ============================================= */
.ods-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: var(--space-4);
    margin-top: var(--space-10);
}
.ods-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 2px solid transparent;
    cursor: default;
}
.ods-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.ods-card h4 { font-size: var(--text-sm); font-weight: 700; color: var(--dark); margin-top: var(--space-2); }
.ods-card p { font-size: var(--text-xs); color: var(--gray-500); margin-top: 4px; line-height: 1.4; }
.ods-card[data-ods="1"]  { border-color: #E5243B; }
.ods-card[data-ods="2"]  { border-color: #DDA63A; }
.ods-card[data-ods="4"]  { border-color: #C5192D; }
.ods-card[data-ods="8"]  { border-color: #A21942; }
.ods-card[data-ods="16"] { border-color: #00689D; }
.ods-card[data-ods="17"] { border-color: #19486A; }

.esg-features {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: var(--space-8);
    margin-top: var(--space-12);
}
.esg-feature {
    text-align: center;
    padding: var(--space-8) var(--space-6);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}
.esg-feature:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: transparent; }
.esg-icon {
    width: 72px; height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--primary-rgb),0.08), rgba(var(--primary-rgb),0.04));
    border-radius: var(--radius-xl);
    margin: 0 auto var(--space-5);
    color: var(--primary);
}
.esg-icon svg { width: 34px; height: 34px; fill: currentColor; }
.esg-feature h3 { font-size: var(--text-xl); margin-bottom: var(--space-3); color: var(--dark); }
.esg-feature p { color: var(--gray-500); font-size: var(--text-sm); line-height: 1.7; }

/* =============================================
   PROGRAMS SECTION — carousel
   ============================================= */
.programs-carousel-outer { position: relative; }

.programs-track-clip {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 12px;
}
.programs-track-clip::-webkit-scrollbar { display: none; }

.programs-grid {
    display: flex;
    gap: var(--space-6);
}

.program-card {
    min-width: calc(33.333% - 16px);
    flex-shrink: 0;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: box-shadow var(--transition-slow), transform var(--transition-slow), border-color var(--transition-slow);
}
.program-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
    border-color: transparent;
}

.program-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #1a1a1a;
}

/* Sub-brand background colors */
.prog-bg-1 { background: linear-gradient(135deg, #FF8C00, #F5C200); }
.prog-bg-2 { background: linear-gradient(135deg, #C0392B, #E74C3C); }
.prog-bg-3 { background: linear-gradient(135deg, #6B2FA0, #9B59B6); }
.prog-bg-4 { background: linear-gradient(135deg, #00A86B, #27AE60); }
.prog-bg-5 { background: linear-gradient(135deg, #1A3A6B, #2980B9); }

/* Card "vitrine" da página Programas — altura maior que o card padrão
   do carrossel, com textura de marca (fundo.png) sutil atrás da logo,
   e responsiva (encolhe em telas menores). */
.program-card-image--feature {
    height: 460px;
    border-radius: var(--radius-2xl);
}
.program-card-image--feature::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: url('../img/fundo.png') center/cover no-repeat;
    opacity: 0.18;
    mix-blend-mode: soft-light;
    pointer-events: none;
}
@media (max-width: 1024px) {
    .program-card-image--feature { height: 380px; }
}
@media (max-width: 767px) {
    .program-card-image--feature { height: 300px; }
}
@media (max-width: 480px) {
    .program-card-image--feature { height: 240px; }
}

.prog-cover-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.program-card:hover .prog-cover-img { transform: scale(1.06); }

.program-placeholder-icon {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    position: relative;
    z-index: 2;
}
.program-placeholder-icon img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: none;
    transition: transform 0.5s ease;
}
.program-card:hover .program-placeholder-icon img { transform: scale(1.06); }
.program-placeholder-icon svg {
    width: 64px; height: 64px;
    fill: rgba(255,255,255,0.70);
}

/* Small #BORA logo badge */
.prog-bora-mark {
    position: absolute;
    bottom: 10px;
    right: 12px;
    height: 20px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.80;
    z-index: 3;
    pointer-events: none;
}

.program-card-badge {
    position: absolute;
    top: var(--space-4); left: var(--space-4);
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 4px var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.25);
    z-index: 3;
}

.program-card-body { padding: var(--space-6); }
.program-card-body h3 { font-size: var(--text-xl); margin-bottom: var(--space-3); color: var(--primary); }
.program-card-body p { font-size: var(--text-sm); color: var(--gray-500); margin-bottom: var(--space-5); line-height: 1.65; }
.program-card-ods { display: flex; gap: var(--space-2); margin-bottom: var(--space-4); flex-wrap: wrap; }
.program-card-ods span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px; height: 26px;
    border-radius: 5px;
    font-size: var(--text-xs);
    font-weight: 800;
    color: var(--white);
}
.ods-1 { background: #E5243B; }
.ods-2 { background: #DDA63A; }
.ods-4 { background: #C5192D; }
.ods-8 { background: #A21942; }
.ods-16 { background: #00689D; }
.ods-17 { background: #19486A; }

/* Carousel navigation */
.prog-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-6);
}
.prog-nav-btn {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 2px solid var(--gray-200);
    background: var(--white);
    color: var(--primary);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}
.prog-nav-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.prog-nav-btn:disabled { opacity: 0.30; cursor: not-allowed; }
.prog-nav-btn:disabled:hover { background: var(--white); color: var(--primary); border-color: var(--gray-200); }
.prog-dots { display: flex; gap: 7px; align-items: center; }
.prog-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gray-200);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.prog-dot.active { background: var(--accent); width: 22px; border-radius: 4px; }

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials-section { background: var(--gray-50); }
.testimonials-carousel { position: relative; overflow: hidden; }
.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial-slide { min-width: 100%; padding: 0 var(--space-4); }
.testimonial-card {
    max-width: 760px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-12) var(--space-10);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    text-align: center;
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: var(--space-6); left: var(--space-8);
    font-family: Georgia, serif;
    font-size: 6rem;
    color: var(--accent);
    opacity: 0.20;
    line-height: 1;
}
.testimonial-photo {
    width: 72px; height: 72px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto var(--space-5);
    border: 3px solid var(--accent);
    box-shadow: var(--shadow-md);
}
.testimonial-text {
    font-size: var(--text-xl);
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: var(--space-6);
    font-style: italic;
    position: relative;
    z-index: 1;
}
.testimonial-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--text-lg);
    color: var(--dark);
    margin-bottom: 4px;
}
.testimonial-type {
    font-size: var(--text-sm);
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-5);
    margin-top: var(--space-8);
}
.carousel-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}
.carousel-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: scale(1.08);
    box-shadow: var(--shadow-md);
}
.carousel-btn svg { width: 22px; height: 22px; fill: currentColor; }
.carousel-dots { display: flex; gap: var(--space-2); align-items: center; }
.carousel-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all var(--transition);
}
.carousel-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: var(--radius-full);
}

/* =============================================
   PARTNERS SECTION
   ============================================= */
.partners-filter {
    display: flex;
    gap: var(--space-2);
    justify-content: center;
    flex-wrap: wrap;
    margin: var(--space-8) 0;
}
.filter-btn {
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid var(--gray-200);
    color: var(--gray-500);
    background: var(--white);
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); border-color: var(--primary); color: var(--white); }
.partners-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: var(--space-5);
}
.partner-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-6) var(--space-8);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
    filter: grayscale(0.5);
    opacity: 0.85;
}
.partner-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    filter: grayscale(0);
    opacity: 1;
    border-color: var(--gray-200);
}
.partner-card img { max-height: 50px; width: auto; }

/* =============================================
   GALLERY SECTION
   ============================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: var(--space-3);
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    aspect-ratio: 1;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.85), transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-5);
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { color: var(--white); font-size: var(--text-sm); font-weight: 600; }
.gallery-overlay p { color: rgba(255,255,255,0.75); font-size: var(--text-xs); margin-top: 4px; }

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--space-16);
    align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: var(--space-6); }
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}
.contact-info-item:hover { background: var(--white); box-shadow: var(--shadow-md); border-color: transparent; }
.contact-icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    color: var(--white);
}
.contact-icon svg { width: 22px; height: 22px; fill: currentColor; }
.contact-info-item h4 { font-size: var(--text-base); font-weight: 700; margin-bottom: 4px; color: var(--dark); }
.contact-info-item p, .contact-info-item a { font-size: var(--text-sm); color: var(--gray-500); }
.contact-info-item a:hover { color: var(--primary); }

.contact-form {
    background: var(--white);
    padding: var(--space-10);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}
.form-group { margin-bottom: var(--space-5); }
.form-group label {
    display: block;
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--gray-700);
    margin-bottom: var(--space-2);
}
.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    color: var(--dark);
    background: var(--white);
    transition: all var(--transition);
    outline: none;
}
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb),0.08);
}
.form-control::placeholder { color: var(--gray-300); }
.form-control.field-error {
    border-color: var(--danger);
    box-shadow: 0 0 0 4px rgba(239,68,68,0.10);
}
textarea.form-control { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.form-message {
    padding: var(--space-4);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-5);
    font-weight: 500;
    font-size: var(--text-sm);
}
.form-message.success { background: var(--success-light); color: #065F46; border: 1px solid var(--success); }
.form-message.error   { background: var(--danger-light); color: #991B1B; border: 1px solid var(--danger); }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    background:
        linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(13,13,13,0.78) 60%, rgba(26,26,26,0.68) 100%),
        url('../img/fundo.png') center/cover no-repeat;
    text-align: center;
    padding: var(--space-24) 0;
    position: relative;
    overflow: hidden;
}
.cta-section h2 { color: var(--white); font-size: var(--text-4xl); margin-bottom: var(--space-4); position: relative; z-index: 1; }
.cta-section p { color: rgba(255,255,255,0.78); font-size: var(--text-lg); max-width: 560px; margin: 0 auto var(--space-8); position: relative; z-index: 1; line-height: 1.7; }
.cta-section .btn-group { justify-content: center; position: relative; z-index: 1; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.60);
    padding: var(--space-20) 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: var(--space-10);
    padding-bottom: var(--space-16);
}
.footer-brand p { font-size: var(--text-sm); line-height: 1.75; margin-top: var(--space-4); }
.footer-title { font-family: var(--font-display); font-size: var(--text-base); font-weight: 700; color: var(--white); margin-bottom: var(--space-5); }
.footer-links li { margin-bottom: var(--space-3); }
.footer-links a { font-size: var(--text-sm); color: rgba(255,255,255,0.50); transition: all var(--transition); display: inline-flex; align-items: center; gap: var(--space-1); }
.footer-links a:hover { color: var(--accent); padding-left: var(--space-1); }
.footer-contact-item { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-3); font-size: var(--text-sm); }
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--accent); flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.50); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-social { display: flex; gap: var(--space-3); margin-top: var(--space-5); }
.footer-social a {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.07);
    border-radius: var(--radius);
    color: rgba(255,255,255,0.55);
    transition: all var(--transition);
    border: 1px solid rgba(255,255,255,0.06);
}
.footer-social a:hover { background: var(--accent); color: var(--dark); transform: translateY(-3px); border-color: transparent; }
.footer-social a svg { width: 18px; height: 18px; fill: currentColor; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: var(--space-6) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-4);
}
.footer-bottom p { font-size: var(--text-sm); color: rgba(255,255,255,0.35); }

/* =============================================
   WHATSAPP FLOAT + BACK TO TOP
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-8); right: var(--space-8);
    z-index: 999;
    width: 58px; height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    border-radius: 50%;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    transition: all var(--transition);
    animation: wpulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: var(--white); animation: none; box-shadow: 0 6px 30px rgba(37,211,102,0.60); }
.whatsapp-float svg { width: 28px; height: 28px; fill: currentColor; }
@keyframes wpulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
    50%       { box-shadow: 0 4px 30px rgba(37,211,102,0.65), 0 0 0 10px rgba(37,211,102,0.08); }
}

.back-to-top {
    position: fixed;
    bottom: var(--space-8);
    right: calc(var(--space-8) + 70px);
    z-index: 998;
    width: 46px; height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition);
    cursor: pointer;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-light); transform: translateY(-3px); color: var(--white); }
.back-to-top svg { width: 20px; height: 20px; fill: currentColor; }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.animated { opacity: 1; transform: translateY(0); }
.animate-on-scroll.delay-1 { transition-delay: 0.10s; }
.animate-on-scroll.delay-2 { transition-delay: 0.20s; }
.animate-on-scroll.delay-3 { transition-delay: 0.30s; }
.animate-on-scroll.delay-4 { transition-delay: 0.40s; }
.animate-on-scroll.delay-5 { transition-delay: 0.50s; }

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
    position: fixed; inset: 0;
    z-index: 9999;
    background: rgba(10,22,40,0.94);
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius-xl); box-shadow: var(--shadow-2xl); }
.lightbox-close, .lightbox-nav {
    position: absolute;
    color: var(--white);
    cursor: pointer;
    font-size: 2rem;
    opacity: 0.7;
    transition: opacity var(--transition);
    user-select: none;
    line-height: 1;
}
.lightbox-close:hover, .lightbox-nav:hover { opacity: 1; }
.lightbox-close { top: var(--space-6); right: var(--space-8); font-size: 2.5rem; }
.lightbox-prev { left: var(--space-8); top: 50%; transform: translateY(-50%); }
.lightbox-next { right: var(--space-8); top: 50%; transform: translateY(-50%); }

/* =============================================
   PAGE HEADER (Internal Pages)
   ============================================= */
.page-header {
    background:
        linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(13,13,13,0.75) 100%),
        url('../img/fundo.png') center/cover no-repeat;
    padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-16);
    text-align: center;
    position: relative;
    overflow: hidden;
}
/* Arte de fundo discreta — mesma linguagem do hero (textura + pinceladas
   de canto), mas contida a um banner pequeno: bem mais sutil, sem
   disputar espaço com o título. Cascata automática para toda página que
   usa .page-header (sobre, programas, galeria, contato, parceiros, ESG,
   associados, loja, consultoria, copa-kart...). */
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        url('../art/concrete-texture.svg'),
        url('../art/texture-print-halftone.svg'),
        url('../art/corner-mass-tl.svg'),
        url('../art/roller-band-coral.svg');
    background-size: 260px 260px, 80px 80px, 440px auto, 480px auto;
    background-position: 0 0, 0 0, -70px -55%, calc(100% + 40px) calc(100% + 60px);
    background-repeat: repeat, repeat, no-repeat, no-repeat;
    mix-blend-mode: overlay;
    opacity: 0.4;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0;
    width: 100%; height: 60px;
    z-index: 0;
    background: linear-gradient(to top, var(--white), transparent);
    pointer-events: none;
}
.page-header > .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); font-size: var(--text-4xl); margin-bottom: var(--space-3); }
.page-header p { color: rgba(255,255,255,0.78); font-size: var(--text-lg); max-width: 600px; margin: 0 auto; }

/* Telas pequenas: só a textura (mais barata), sem as pinceladas de canto */
@media (max-width: 480px) {
    .page-header::before { background-image: url('../art/concrete-texture.svg'); opacity: 0.12; }
}
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.55);
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }

/* =============================================
   BORA CLUBE TABS
   ============================================= */
.clube-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-12);
}
.clube-tab {
    padding: var(--space-3) var(--space-8);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid var(--gray-200);
    color: var(--gray-500);
    background: var(--white);
}
.clube-tab:hover { border-color: var(--primary); color: var(--primary); }
.clube-tab.active { background: var(--primary); border-color: var(--primary); color: var(--white); }
.clube-content { display: none; }
.clube-content.active { display: block; }
.plans-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: var(--space-6);
}
.plan-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--gray-100);
    transition: all var(--transition);
    position: relative;
}
.plan-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-6px); }
.plan-card.featured { border-color: var(--accent); box-shadow: var(--shadow-lg); transform: scale(1.02); }
.plan-card.featured:hover { transform: scale(1.02) translateY(-6px); }
.plan-featured-tag {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--dark);
    padding: 4px var(--space-5);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}
.plan-name { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: var(--primary); margin-bottom: var(--space-2); }
.plan-price { margin-bottom: var(--space-6); }
.plan-price .currency { font-size: var(--text-lg); font-weight: 600; color: var(--gray-500); vertical-align: top; }
.plan-price .amount { font-family: var(--font-display); font-size: var(--text-5xl); font-weight: 900; color: var(--dark); line-height: 1; }
.plan-price .period { font-size: var(--text-sm); color: var(--gray-400); }
.plan-features { text-align: left; margin-bottom: var(--space-8); }
.plan-feature {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: var(--text-sm);
    color: var(--gray-600);
}
.plan-feature:last-child { border-bottom: none; }
.plan-feature svg { width: 16px; height: 16px; fill: var(--success); flex-shrink: 0; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    :root {
        --text-7xl: 3.2rem;
        --text-6xl: 2.8rem;
        --text-5xl: 2.4rem;
        --text-4xl: 2rem;
    }
    .hero-grid { grid-template-columns: 1fr; gap: var(--space-12); padding: var(--space-16) 0; }
    .hero-visual { display: none; }
    .hero-stats { gap: var(--space-8); }

    /* Key Visual — tablet: painéis mais estreitos, centro ainda mais livre */
    .hero-kv-crop { width: 24%; }
    .impact-grid { grid-template-columns: repeat(2,1fr); }
    .program-card { min-width: calc(50% - 12px); }
    .workshop-grid { grid-template-columns: repeat(2,1fr); }
    .workshop-card.destaque { transform: none; }
    .ods-grid { grid-template-columns: repeat(3,1fr); }
    .plans-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: repeat(2,1fr); }
    .gallery-grid { grid-template-columns: repeat(3,1fr); }
    .partners-grid { grid-template-columns: repeat(3,1fr); }

    /* Grades utilitárias genéricas (usadas em associados, parceiros-pj,
       esg, banners da home, copa-kart, consultoria, sobre) — nunca tinham
       ajuste de tela, por isso quebravam texto/formulário no celular. */
    .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
    :root {
        --text-7xl: 2.4rem;
        --text-6xl: 2rem;
        --text-5xl: 1.85rem;
        --text-4xl: 1.7rem;
        --text-3xl: 1.45rem;
        --header-height: 70px;
    }
    section { padding: var(--space-16) 0; }
    .container { padding: 0 var(--space-5); }

    /* Mobile navigation */
    .menu-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: 0; right: -100%;
        width: 100%; height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-2);
        transition: right var(--transition-slow);
        z-index: 1000;
    }
    .main-nav.active { right: 0; }
    .nav-link { color: rgba(255,255,255,0.80); font-size: var(--text-xl); padding: var(--space-3) var(--space-6); }
    /* Hide active underline inside mobile full-screen menu */
    .nav-link.active::after { display: none; }
    .header-cta { margin-left: 0; margin-top: var(--space-4); }

    /* Hero */
    .hero { padding: calc(var(--header-height) + var(--space-6)) 0 var(--space-12); min-height: auto; }
    .hero-grid { padding: var(--space-6) 0; }
    .hero-center { padding: var(--space-8) 0 var(--space-12); }
    .hero-center h1 { max-width: 100%; }
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-5) var(--space-4);
        border-top: 0;
    }
    .hero-stat-item {
        text-align: center;
        border-left: 0;
        padding: var(--space-3) 0 0;
        border-top: 1px solid rgba(255,255,255,0.14);
        max-width: none;
    }
    .hero .btn-group { flex-direction: column; }
    .hero .btn-group .btn { width: 100%; justify-content: center; min-width: 0; }

    /* Key Visual — mobile: os dois painéis viram frisos finos nas bordas
       (ainda uma moldura, só mais discreta), o centro fica praticamente
       todo para o conteúdo. */
    .hero-kv-crop { width: 16%; }
    .hero-kv-overlay {
        background: radial-gradient(ellipse 70% 82% at 50% 50%,
            rgba(5,6,8,0.9) 0%, rgba(5,6,8,0.7) 48%, rgba(5,6,8,0.5) 100%);
    }
    .hero-mural-texture { opacity: 0.06; }

    /* Sections */
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: var(--space-8); }
    .about-features { grid-template-columns: 1fr; }
    .impact-grid { grid-template-columns: 1fr; }
    .program-card { min-width: calc(85% - 12px); }
    .workshop-grid { grid-template-columns: 1fr; }
    .workshop-card.destaque { transform: none; }
    .workshop-card.destaque:hover { transform: translateY(-4px); }
    .esg-features { grid-template-columns: 1fr; }
    .plans-grid { grid-template-columns: 1fr; }
    .clube-tabs { flex-direction: column; align-items: center; }
    .ods-grid { grid-template-columns: repeat(2,1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    /* PIX key box — allow button to wrap below email on narrow screens */
    .pix-key-box { flex-wrap: wrap; justify-content: center; }
    .pix-key-text { text-align: center; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
    .footer-bottom { flex-direction: column; text-align: center; }

    /* Gallery / Partners */
    .gallery-grid { grid-template-columns: repeat(2,1fr); }
    .partners-grid { grid-template-columns: repeat(2,1fr); }

    /* Floating elements */
    .whatsapp-float { bottom: var(--space-5); right: var(--space-5); width: 52px; height: 52px; }
    .back-to-top { right: calc(var(--space-5) + 62px); bottom: var(--space-5); }

    /* Misc */
    .testimonial-card { padding: var(--space-8) var(--space-6); }
    .testimonial-text { font-size: var(--text-lg); }
    .contact-form { padding: var(--space-8) var(--space-6); }
}

@media (max-width: 480px) {
    :root {
        --text-7xl: 2rem;
        --text-5xl: 1.6rem;
        --text-4xl: 1.5rem;
        --text-3xl: 1.3rem;
    }
    .section-title { font-size: 1.5rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .ods-grid { grid-template-columns: repeat(2,1fr); gap: var(--space-3); }
    .partners-grid { grid-template-columns: repeat(2,1fr); }
    /* Hero stats — grade 2x2, texto reduzido */
    .hero-stats { gap: var(--space-4) var(--space-3); }
    .hero-stat-number { font-size: 1.8rem; }
    .hero-stat-label { font-size: 0.62rem; letter-spacing: 0; }
    .hero-kv-crop { width: 12%; }
    /* Textura de concreto: desligada em telas muito pequenas (custo de render) */
    .hero-mural-texture { display: none; }
    /* Workshop full-width CTA on tiny screens */
    .workshop-card .btn { width: 100%; }
    /* Lighter padding on club cards */
    .clube-preview-card { padding: var(--space-6); }
    .plan-card { padding: var(--space-6); }
    /* Testimonial quote decorative element too large on tiny screens */
    .testimonial-card::before { font-size: 4rem; }
    .cta-section { padding: var(--space-16) 0; }
    .cta-section h2 { font-size: 1.6rem; }
    .footer-grid { gap: var(--space-6); }
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.mb-0 { margin-bottom: 0 !important; }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }

/* =============================================
   #BORA — NAV DOE HIGHLIGHT
   ============================================= */
.nav-doe {
    color: var(--accent-light) !important;
    font-weight: 700 !important;
}
.nav-doe::after { display: none !important; }
.site-header.scrolled .nav-doe { color: var(--accent-dark) !important; }

/* =============================================
   SKIP LINK (Accessibility)
   ============================================= */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-6);
    background: var(--primary);
    color: var(--white);
    padding: var(--space-3) var(--space-6);
    border-radius: 0 0 var(--radius) var(--radius);
    font-weight: 700;
    font-size: var(--text-sm);
    z-index: 9999;
    transition: top var(--transition-fast);
    text-decoration: none;
}
.skip-link:focus { top: 0; color: var(--white); }

/* =============================================
   FOCUS VISIBLE (Accessibility)
   ============================================= */
:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}
button:focus-visible,
a:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

/* =============================================
   SELECTION COLOR
   ============================================= */
::selection { background: rgba(245,194,0,0.25); color: var(--dark); }

/* =============================================
   PIX / DONATION SECTION
   ============================================= */
.pix-section {
    background: linear-gradient(135deg, #000000 0%, #0A0A0A 50%, #111111 100%);
    position: relative;
    overflow: hidden;
}
.pix-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 90% 10%, rgba(245,194,0,0.10) 0%, transparent 55%),
        radial-gradient(ellipse 40% 60% at 5% 90%, rgba(245,194,0,0.05) 0%, transparent 55%);
    pointer-events: none;
}
.pix-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    position: relative;
    z-index: 1;
    margin-top: var(--space-12);
}
.pix-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    text-align: center;
}
.pix-icon {
    width: 80px; height: 80px;
    background: rgba(245,194,0,0.15);
    border: 2px solid rgba(245,194,0,0.30);
    border-radius: var(--radius-xl);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto var(--space-6);
}
.pix-icon svg { width: 40px; height: 40px; fill: var(--accent); }
.pix-card h3 { color: var(--white); font-size: var(--text-2xl); margin-bottom: var(--space-4); }
.pix-key-box {
    background: rgba(0,0,0,0.30);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-4) var(--space-6);
    margin-bottom: var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
}
.pix-key-text {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--accent-light);
    word-break: break-all;
    text-align: left;
}
.pix-copy-btn {
    flex-shrink: 0;
    background: var(--accent);
    color: var(--dark);
    border: none;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-size: var(--text-xs);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}
.pix-copy-btn:hover { background: var(--accent-dark); color: var(--white); transform: scale(1.05); }
.pix-copy-btn.copied { background: var(--success); color: var(--white); }
.pix-card > small { font-size: var(--text-xs); color: rgba(255,255,255,0.45); display: block; margin-top: var(--space-4); }

.pix-info-side { color: var(--white); }
.pix-info-side h3 { font-size: var(--text-2xl); margin-bottom: var(--space-8); }
.pix-amount-items { display: flex; flex-direction: column; gap: var(--space-4); }
.pix-amount-item {
    display: flex;
    align-items: center;
    gap: var(--space-5);
    padding: var(--space-5);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.pix-amount-item:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(245,194,0,0.30);
    transform: translateX(6px);
}
.pix-amount-value {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 900;
    color: var(--accent);
    min-width: 80px;
}
.pix-amount-desc { font-size: var(--text-sm); color: rgba(255,255,255,0.75); line-height: 1.5; }

@media (max-width: 768px) {
    .pix-grid { grid-template-columns: 1fr; gap: var(--space-8); }
    .pix-info-side h3 { font-size: var(--text-xl); word-break: break-word; }
    .pix-amount-item { padding: var(--space-4); gap: var(--space-4); }
    .pix-amount-value { min-width: 70px; font-size: var(--text-xl); }
    .pix-card { padding: var(--space-8); }
}

/* =============================================
   PARCEIROS / APOIADORES — CARROSSEL STRIP
   ============================================= */
.partners-strip {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    padding: var(--space-5) 0 var(--space-4);
    overflow: hidden;
}
.partners-strip-label {
    text-align: center;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-400);
    margin: 0 0 var(--space-4);
}
.partners-marquee { overflow: hidden; }
.partners-track {
    display: flex;
    align-items: center;
    gap: var(--space-12);
    width: max-content;
    animation: partnersScroll 28s linear infinite;
    will-change: transform;
}
.partners-track:hover { animation-play-state: paused; }
.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 100px;
}
.partner-logo-item img {
    height: 44px;
    max-width: 140px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(55%);
    transition: filter 0.3s ease;
}
.partner-logo-item img:hover { filter: grayscale(0%) opacity(100%); }
.partner-logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--text-base);
    color: var(--gray-400);
    white-space: nowrap;
    transition: color 0.3s ease;
}
.partner-logo-text:hover { color: var(--primary); }
@keyframes partnersScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .partners-track { animation-play-state: paused; }
}
@media (max-width: 768px) {
    .partners-track { gap: var(--space-8); animation-duration: 20s; }
    .partner-logo-item img { height: 36px; max-width: 110px; }
}

/* =============================================
   BORACLUBE PREVIEW SECTION
   ============================================= */
.boraclube-preview-section { background: var(--white); }
.clube-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-12);
}
.clube-preview-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    border: 2px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.clube-preview-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}
.clube-preview-card.destaque {
    border-color: var(--accent);
    box-shadow: var(--shadow-xl);
    transform: scale(1.04);
    z-index: 2;
}
.clube-preview-card.destaque::before {
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    height: 5px;
}
.clube-preview-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
    border-color: var(--primary-light);
}
.clube-preview-card.destaque:hover {
    transform: scale(1.04) translateY(-6px);
    border-color: var(--accent);
}
.clube-destaque-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 4px var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-4);
}
.clube-preview-name {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--space-2);
}
.clube-preview-price {
    margin: var(--space-5) 0;
}
.clube-preview-price .currency { font-size: var(--text-base); color: var(--gray-400); vertical-align: super; }
.clube-preview-price .amount {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
}
.clube-preview-price .period { font-size: var(--text-sm); color: var(--gray-400); }
.clube-preview-features {
    list-style: none;
    text-align: left;
    margin: var(--space-6) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}
.clube-preview-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--text-sm);
    color: var(--gray-600);
}
.clube-preview-features li svg {
    width: 16px; height: 16px;
    fill: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 900px) {
    .clube-preview-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
    .clube-preview-card.destaque { transform: scale(1); box-shadow: var(--shadow-lg); }
    .clube-preview-card.destaque:hover { transform: translateY(-6px); border-color: var(--accent); }
}

/* =============================================
   COZINHAKIDS WORKSHOP SECTION
   ============================================= */
.workshop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-12);
}
.workshop-card {
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-2xl);
    padding: var(--space-8) var(--space-6);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
    position: relative;
}
.workshop-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary-light);
}
.workshop-card.destaque {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}
.workshop-card.destaque:hover { box-shadow: var(--shadow-xl); transform: translateY(-6px); }
.workshop-icon {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    margin-bottom: var(--space-2);
    flex-shrink: 0;
}
.workshop-card.destaque .workshop-icon {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
}
.workshop-badge-tag {
    position: absolute;
    top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--accent);
    color: var(--dark);
    font-size: var(--text-xs);
    font-weight: 700;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    letter-spacing: .05em;
    text-transform: uppercase;
    white-space: nowrap;
}
.workshop-label {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: var(--text-xl);
    color: var(--primary-dark);
}
.workshop-qty {
    font-size: var(--text-sm);
    color: var(--gray-500);
    font-weight: 500;
}
.workshop-price {
    font-size: var(--text-3xl);
    color: var(--gray-700);
    line-height: 1;
}
.workshop-price strong {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: var(--text-5xl);
    color: var(--primary-dark);
}
.workshop-card.destaque .workshop-price strong { color: var(--accent-dark); }
.workshop-card p {
    font-size: var(--text-sm);
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

/* =============================================
   BORACLUBE PAGE
   ============================================= */

/* Hero */
.bc-hero {
    background:
        linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(10,10,10,0.78) 60%, rgba(20,20,20,0.68) 100%),
        url('../img/fundo.png') center/cover no-repeat;
    color: var(--white);
    padding: calc(var(--header-height) + var(--space-16)) 0 0;
    position: relative;
    overflow: hidden;
}
.bc-hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.bc-hero-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}
.bc-circle-1 { width: 500px; height: 500px; top: -120px; right: -100px; }
.bc-circle-2 { width: 300px; height: 300px; bottom: 40px; left: -80px; }

.bc-hero .breadcrumb { color: rgba(255,255,255,0.55); margin-bottom: var(--space-10); }
.bc-hero .breadcrumb a { color: rgba(255,255,255,0.55); }
.bc-hero .breadcrumb a:hover { color: var(--accent); }
.bc-hero .breadcrumb svg { fill: rgba(255,255,255,0.4); }

.bc-hero-content { max-width: 680px; padding-bottom: var(--space-14); }
.bc-hero-title {
    font-family: var(--font-display);
    font-size: var(--text-6xl);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.02;
    margin: var(--space-4) 0 var(--space-6);
    letter-spacing: -0.5px;
}
.bc-hero-sub {
    font-size: var(--text-lg);
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: var(--space-8);
    max-width: 560px;
}

.bc-hero-badges { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.bc-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.85);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    backdrop-filter: blur(4px);
}
.bc-badge svg { fill: var(--accent); flex-shrink: 0; }

/* Hero stats bar */
.bc-hero-stat-row {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-top: 0;
    padding: var(--space-6) 0;
}
.bc-hero-stat { flex: 1; text-align: center; }
.bc-hero-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--accent);
    line-height: 1.1;
}
.bc-hero-stat span {
    display: block;
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}
.bc-hero-stat-sep {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

/* How It Works */
.bc-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-12);
}
.bc-how-step {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    position: relative;
}
.bc-how-num {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: var(--gray-100);
    line-height: 1;
    margin-bottom: var(--space-4);
    letter-spacing: -2px;
}
.bc-how-icon {
    width: 52px; height: 52px;
    background: var(--primary);
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: var(--space-5);
}
.bc-how-icon svg { fill: var(--white); }
.bc-how-step h3 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-3);
}
.bc-how-step p {
    font-size: var(--text-sm);
    color: var(--gray-500);
    line-height: 1.7;
    margin: 0;
}

/* Toggle PF/PJ */
.bc-toggle {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    background: var(--gray-100);
    border-radius: var(--radius-full);
    padding: 4px;
    max-width: 320px;
    margin: 0 auto var(--space-12);
}
.bc-toggle-btn {
    flex: 1;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--text-sm);
    border: none;
    background: transparent;
    color: var(--gray-500);
    cursor: pointer;
    transition: all var(--transition);
}
.bc-toggle-btn.active {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

/* Plan cards grid */
.bc-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    align-items: start;
    margin-bottom: var(--space-8);
}

/* Plan card */
.bc-plan-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1.5px solid var(--gray-100);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
    display: flex;
    flex-direction: column;
}
.bc-plan-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.bc-plan-featured {
    border-color: var(--accent);
    box-shadow: 0 8px 40px rgba(212,175,55,0.18);
    transform: translateY(-6px);
    position: relative;
    z-index: 1;
}
.bc-plan-featured:hover { transform: translateY(-10px); }

.bc-plan-stripe {
    height: 4px;
    flex-shrink: 0;
}
.bc-stripe-blue  { background: var(--primary); }
.bc-stripe-gold  { background: var(--accent); }
.bc-stripe-dark  { background: var(--dark); }

/* Plan card inner padding */
.bc-plan-top {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-6) var(--space-6) 0;
    margin-bottom: var(--space-5);
}
.bc-plan-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.bc-icon-blue { background: rgba(13,32,64,0.08); }
.bc-icon-blue svg { fill: var(--primary); }
.bc-icon-gold { background: rgba(212,175,55,0.12); }
.bc-icon-gold svg { fill: #b8930a; }
.bc-icon-dark { background: rgba(26,26,46,0.07); }
.bc-icon-dark svg { fill: var(--dark); }

.bc-plan-name {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.1;
}
.bc-plan-tagline {
    font-size: var(--text-xs);
    color: var(--gray-400);
    font-weight: 500;
}

.bc-featured-tag {
    position: absolute;
    top: 14px; right: var(--space-5);
    background: var(--accent);
    color: var(--dark);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px var(--space-3);
    border-radius: var(--radius-full);
}

.bc-plan-impact {
    margin: 0 var(--space-6) var(--space-5);
    padding: var(--space-3) var(--space-4);
    background: var(--gray-50);
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: var(--text-sm);
    color: var(--gray-600);
    line-height: 1.6;
    font-style: italic;
}
.bc-plan-featured .bc-plan-impact { border-left-color: var(--accent); background: rgba(212,175,55,0.06); }

.bc-plan-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    padding: 0 var(--space-6) var(--space-5);
}
.bc-currency { font-size: var(--text-lg); font-weight: 600; color: var(--gray-400); }
.bc-amount {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1;
}
.bc-plan-featured .bc-amount { color: #8a6a00; }
.bc-period { font-size: var(--text-sm); color: var(--gray-400); margin-left: 4px; }

.bc-features {
    list-style: none;
    padding: 0 var(--space-6) var(--space-6);
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}
.bc-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--text-sm);
    color: var(--gray-600);
    line-height: 1.5;
}
.bc-features li svg { fill: var(--success); flex-shrink: 0; margin-top: 1px; }

.bc-plan-card .btn {
    margin: 0 var(--space-6) var(--space-6);
    width: calc(100% - var(--space-12));
    box-sizing: border-box;
    text-align: center;
    display: block;
}

/* #Anjo card */
.bc-anjo {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: var(--radius-xl);
    padding: var(--space-7) var(--space-8);
    display: flex;
    align-items: center;
    gap: var(--space-6);
    color: var(--white);
}
.bc-anjo-icon {
    width: 56px; height: 56px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.bc-anjo-icon svg { fill: var(--accent); }
.bc-anjo-text {
    flex: 1;
    font-weight: 600;
    font-size: var(--text-base);
}
.bc-anjo-text span {
    display: block;
    font-weight: 400;
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.65);
    margin-top: 2px;
}
.bc-anjo .btn { flex-shrink: 0; white-space: nowrap; border-color: rgba(255,255,255,0.4); color: var(--white); }
.bc-anjo .btn:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.7); }

/* PJ intro */
.bc-pj-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-10);
}
.bc-pj-intro h3 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--space-3);
}
.bc-pj-intro p { color: var(--gray-500); line-height: 1.7; margin: 0; }

/* Quote section */
.bc-quote-section {
    background: var(--primary-dark);
    padding: var(--space-20) 0;
}
.bc-quote-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 0 var(--space-8);
}
.bc-quote-mark {
    width: 44px;
    fill: var(--accent);
    opacity: 0.5;
    margin-bottom: var(--space-6);
}
.bc-quote-inner blockquote {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 500;
    color: var(--white);
    line-height: 1.5;
    margin: 0 0 var(--space-6);
}
.bc-quote-inner cite {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.5);
    font-style: normal;
}

/* FAQ */
.bc-faq {
    max-width: 720px;
    margin: var(--space-12) auto 0;
}
.bc-faq-item {
    border-bottom: 1px solid var(--gray-200);
}
.bc-faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-5) 0;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    font-size: var(--text-base);
    list-style: none;
    gap: var(--space-4);
}
.bc-faq-item summary::-webkit-details-marker { display: none; }
.bc-faq-item summary svg { fill: var(--gray-400); flex-shrink: 0; transition: transform var(--transition); }
.bc-faq-item[open] summary svg { transform: rotate(180deg); }
.bc-faq-item[open] summary { color: var(--primary); }
.bc-faq-item p {
    padding: 0 0 var(--space-5);
    margin: 0;
    color: var(--gray-500);
    line-height: 1.7;
    font-size: var(--text-sm);
}

/* CTA final */
.bc-cta-section {
    background:
        linear-gradient(135deg, rgba(10,26,48,0.82) 0%, rgba(0,0,0,0.78) 100%),
        url('../img/fundo.png') center/cover no-repeat;
    padding: var(--space-20) 0;
    position: relative;
}
.bc-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-10);
}
.bc-cta-text h2 {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-3);
}
.bc-cta-text p { color: rgba(255,255,255,0.55); margin: 0; }
.bc-cta-actions { display: flex; gap: var(--space-4); flex-shrink: 0; }
.bc-cta-actions .btn-accent svg { fill: var(--white); }
.bc-cta-actions .btn-outline { border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.7); }
.bc-cta-actions .btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); color: var(--white); }

/* ===== BoraClube Responsive ===== */
@media (max-width: 1024px) {
    .bc-plans-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .bc-plan-featured { transform: none; }
    .bc-plan-featured:hover { transform: translateY(-4px); }
    .bc-how-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .bc-cta-inner { flex-direction: column; text-align: center; }
    .bc-cta-actions { flex-direction: column; width: 100%; max-width: 320px; }
    .bc-cta-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 768px) {
    .bc-hero { padding-top: calc(var(--header-height) + var(--space-10)); }
    .bc-hero-title { font-size: var(--text-4xl); }
    .bc-hero-sub { font-size: var(--text-base); }
    .bc-hero-stat-row { flex-wrap: wrap; gap: var(--space-4); }
    .bc-hero-stat { min-width: 40%; }
    .bc-hero-stat-sep { display: none; }
    .bc-hero-content { padding-bottom: var(--space-10); }
    .bc-anjo { flex-direction: column; text-align: center; gap: var(--space-4); }
    .bc-anjo .btn { width: 100%; }
    .bc-quote-inner blockquote { font-size: var(--text-xl); }
}

/* =============================================
   ADMIN STYLES — preserved
   ============================================= */

/* Custom uppercase spacing */
.text-uppercase,
[style*="text-transform: uppercase"],
[style*="text-transform:uppercase"] {
    letter-spacing: 0.05em;
}

/* Dropdown Menu Styles */
.nav-item-dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius);
    padding: var(--space-2) 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 1000;
}
.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu a {
    display: block;
    padding: var(--space-2) var(--space-4);
    color: var(--gray-700);
    font-size: var(--text-sm);
    font-weight: 500;
}
.dropdown-menu a:hover {
    background: var(--gray-50);
    color: var(--accent-dark);
}
.site-header.scrolled .dropdown-menu a {
    color: var(--gray-700);
}

/* Correção de Logo dos Programas e Cores ODS */
.program-placeholder-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: var(--space-8);
}
.program-placeholder-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain !important;
}

/* ODS Colors */
.ods-1 { background-color: #E5243B !important; color: #fff !important; }
.ods-2 { background-color: #DDA63A !important; color: #fff !important; }
.ods-4 { background-color: #C5192D !important; color: #fff !important; }
.ods-8 { background-color: #A21942 !important; color: #fff !important; }
.ods-16 { background-color: #00689D !important; color: #fff !important; }
.ods-17 { background-color: #19486A !important; color: #fff !important; }
