/**
 * Guia Bicuiras - Brutalist Modern Design
 * Estilo visual inspirado em GSAP + Webflow (brutalismo moderno)
 * Tipografia pesada, cores sólidas, animações fluidas
 */

/* ========================================
   FONTES DISPLAY (Brutalistas)
======================================== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Archivo+Black&family=Oswald:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
    /* === PALETA BRUTALISTA - AZUL BICUIRAS === */
    /* Azul Primário (Sistema Original) */
    --brutalist-green: #2DB8C7;
    --brutalist-green-light: #4DD0E1;
    --brutalist-green-accent: #80DEEA;
    
    /* Azul Escuro / Accent */
    --brutalist-orange: #1E88E5;
    --brutalist-orange-dark: #1565C0;
    --brutalist-orange-light: #42A5F5;
    
    /* Fundos Claros */
    --brutalist-sand: #F5F9FC;
    --brutalist-cream: #E3F2FD;
    --brutalist-tan: #90CAF9;
    
    /* Cores de Contraste */
    --brutalist-black: #0A0A0A;
    --brutalist-charcoal: #1E293B;
    --brutalist-white: #FFFFFF;
    --brutalist-gray: #4A4A4A;
    
    /* Cores do Guia Bicuiras - Categorias Template */
    --cat-gastronomia: #ff751f;   /* Laranja - Melhores Rangos */
    --cat-vida-noturna: #04c4d9;  /* Azul - Vida Noturna */
    --cat-lugares: #59cd41;       /* Verde - Picos Turísticos */
    --cat-comercio: #ffbd59;      /* Amarelo - Comércio & Lifestyle */
    --cat-hospedagem: #1E88E5;    /* Azul escuro - Hospedagem */
    --cat-eventos: #FB8C00;
    --cat-servicos: #8E24AA;
    
    /* === TIPOGRAFIA BRUTALISTA === */
    --font-display: 'Bebas Neue', 'Archivo Black', Impact, sans-serif;
    --font-heading: 'Oswald', 'Bebas Neue', sans-serif;
    --font-body: 'DM Sans', 'Inter', -apple-system, sans-serif;
    
    /* === ESPAÇAMENTOS E DIMENSÕES === */
    --section-padding: clamp(3rem, 6vw, 5rem);
    --container-max: 1400px;
    --border-thick: 3px;
    
    /* === TRANSIÇÕES GSAP-STYLE === */
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
    --duration-fast: 0.3s;
    --duration-medium: 0.6s;
    --duration-slow: 1s;
}

/* ========================================
   ESTILOS BASE BRUTALISTAS
======================================== */

/* Seleção de texto customizada */
::selection {
    background: var(--brutalist-orange);
    color: var(--brutalist-white);
}

/* Scrollbar customizada */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--brutalist-charcoal);
}

::-webkit-scrollbar-thumb {
    background: var(--brutalist-orange);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brutalist-orange-light);
}

/* ========================================
   HEADER PADRÃO - COMPATIBILIDADE
   Para funcionar com header-standard.php
======================================== */

/* Header padrão em páginas brutalistas */
.brutalist-page .header-standard {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999 !important; /* Sempre no topo */
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}

.brutalist-page .header-standard.scrolled {
    background: rgba(26, 26, 26, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3) !important;
}

/* Logo branco em páginas brutalistas */
.brutalist-page .header-standard .header-logo img {
    filter: brightness(0) invert(1) !important;
    transition: filter 0.3s ease !important;
}

.brutalist-page .header-standard.scrolled .header-logo img {
    filter: none !important;
}

/* Navegação branca */
.brutalist-page .header-standard .header-nav-btn {
    color: rgba(255, 255, 255, 0.9) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.brutalist-page .header-standard .header-nav-btn:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

.brutalist-page .header-standard.scrolled .header-nav-btn {
    color: var(--brutalist-charcoal) !important;
    background: transparent !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

.brutalist-page .header-standard.scrolled .header-nav-btn:hover {
    background: var(--brutalist-cream) !important;
    border-color: var(--brutalist-green) !important;
    color: var(--brutalist-green) !important;
}

/* Botão de login */
.brutalist-page .header-standard .header-login-btn {
    color: white !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.brutalist-page .header-standard .header-login-btn:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.brutalist-page .header-standard.scrolled .header-login-btn {
    background: linear-gradient(135deg, var(--brutalist-green), var(--brutalist-orange)) !important;
    border-color: transparent !important;
    color: white !important;
}

/* Mobile toggle branco */
.brutalist-page .header-standard .header-mobile-toggle span {
    background: white !important;
}

.brutalist-page .header-standard.scrolled .header-mobile-toggle span {
    background: var(--brutalist-charcoal) !important;
}

/* ========================================
   Z-INDEX HIERARCHY - ORGANIZAÇÃO GLOBAL
======================================== */
/*
    9999 - Header (sempre visível)
    900  - Modals, overlays
    500  - FAB buttons, tooltips
    100  - Hero content (acima do vídeo)
    10   - Elementos elevados
    2    - Overlays de seção
    1    - Vídeos, backgrounds
    0    - Base
    -1   - Decorações de fundo
*/

/* ========================================
   HEADER BRUTALISTA TRANSPARENTE
   Para funcionar com vídeo de fundo
======================================== */
.brutalist-page .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999; /* Sempre acima de tudo */
    background: transparent;
    box-shadow: none;
    border-bottom: none;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.brutalist-page .header.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.brutalist-page .header .logo img {
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.brutalist-page .header.scrolled .logo img {
    filter: none;
}

.brutalist-page .header .btn-icon {
    color: var(--brutalist-white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.brutalist-page .header .btn-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.brutalist-page .header.scrolled .btn-icon {
    color: var(--brutalist-charcoal);
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Navegação do Header */
.brutalist-page .header .header-nav {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.brutalist-page .header .header-login-btn,
.brutalist-page .header .header-plans-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    border-radius: 4px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.brutalist-page .header .header-login-btn {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--brutalist-white);
    background: transparent;
}

.brutalist-page .header .header-login-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--brutalist-white);
}

.brutalist-page .header.scrolled .header-login-btn {
    border-color: rgba(0, 0, 0, 0.2);
    color: var(--brutalist-charcoal);
}

.brutalist-page .header.scrolled .header-login-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--brutalist-charcoal);
}

.brutalist-page .header .header-plans-btn {
    background: var(--brutalist-orange);
    border-color: var(--brutalist-orange);
    color: var(--brutalist-white);
    box-shadow: 0 2px 10px rgba(30, 136, 229, 0.3);
}

.brutalist-page .header .header-plans-btn:hover {
    background: var(--brutalist-orange-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.4);
}

/* Mobile: Esconder texto do botão de planos */
@media (max-width: 480px) {
    .brutalist-page .header .header-plans-btn span {
        display: none;
    }
    
    .brutalist-page .header .header-login-btn,
    .brutalist-page .header .header-plans-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
}

/* Ajuste para conteúdo não ficar sob o header fixo */
.brutalist-page main {
    padding-top: 0;
}

.brutalist-page .brutalist-hero {
    margin-top: 0;
    padding-top: 0;
}

/* Scroll suave e fluido para mobile */
@media (max-width: 768px) {
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    .brutalist-page {
        scroll-snap-type: y proximity;
    }
    
    .brutalist-hero--video {
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
}

/* ========================================
   HERO BRUTALISTA
======================================== */
.brutalist-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: var(--brutalist-green);
    overflow: hidden;
    padding: var(--section-padding) 1rem;
}

.brutalist-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, var(--brutalist-green) 0%, var(--brutalist-green-light) 100%);
    z-index: 0;
}

/* Padrão geométrico de fundo */
.brutalist-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 100px,
            rgba(255,255,255,0.02) 100px,
            rgba(255,255,255,0.02) 101px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(255,255,255,0.02) 100px,
            rgba(255,255,255,0.02) 101px
        );
    z-index: 1;
    pointer-events: none;
}

/* ========================================
   HERO COM VÍDEO DE FUNDO
   Mobile-First, Autoplay Fluido
======================================== */

/* ========================================
   HERO SECTION - VÍDEO DE FUNDO
   Mobile-First, Flexbox, Responsivo
======================================== */

/* === BASE MOBILE (320px+) === */
.brutalist-hero--video {
    background: var(--brutalist-charcoal);
    position: relative;
    overflow: hidden;
    width: 100%;
    
    /* Altura responsiva com fallbacks */
    min-height: 100vh;
    min-height: 100svh; /* Safe viewport - evita UI do browser */
    min-height: 100dvh; /* Dynamic viewport - melhor para mobile */
    min-height: -webkit-fill-available; /* iOS Safari */
    
    /* Flexbox para centralização perfeita */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    padding: 0;
    margin: 0;
}

.brutalist-hero--video::before,
.brutalist-hero--video::after {
    display: none;
}

/* Container do Vídeo - Proporção Mantida */
.hero-video-container {
    position: absolute;
    inset: 0;
    z-index: 1; /* Camada de fundo */
    overflow: hidden;
    
    /* Performance GPU */
    transform: translateZ(0);
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    
    /* Centralização para crop proporcional */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Vídeo - Proporção Responsiva */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    /* Proporcional em todos os dispositivos */
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    
    /* Mantém proporção 16:9 adaptativa */
    object-fit: cover;
    object-position: center center;
    
    z-index: 1; /* Mesmo nível do container */
    
    /* Fade in suave */
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    
    /* Performance mobile */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    pointer-events: none;
}

/* Mobile landscape: ajuste de aspect ratio */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-video {
        width: auto;
        height: 100%;
        min-width: 177.77vh; /* 16:9 = 100vh * 16/9 */
    }
}

/* Desktop portrait: prioriza largura */
@media (min-width: 1024px) and (orientation: portrait) {
    .hero-video {
        width: 100%;
        height: auto;
        min-height: 56.25vw; /* 16:9 = 100vw * 9/16 */
    }
}

/* Estado: Vídeo carregado */
.hero-video.loaded,
.hero-video.playing {
    opacity: 1;
}

/* Fallback - Poster Image */
.hero-poster-fallback {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0; /* Abaixo do vídeo */
    transition: opacity 0.5s ease-out 0.3s;
}

/* Esconde fallback quando vídeo está pronto */
.hero-video.loaded ~ .hero-poster-fallback {
    opacity: 0;
    pointer-events: none;
}

/* Container de background image alternativo */
.hero-background-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

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

/* === OVERLAY DE CONTRASTE === */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-color: rgba(0, 0, 0, var(--overlay-opacity, 0.4));
    pointer-events: none;
}

/* Overlay com Gradiente - Mobile (mais forte para legibilidade) */
/* === Overlay de Gradiente - Responsivo === */
.hero-overlay--gradient {
    position: absolute;
    inset: 0;
    z-index: 2; /* Acima do vídeo */
    pointer-events: none;
    
    /* Mobile: gradiente mais forte para legibilidade */
    background: 
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.45) 40%,
            rgba(0, 0, 0, 0.65) 80%,
            rgba(0, 0, 0, 0.75) 100%
        );
}

/* Tablet: gradiente intermediário */
@media (min-width: 768px) {
    .hero-overlay--gradient {
        background: 
            linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.25) 0%,
                rgba(0, 0, 0, 0.4) 50%,
                rgba(0, 0, 0, 0.6) 100%
            );
    }
}

/* Desktop: gradiente mais suave + accent */
@media (min-width: 1024px) {
    .hero-overlay--gradient {
        background: 
            linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.2) 0%,
                rgba(0, 0, 0, 0.35) 50%,
                rgba(0, 0, 0, 0.5) 100%
            ),
            radial-gradient(
                circle at top right,
                rgba(30, 136, 229, 0.08) 0%,
                transparent 60%
            );
    }
}

/* === Conteúdo do Hero - Flexbox Mobile-First === */
.brutalist-hero-content {
    position: relative;
    z-index: 100; /* Acima do overlay e vídeo, abaixo do header */
    
    /* Flexbox vertical */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    
    /* Dimensões */
    width: 100%;
    max-width: 1400px;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    min-height: -webkit-fill-available;
    
    /* Padding responsivo */
    padding: clamp(1rem, 3vw, 2rem);
    padding-top: clamp(80px, 12vh, 140px); /* Compensa header fixo */
    padding-bottom: clamp(1.5rem, 4vh, 3rem);
    
    /* Gap entre elementos */
    gap: clamp(1.5rem, 4vh, 3rem);
    
    margin: 0 auto;
    text-align: center;
}

/* Landscape mobile: ajuste de padding */
@media (max-height: 500px) and (orientation: landscape) {
    .brutalist-hero-content {
        padding-top: 70px;
        padding-bottom: 1rem;
        gap: 1rem;
        justify-content: center;
    }
}

/* === Texto Principal - Flex Item Central === */
.hero-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 3vw, 2rem);
    
    /* Ocupa espaço central disponível */
    flex: 1 1 auto;
    
    /* Centralização perfeita */
    margin: auto 0;
    
    /* Espaço extra no topo para evitar conflito com header */
    padding-top: clamp(2rem, 5vh, 4rem);
    
    width: 100%;
    max-width: 900px;
}

/* === Eyebrow Label === */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    
    font-family: var(--font-heading);
    font-size: clamp(0.625rem, 1.8vw, 0.875rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: clamp(0.12em, 0.4vw, 0.22em);
    
    color: rgba(255, 255, 255, 0.95);
    
    /* Glassmorphism */
    padding: clamp(0.5rem, 1.8vw, 0.75rem) clamp(1rem, 3.5vw, 2rem);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    
    /* Sombras */
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    
    /* Transição */
    transition: all 0.3s var(--ease-out-expo);
    
    /* Margem superior para afastar do header */
    margin-top: clamp(1rem, 3vh, 2rem);
}

/* Tablet+ */
@media (min-width: 768px) {
    .hero-eyebrow {
        font-size: clamp(0.75rem, 1.5vw, 1rem);
        padding: clamp(0.625rem, 2vw, 0.875rem) clamp(1.5rem, 4vw, 2.5rem);
    }
}

/* === Título Principal === */
.hero-title {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 0.82;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    
    color: var(--brutalist-white);
    
    /* Super responsivo */
    font-size: clamp(3rem, 11vw, 7rem);
    
    margin: 0;
    
    /* Legibilidade sobre vídeo */
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.5),
        0 8px 20px rgba(0, 0, 0, 0.35),
        0 16px 40px rgba(0, 0, 0, 0.25);
    
    /* Flexbox para linhas */
    display: flex;
    flex-direction: column;
    gap: clamp(0.2rem, 0.8vw, 0.5rem);
}

.hero-title-line {
    display: block;
}

.hero-subtext {
    margin-top: clamp(12px, 2vw, 16px);
    max-width: min(720px, 90vw);
    font-size: clamp(1rem, 2.6vw, 1.25rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

/* Tablet */
@media (min-width: 768px) {
    .hero-title {
        font-size: clamp(5rem, 13vw, 10rem);
        line-height: 0.85;
    }
    .hero-subtext {
        font-size: clamp(1.05rem, 2vw, 1.35rem);
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero-title {
        font-size: clamp(6.5rem, 14vw, 13rem);
        line-height: 0.88;
    }
}

/* Large Desktop */
@media (min-width: 1440px) {
    .hero-title {
        font-size: clamp(8rem, 12vw, 14rem);
        line-height: 0.9;
    }
}

/* === Texto de Doação === */
/* === Texto de Doação === */
.hero-donation-text {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(0.5rem, 1.8vw, 0.875rem);
    
    font-family: var(--font-body);
    font-size: clamp(0.8125rem, 2.2vw, 1rem);
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    
    color: rgba(255, 255, 255, 0.98);
    
    /* Glassmorphism */
    padding: clamp(0.875rem, 2.2vw, 1.25rem) clamp(1.5rem, 4vw, 2.5rem);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: clamp(10px, 2vw, 14px);
    
    /* Sombras */
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    
    /* Centralização */
    max-width: 90%;
    margin: 0 auto;
}

.hero-donation-text i {
    font-size: clamp(1.125rem, 2.8vw, 1.5rem);
    color: #FF6B6B;
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

.hero-donation-text span {
    display: inline-block;
    text-align: center;
}

/* Tablet+ */
@media (min-width: 768px) {
    .hero-donation-text {
        font-size: clamp(0.95rem, 2vw, 1.125rem);
        padding: clamp(1.125rem, 2.5vw, 1.5rem) clamp(2rem, 5vw, 3rem);
        max-width: 700px;
        flex-wrap: nowrap;
    }
    
    .hero-donation-text i {
        font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero-donation-text {
        font-size: clamp(1rem, 1.8vw, 1.25rem);
        max-width: 750px;
    }
}

/* === CONTEÚDO SOBRE O VÍDEO === */
.brutalist-hero--video .brutalist-hero-content {
    /* z-index já definido na classe base */
    position: relative;
    padding: clamp(1rem, 4vw, 2rem);
    /* Centralização perfeita horizontal e vertical */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    min-height: -webkit-fill-available;
    width: 100%;
    /* Sombra suave para destacar do vídeo */
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    /* Transição fluida para próxima seção */
    scroll-snap-align: start;
}

.brutalist-hero--video .brutalist-title {
    text-shadow: 
        0 4px 40px rgba(0, 0, 0, 0.5),
        0 2px 15px rgba(0, 0, 0, 0.4);
    /* Tamanho mobile */
    font-size: clamp(2.5rem, 15vw, 4rem);
}

.brutalist-hero--video .brutalist-subtitle {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
    font-size: clamp(0.875rem, 3vw, 1.25rem);
}

/* Títulos e elementos do hero (CSS duplicado removido acima) */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 18vw, 10rem);
    font-weight: 400;
    line-height: 0.85;
    color: var(--brutalist-white);
    text-transform: uppercase;
    margin: 0;
    text-shadow: 
        0 4px 40px rgba(0, 0, 0, 0.6),
        0 2px 15px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.75rem, 2.5vw, 1rem);
    font-weight: 500;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Hero Scroll Indicator */
/* === Scroll Indicator - Flex Item Bottom === */
.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(0.5rem, 2vw, 0.875rem);
    
    /* Posicionamento no flex container */
    flex-shrink: 0;
    margin-top: auto;
    
    color: rgba(255, 255, 255, 0.8);
    
    /* Animação float */
    animation: float 3s ease-in-out infinite;
}

/* Mouse scroll visual */
.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
    
    transition: border-color 0.3s ease;
}

.scroll-mouse:hover {
    border-color: rgba(255, 255, 255, 0.8);
}

/* Wheel dentro do mouse */
.scroll-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

.scroll-text {
    font-family: var(--font-body);
    font-size: clamp(0.65rem, 1.8vw, 0.8rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: clamp(0.08em, 0.3vw, 0.12em);
    opacity: 0.9;
}

/* CTA Doação Home */
.donate-pill-home {
    position: fixed;
    right: clamp(12px, 3vw, 22px);
    bottom: clamp(14px, 4vw, 26px);
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--brutalist-green), var(--brutalist-orange));
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.22);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.donate-pill-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.28);
}

.donate-pill-home i {
    font-size: 1rem;
}

/* Tablet+ */
@media (min-width: 768px) {
    .scroll-mouse {
        width: 26px;
        height: 44px;
    }
    
    .scroll-text {
        font-size: clamp(0.7rem, 1.5vw, 0.875rem);
    }
}

/* Landscape mobile: esconde para economizar espaço */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-scroll-indicator {
        display: none;
    }
}

/* Responsividade Hero Text */
@media (min-width: 768px) {
    /* CSS duplicado removido - definições do eyebrow estão acima */
    
    .hero-title {
        font-size: clamp(5rem, 12vw, 12rem);
        letter-spacing: -0.03em;
    }
    
    .hero-subtitle {
        font-size: clamp(0.875rem, 1.5vw, 1.125rem);
        margin-top: 2rem;
    }
    
    .hero-scroll-indicator {
        bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: clamp(7rem, 15vw, 14rem);
    }
    
    .brutalist-hero-content {
        padding: 0 1rem;
        max-width: 100%;
    }
}

/* === BOTÕES CTA - MOBILE FIRST === */
.hero-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    padding: 0 1rem;
}

.btn-hero-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.125rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-body);
    color: var(--brutalist-white);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 56px;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero-main i {
    font-size: 1.25rem;
}

.btn-hero-main:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--brutalist-charcoal);
    border-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
}

.btn-hero-main:active {
    transform: scale(0.98);
}

/* === TRANSIÇÃO COM IMAGENS GIRANDO === */
.hero-transition-carousel {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--brutalist-charcoal);
    margin-top: -1px;
}

.transition-images-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.transition-images-track {
    display: flex;
    width: fit-content;
    height: 100%;
    animation: scroll-images 20s linear infinite;
    will-change: transform;
}

.transition-image-item {
    flex-shrink: 0;
    width: 200px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.transition-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.transition-image-item:hover img {
    opacity: 1;
}

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

@media (max-width: 768px) {
    .hero-transition-carousel {
        height: 150px;
    }
    
    .transition-image-item {
        width: 150px;
    }
}

@media (min-width: 1024px) {
    .hero-transition-carousel {
        height: 250px;
    }
    
    .transition-image-item {
        width: 250px;
    }
}

/* === TABLET (768px+) === */
@media (min-width: 768px) {
    .brutalist-hero--video {
        padding: 0;
        min-height: 100vh;
    }
    
    .brutalist-hero--video .brutalist-hero-content {
        padding: 0 2rem;
    }
    
    .hero-cta-buttons {
        flex-direction: row;
        gap: 1.25rem;
        max-width: 600px;
    }
    
    .btn-hero-main {
        flex: 1;
        max-width: 180px;
        padding: 1.25rem 1.5rem;
        font-size: 1.125rem;
    }
    
    .btn-hero-main i {
        font-size: 1.375rem;
    }
    
    .hero-overlay--gradient {
        background: 
            linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.15) 0%,
                rgba(0, 0, 0, 0.35) 40%,
                rgba(0, 0, 0, 0.5) 100%
            ),
            linear-gradient(
                135deg,
                rgba(27, 67, 50, 0.2) 0%,
                transparent 50%,
                rgba(231, 111, 81, 0.1) 100%
            );
    }
}

/* === DESKTOP (1024px+) === */
@media (min-width: 1024px) {
    .brutalist-hero--video .brutalist-title {
        font-size: clamp(6rem, 15vw, 12rem);
    }
    
    .brutalist-hero--video .brutalist-subtitle {
        font-size: 1.5rem;
        letter-spacing: 0.15em;
    }
    
    .hero-cta-buttons .btn-brutalist {
        min-width: 220px;
        padding: 1.25rem 2.5rem;
    }
    
    .brutalist-hero--video .scroll-indicator {
        bottom: 2rem;
        font-size: 0.75rem;
    }
}

/* === LANDSCAPE MOBILE (altura reduzida) === */
@media (max-height: 500px) and (orientation: landscape) {
    .brutalist-hero--video {
        min-height: 100vh;
        padding: 1rem 2rem;
    }
    
    .brutalist-hero--video .brutalist-title {
        font-size: clamp(2rem, 10vh, 4rem);
    }
    
    .brutalist-hero--video .brutalist-subtitle {
        margin-top: 0.5rem;
        font-size: 0.875rem;
    }
    
    .hero-cta-buttons {
        flex-direction: row;
        margin-top: 1rem;
    }
    
    .hero-cta-buttons .btn-brutalist {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        min-height: 40px;
    }
    
    .brutalist-hero--video .scroll-indicator {
        display: none;
    }
}

/* === TELAS MUITO PEQUENAS (320px) === */
@media (max-width: 359px) {
    .brutalist-hero--video .brutalist-title {
        font-size: 2.25rem;
    }
    
    .brutalist-hero--video .brutalist-subtitle {
        font-size: 0.75rem;
    }
    
    .hero-cta-buttons .btn-brutalist {
        padding: 0.875rem 1rem;
        font-size: 0.8rem;
    }
}

/* === ACESSIBILIDADE === */

/* Reduced Motion - Imagem estática */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        display: none !important;
    }
    
    .hero-video-fallback {
        opacity: 1 !important;
    }
    
    .hero-video-container {
        will-change: auto;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .hero-overlay--gradient {
        background: rgba(0, 0, 0, 0.7);
    }
    
    .brutalist-hero--video .brutalist-title,
    .brutalist-hero--video .brutalist-subtitle {
        text-shadow: 
            0 0 5px rgba(0, 0, 0, 1),
            0 0 10px rgba(0, 0, 0, 1);
    }
}

/* === iOS ESPECÍFICO === */
@supports (-webkit-touch-callout: none) {
    .brutalist-hero--video {
        /* Fix para altura em iOS Safari */
        min-height: -webkit-fill-available;
    }
    
    .hero-video {
        /* Garante que vídeo cubra toda área no iOS */
        -webkit-transform: translate(-50%, -50%);
    }
}

/* Títulos e elementos do hero (CSS duplicado removido) */

/* Título Principal com Text Reveal */
.brutalist-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 15vw, 12rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: var(--brutalist-white);
    text-transform: uppercase;
    margin: 0;
    overflow: hidden;
}

.brutalist-title .line {
    display: block;
    overflow: hidden;
}

.brutalist-title .word {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.8s var(--ease-out-expo), opacity 0.8s var(--ease-out-expo);
}

.brutalist-title.revealed .word {
    transform: translateY(0);
    opacity: 1;
}

/* Stagger delay para palavras */
.brutalist-title .word:nth-child(1) { transition-delay: 0s; }
.brutalist-title .word:nth-child(2) { transition-delay: 0.1s; }
.brutalist-title .word:nth-child(3) { transition-delay: 0.2s; }
.brutalist-title .word:nth-child(4) { transition-delay: 0.3s; }
.brutalist-title .word:nth-child(5) { transition-delay: 0.4s; }

/* Subtítulo */
.brutalist-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 500;
    color: var(--brutalist-sand);
    opacity: 0.9;
    margin-top: 2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Indicador de Scroll */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--brutalist-sand);
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.7;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--brutalist-sand), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========================================
   MARQUEE INFINITO
======================================== */
.marquee-section {
    background: var(--brutalist-charcoal);
    padding: 1.5rem 0;
    overflow: hidden;
    border-top: var(--border-thick) solid var(--brutalist-orange);
    border-bottom: var(--border-thick) solid var(--brutalist-orange);
    position: relative;
    z-index: 10;
}

/* Marquee com fundo transparente (sobre o vídeo) */
.marquee-section.marquee-transparent {
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top-color: rgba(231, 111, 81, 0.5);
    border-bottom-color: rgba(231, 111, 81, 0.5);
}

/* Marquee em sequência (sem espaço entre eles) */
.marquee-section + .marquee-section {
    margin-top: -3px;
    border-top: none;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
    will-change: transform;
}

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

.marquee-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 0 1.5rem;
    flex-shrink: 0;
}

/* Garante que a animação seja suave e infinita */
.marquee-track .marquee-content:nth-child(2) {
    /* Segunda cópia para loop sem interrupção */
    opacity: 1;
}

.marquee-item {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: var(--brutalist-white);
    text-transform: uppercase;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 1rem;
    letter-spacing: 0.02em;
}

.marquee-item::after {
    content: '•';
    color: var(--brutalist-orange);
    font-size: 1.5rem;
}

.marquee-item.accent {
    color: var(--brutalist-orange);
}

.marquee-item.accent::after {
    color: var(--brutalist-white);
}

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

/* Marquee reverso */
.marquee-track.reverse {
    animation-direction: reverse;
}

/* ========================================
   SEÇÃO DE CATEGORIAS COM BLOCOS DE COR
======================================== */
.category-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
}

.category-block {
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s var(--ease-out-expo);
}

.category-block:hover {
    transform: scale(1.02);
    z-index: 10;
}

.category-block.gastronomia { background: var(--cat-gastronomia); }
.category-block.vida-noturna { background: var(--cat-vida-noturna); }
.category-block.lugares { background: var(--cat-lugares); }
.category-block.comercio { background: var(--cat-comercio); }
.category-block.hospedagem { background: var(--cat-hospedagem); }
.category-block.eventos { background: var(--cat-eventos); }
.category-block.servicos { background: var(--cat-servicos); }

.category-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
    z-index: 1;
}

.category-block-content {
    position: relative;
    z-index: 2;
    color: var(--brutalist-white);
}

.category-block-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.category-block-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
}

.category-block-count {
    font-family: var(--font-body);
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 0.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Imagem de fundo nas categorias */
.category-block-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    transition: opacity 0.4s ease, transform 0.6s var(--ease-out-expo);
}

.category-block:hover .category-block-image {
    opacity: 0.5;
    transform: scale(1.1);
}

/* ========================================
   SEÇÃO DESTAQUES COM SCROLL HORIZONTAL
======================================== */
.highlights-section {
    background: var(--brutalist-sand);
    padding: var(--section-padding) 0;
    position: relative;
}

.highlights-wrapper {
    display: flex;
    min-height: 100vh;
}

.highlights-sticky {
    width: 40%;
    min-width: 300px;
    max-width: 500px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: sticky;
    top: 0;
    height: 100vh;
    background: var(--brutalist-green);
    color: var(--brutalist-white);
}

.highlights-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    text-transform: uppercase;
    line-height: 1;
    margin: 0 0 1rem;
}

.highlights-description {
    font-family: var(--font-body);
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
    max-width: 400px;
}

.highlights-cards {
    flex: 1;
    display: flex;
    gap: 2rem;
    padding: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.highlights-cards::-webkit-scrollbar {
    display: none;
}

/* ========================================
   CARDS BRUTALISTAS (Seamless)
======================================== */
.brutalist-card {
    flex-shrink: 0;
    width: 350px;
    min-height: 450px;
    background: var(--brutalist-white);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
    cursor: pointer;
}

.brutalist-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1);
}

.brutalist-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

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

.brutalist-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.brutalist-card:hover .brutalist-card-overlay {
    opacity: 1;
}

.brutalist-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: var(--brutalist-orange);
    color: var(--brutalist-white);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 2px;
}

.brutalist-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.brutalist-card-category {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brutalist-orange);
}

.brutalist-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--brutalist-charcoal);
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
}

.brutalist-card-description {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--brutalist-gray);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.brutalist-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.brutalist-card-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--brutalist-gray);
}

.brutalist-card-location i {
    color: var(--brutalist-green);
}

.brutalist-card-action {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brutalist-charcoal);
    color: var(--brutalist-white);
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease;
}

.brutalist-card:hover .brutalist-card-action {
    background: var(--brutalist-orange);
    transform: scale(1.1);
}

/* ========================================
   TÍTULOS DE SEÇÃO BRUTALISTAS
======================================== */
.section-header {
    padding: var(--section-padding) 1rem 2rem;
    text-align: center;
}

.section-header.left {
    text-align: left;
    max-width: var(--container-max);
    margin: 0 auto;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--brutalist-orange);
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 6rem);
    text-transform: uppercase;
    color: var(--brutalist-charcoal);
    line-height: 0.95;
    margin: 0;
}

.section-title .highlight {
    color: var(--brutalist-orange);
}

.section-title .outline {
    -webkit-text-stroke: 2px var(--brutalist-charcoal);
    -webkit-text-fill-color: transparent;
}

/* ========================================
   ANIMAÇÕES DE ENTRADA (CSS-only fallback)
======================================== */
.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays para grupos */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ========================================
   HOVER PARALLAX EFFECT
======================================== */
.parallax-hover {
    position: relative;
    overflow: hidden;
}

.parallax-hover-image {
    transition: transform 0.4s var(--ease-out-expo);
}

.parallax-hover:hover .parallax-hover-image {
    transform: scale(1.05);
}

/* Overlay reveal on hover */
.hover-reveal-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out-expo);
}

.parallax-hover:hover .hover-reveal-overlay {
    transform: translateY(0);
}

/* ========================================
   CTA SECTION BRUTALISTA
======================================== */
.cta-section {
    background: var(--brutalist-orange);
    padding: var(--section-padding) 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: 'BICUIRAS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(15rem, 40vw, 50rem);
    color: rgba(0,0,0,0.05);
    white-space: nowrap;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    text-transform: uppercase;
    color: var(--brutalist-white);
    line-height: 1;
    margin: 0 0 1.5rem;
}

.cta-description {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

/* ========================================
   BOTÕES BRUTALISTAS
======================================== */
.btn-brutalist {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border: var(--border-thick) solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
}

.btn-brutalist-primary {
    background: var(--brutalist-charcoal);
    color: var(--brutalist-white);
    border-color: var(--brutalist-charcoal);
}

.btn-brutalist-primary:hover {
    background: var(--brutalist-white);
    color: var(--brutalist-charcoal);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-brutalist-outline {
    background: transparent;
    color: var(--brutalist-white);
    border-color: var(--brutalist-white);
}

.btn-brutalist-outline:hover {
    background: var(--brutalist-white);
    color: var(--brutalist-charcoal);
    transform: translateY(-3px);
}

.btn-brutalist-icon {
    transition: transform 0.3s ease;
}

.btn-brutalist:hover .btn-brutalist-icon {
    transform: translateX(5px);
}

/* ========================================
   FOOTER BRUTALISTA
======================================== */
.brutalist-footer {
    background: var(--brutalist-charcoal);
    color: var(--brutalist-white);
    padding: 4rem 1rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: var(--container-max);
    margin: 0 auto 3rem;
}

.footer-column-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--brutalist-orange);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-family: var(--font-body);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: var(--brutalist-orange);
    padding-left: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    max-width: var(--container-max);
    margin: 0 auto;
}

/* ========================================
   RESPONSIVIDADE MOBILE
======================================== */
@media (max-width: 768px) {
    .highlights-wrapper {
        flex-direction: column;
    }
    
    .highlights-sticky {
        width: 100%;
        max-width: 100%;
        height: auto;
        position: relative;
        min-height: 50vh;
    }
    
    .highlights-cards {
        padding: 1rem;
        gap: 1rem;
    }
    
    .brutalist-card {
        width: 85vw;
        min-height: 400px;
    }
    
    .category-blocks {
        grid-template-columns: 1fr;
    }
    
    .category-block {
        min-height: 300px;
    }
    
    /* Desabilitar animações pesadas no mobile */
    .marquee-track {
        animation-duration: 20s;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 3rem;
    }
    
    .brutalist-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
    
    .brutalist-card {
        width: 90vw;
    }
}

/* ========================================
   REDUCED MOTION PREFERENCE
======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .marquee-track {
        animation: none;
    }
}

/* ========================================
   LOADING STATE BRUTALIST
======================================== */
.brutalist-loader {
    position: fixed;
    inset: 0;
    background: var(--brutalist-charcoal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.brutalist-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.brutalist-loader-text {
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 5rem);
    color: var(--brutalist-white);
    text-transform: uppercase;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.brutalist-loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    margin-top: 2rem;
    overflow: hidden;
    position: relative;
}

.brutalist-loader-bar::after {
    content: '';
    position: absolute;
    left: -50%;
    width: 50%;
    height: 100%;
    background: var(--brutalist-orange);
    animation: loading 1s ease-in-out infinite;
}

@keyframes loading {
    0% { left: -50%; }
    100% { left: 100%; }
}

/* ========================================
   SEÇÃO DE PLANOS / PRICING
   Mobile-First Responsivo
======================================== */
.pricing-section {
    background: var(--brutalist-sand);
    padding: var(--section-padding) 1rem;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--brutalist-green) 0%, 
        var(--brutalist-orange) 50%, 
        var(--brutalist-green) 100%
    );
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 4rem);
    text-transform: uppercase;
    color: var(--brutalist-charcoal);
    margin: 0.5rem 0;
    line-height: 1;
}

.pricing-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 2vw, 1.25rem);
    color: var(--brutalist-gray);
    margin: 0;
    max-width: 600px;
    margin: 1rem auto 0;
}

/* Social Proof - Avatares de Assinantes */
.pricing-social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(45, 184, 199, 0.08), rgba(255, 111, 97, 0.08));
    border-radius: 16px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.social-proof-avatars {
    display: flex;
    align-items: center;
}

.social-proof-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    object-fit: cover;
    margin-left: -12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
}

.social-proof-avatar:first-child {
    margin-left: 0;
}

.social-proof-avatar:hover {
    transform: scale(1.1);
    z-index: 10;
}

.social-proof-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brutalist-green), var(--brutalist-orange));
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -12px;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.social-proof-text {
    font-size: 0.875rem;
    color: var(--brutalist-charcoal);
    margin: 0;
    text-align: center;
}

.social-proof-text strong {
    color: var(--brutalist-green);
}

@media (max-width: 480px) {
    .pricing-social-proof {
        padding: 0.875rem 1rem;
    }
    
    .social-proof-avatar {
        width: 36px;
        height: 36px;
        margin-left: -10px;
    }
    
    .social-proof-more {
        width: 36px;
        height: 36px;
        margin-left: -10px;
        font-size: 0.65rem;
    }
    
    .social-proof-text {
        font-size: 0.8rem;
    }
}

/* Cards Container - Mobile First */
.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

/* Card Individual */
.pricing-card {
    background: var(--brutalist-white);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    width: 100%;
    max-width: 380px;
    position: relative;
    border: 2px solid transparent;
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Variações de cor */
.pricing-card--green {
    border-color: var(--brutalist-green);
}

.pricing-card--green .pricing-card-name {
    color: var(--brutalist-green);
}

.pricing-card--orange {
    border-color: var(--brutalist-orange);
}

.pricing-card--orange .pricing-card-name {
    color: var(--brutalist-orange);
}

.pricing-card--charcoal {
    border-color: var(--brutalist-charcoal);
}

.pricing-card--charcoal .pricing-card-name {
    color: var(--brutalist-charcoal);
}

/* Card Popular */
.pricing-card--popular {
    border-width: 3px;
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(231, 111, 81, 0.2);
}

.pricing-card--popular:hover {
    transform: scale(1.02) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brutalist-orange);
    color: var(--brutalist-white);
    padding: 0.5rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 20px;
    white-space: nowrap;
}

/* Card Header */
.pricing-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-card-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
}

.pricing-card-description {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--brutalist-gray);
    margin: 0;
}

/* Preço */
.pricing-card-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-original {
    display: block;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--brutalist-gray);
    text-decoration: line-through;
    opacity: 0.7;
}

.pricing-current {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
    margin: 0.25rem 0;
}

.pricing-currency {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--brutalist-charcoal);
    margin-top: 0.5rem;
}

.pricing-value {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--brutalist-charcoal);
}

.pricing-type {
    display: block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--brutalist-gray);
}

/* Features List */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--brutalist-charcoal);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-feature i {
    color: var(--brutalist-green);
    font-size: 0.875rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.pricing-feature span strong {
    color: var(--brutalist-orange);
}

/* CTA Button */
.pricing-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: 2px solid var(--brutalist-charcoal);
    background: transparent;
    color: var(--brutalist-charcoal);
    border-radius: 8px;
    transition: all 0.3s var(--ease-out-expo);
    cursor: pointer;
}

.pricing-cta:hover {
    background: var(--brutalist-charcoal);
    color: var(--brutalist-white);
    transform: translateY(-2px);
}

.pricing-cta--primary {
    background: var(--brutalist-orange);
    border-color: var(--brutalist-orange);
    color: var(--brutalist-white);
    box-shadow: 0 4px 15px rgba(231, 111, 81, 0.3);
}

.pricing-cta--primary:hover {
    background: var(--brutalist-orange-dark);
    border-color: var(--brutalist-orange-dark);
    box-shadow: 0 6px 20px rgba(231, 111, 81, 0.4);
}

/* Garantia */
.pricing-guarantee {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--brutalist-white);
    border-radius: 12px;
    border-left: 4px solid var(--brutalist-green);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-guarantee-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brutalist-green);
    color: var(--brutalist-white);
    border-radius: 50%;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.pricing-guarantee-content h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--brutalist-charcoal);
    margin: 0 0 0.25rem;
    text-transform: uppercase;
}

.pricing-guarantee-content p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--brutalist-gray);
    margin: 0;
}

/* === TABLET (768px+) === */
@media (min-width: 768px) {
    .pricing-cards {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .pricing-card {
        width: calc(50% - 1rem);
        max-width: 350px;
    }
    
    .pricing-card--popular {
        order: -1;
        width: 100%;
        max-width: 380px;
    }
}

/* === DESKTOP (1024px+) === */
@media (min-width: 1024px) {
    .pricing-cards {
        flex-wrap: nowrap;
        align-items: stretch;
    }
    
    .pricing-card {
        width: 33.333%;
        max-width: none;
        flex: 1;
    }
    
    .pricing-card--popular {
        order: 0;
        transform: scale(1.05);
    }
    
    .pricing-card--popular:hover {
        transform: scale(1.05) translateY(-8px);
    }
}

/* Layout para 2 cards */
.pricing-cards--two {
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-cards--two .pricing-card {
        width: calc(50% - 1rem);
        max-width: 380px;
    }
    
    .pricing-cards--two .pricing-card--popular {
        order: 0;
        width: calc(50% - 1rem);
    }
}

/* Eyebrow text */
.pricing-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brutalist-green);
    background: rgba(46, 204, 113, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

/* Cents for price */
.pricing-cents {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--brutalist-charcoal);
    align-self: flex-start;
    margin-top: 0.75rem;
}

/* Savings badge */
.pricing-savings {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-savings span {
    display: inline-block;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* Feature variations */
.pricing-feature--has i {
    color: var(--brutalist-green);
}

.pricing-feature--not i {
    color: #dc3545;
    opacity: 0.5;
}

.pricing-feature--not span {
    color: var(--brutalist-gray);
    opacity: 0.6;
}

.pricing-feature--highlight {
    background: rgba(46, 204, 113, 0.08);
    margin: 0 -1rem;
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
    border-bottom: none !important;
}

.pricing-feature--highlight i {
    color: var(--brutalist-green);
    font-size: 1rem;
}

.pricing-feature--social {
    background: rgba(231, 111, 81, 0.08);
    margin: 0 -1rem;
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
    border-bottom: none !important;
}

.pricing-feature--social i {
    color: var(--brutalist-orange);
}

/* CTA current state */
.pricing-cta--current {
    background: var(--brutalist-cream);
    border-color: var(--brutalist-gray);
    color: var(--brutalist-gray);
    cursor: not-allowed;
    opacity: 0.7;
}

/* Guarantee text under CTA */
.pricing-card .pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0;
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--brutalist-gray);
}

.pricing-card .pricing-guarantee i {
    color: var(--brutalist-green);
}

/* Footer */
.pricing-footer {
    margin-top: 3rem;
    text-align: center;
}

.pricing-trust {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--brutalist-gray);
    background: rgba(231, 111, 81, 0.08);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    max-width: 600px;
}

.pricing-trust i {
    color: var(--brutalist-orange);
    font-size: 1.25rem;
}

/* ========================================
   BENEFITS SECTION - VANTAGENS PREMIUM
======================================== */
.pricing-benefits {
    margin-bottom: 4rem;
    text-align: center;
}

.benefits-header {
    margin-bottom: 3rem;
}

.benefits-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.5rem);
    text-transform: uppercase;
    color: var(--brutalist-charcoal);
    margin: 0.5rem 0;
    line-height: 1;
}

.benefits-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--brutalist-gray);
    margin: 1rem 0 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 600px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    background: var(--brutalist-white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brutalist-green) 0%, var(--brutalist-green-light) 100%);
    color: var(--brutalist-white);
    border-radius: 12px;
    font-size: 1.5rem;
}

.benefit-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--brutalist-charcoal);
    margin: 0 0 0.5rem;
    text-transform: uppercase;
}

.benefit-description {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--brutalist-gray);
    line-height: 1.5;
    margin: 0;
}

/* === PRICING CARDS THREE COLUMN === */
.pricing-cards--three {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

@media (min-width: 768px) {
    .pricing-cards--three {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-cards--three .pricing-card {
        width: 100%;
        max-width: none;
    }
}

/* === PRICING FEATURES COM ATIVO/INATIVO === */
.pricing-feature--active {
    color: var(--brutalist-charcoal);
}

.pricing-feature--active i {
    color: var(--brutalist-green);
}

.pricing-feature--inactive {
    color: var(--brutalist-gray);
    opacity: 0.5;
}

.pricing-feature--inactive i {
    color: #ccc;
}

.pricing-feature small {
    display: inline;
    font-size: 0.8em;
    color: var(--brutalist-orange);
    font-weight: 600;
}

/* === PRICING PERIOD === */
.pricing-period {
    font-size: 1rem;
    color: var(--brutalist-gray);
    font-weight: 400;
}

/* === PRICING CTA STYLES === */
.pricing-cta--secondary {
    background: transparent;
    color: var(--brutalist-charcoal);
    border: 2px solid var(--brutalist-charcoal);
}

.pricing-cta--secondary:hover {
    background: var(--brutalist-charcoal);
    color: var(--brutalist-white);
}

.pricing-cta--primary {
    background: var(--brutalist-orange);
    color: var(--brutalist-white);
    border: 2px solid var(--brutalist-orange);
}

.pricing-cta--primary:hover {
    background: var(--brutalist-charcoal);
    border-color: var(--brutalist-charcoal);
}

/* === PRICING BADGE COM CROWN === */
.pricing-badge i {
    margin-right: 0.5rem;
}

/* === PRICING FINAL CTA === */
.pricing-final-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: var(--brutalist-charcoal);
    border-radius: 16px;
    color: var(--brutalist-white);
}

.pricing-final-cta h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    text-transform: uppercase;
    margin: 0 0 0.5rem;
}

.pricing-final-cta p {
    font-family: var(--font-body);
    font-size: 1rem;
    opacity: 0.8;
    margin: 0 0 2rem;
}

.pricing-final-cta .btn-brutalist {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

/* ========================================
   SEÇÃO MANIFESTO - O GUIA BICUIRAS
   Tipografia Serif sofisticada
======================================== */
/* ========================================
   MANIFESTO SECTION - Design Editorial
======================================== */

.manifesto-section {
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Background suave com gradiente */
    background: linear-gradient(
        180deg,
        #FAFBFC 0%,
        #FFFFFF 50%,
        #F8F9FA 100%
    );
    
    /* Padding responsivo */
    padding: clamp(5rem, 12vw, 10rem) clamp(1.5rem, 5vw, 3rem);
    
    position: relative;
    min-height: auto;
    overflow: hidden;
}

/* Decoração de fundo - Elemento sutil */
.manifesto-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 40%;
    height: 60%;
    background: radial-gradient(
        circle at center,
        rgba(30, 136, 229, 0.03) 0%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

.manifesto-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 35%;
    height: 50%;
    background: radial-gradient(
        circle at center,
        rgba(45, 184, 199, 0.02) 0%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

/* Container principal */
.manifesto-container {
    max-width: 850px;
    width: 100%;
    position: relative;
    z-index: 1;
    text-align: center;
}

/* ========================================
   HEADER DO MANIFESTO
======================================== */

.manifesto-header {
    margin-bottom: clamp(4rem, 8vw, 6rem);
    position: relative;
}

.manifesto-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    
    /* Gradiente sutil no texto */
    background: linear-gradient(
        135deg,
        var(--brutalist-charcoal) 0%,
        #2C3E50 50%,
        var(--brutalist-orange) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    margin: 0 0 clamp(1.5rem, 3vw, 2.5rem) 0;
    
    /* Sombra sutil para profundidade */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

.manifesto-decorative-line {
    width: clamp(80px, 12vw, 120px);
    height: 4px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--brutalist-orange) 50%,
        transparent 100%
    );
    margin: 0 auto;
    border-radius: 2px;
}

/* ========================================
   CONTEÚDO - TIPOGRAFIA EDITORIAL
======================================== */

.manifesto-content {
    max-width: 750px;
    margin: 0 auto;
}

.manifesto-paragraph {
    font-family: 'Georgia', 'Cambria', 'Times New Roman', serif;
    font-size: clamp(1.0625rem, 2.2vw, 1.25rem);
    line-height: 1.9;
    color: #2C3E50;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    
    /* Suavização de fonte para leitura */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
    /* Espaçamento entre palavras */
    word-spacing: 0.05em;
}

/* Primeira letra destacada (Drop Cap) */
.manifesto-paragraph:first-of-type::first-letter {
    font-size: clamp(4rem, 8vw, 5.5rem);
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 0.8;
    float: left;
    margin: 0.1em 0.15em 0 0;
    color: var(--brutalist-orange);
    text-shadow: 2px 2px 0 rgba(30, 136, 229, 0.1);
}

/* Desktop: melhor legibilidade */
@media (min-width: 768px) {
    .manifesto-paragraph {
        font-size: clamp(1.125rem, 2vw, 1.3rem);
        line-height: 2;
        margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
    }
}

/* ========================================
   APROVEITE - DESTAQUE ESPECIAL
======================================== */

.manifesto-aproveite {
    font-family: var(--font-display) !important;
    font-size: clamp(2rem, 5vw, 3rem) !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    
    color: var(--brutalist-orange) !important;
    text-align: center !important;
    text-transform: none !important;
    font-style: italic;
    
    margin-top: clamp(3rem, 6vw, 5rem) !important;
    margin-bottom: clamp(2rem, 4vw, 3rem) !important;
    
    /* Sombra de texto */
    text-shadow: 0 2px 4px rgba(30, 136, 229, 0.15);
    
    /* Animação sutil */
    position: relative;
}

.manifesto-aproveite::before {
    content: '"';
    position: absolute;
    left: -0.3em;
    top: -0.2em;
    font-size: 1.5em;
    opacity: 0.3;
    color: var(--brutalist-orange);
}

.manifesto-aproveite::after {
    content: '"';
    position: absolute;
    right: -0.3em;
    bottom: -0.2em;
    font-size: 1.5em;
    opacity: 0.3;
    color: var(--brutalist-orange);
}

/* ========================================
   FRASE DE ENCERRAMENTO
======================================== */

.manifesto-closing {
    font-family: var(--font-heading) !important;
    font-size: clamp(1.125rem, 2.5vw, 1.5rem) !important;
    font-weight: 600 !important;
    line-height: 1.7 !important;
    
    color: var(--brutalist-charcoal) !important;
    text-align: center !important;
    
    margin-top: clamp(2rem, 4vw, 3rem) !important;
    margin-bottom: 0 !important;
    
    /* Box decorativo */
    padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
    background: rgba(30, 136, 229, 0.03);
    border-left: 4px solid var(--brutalist-orange);
    border-radius: 0 8px 8px 0;
}

.manifesto-closing-highlight {
    display: block;
    margin-top: 0.75rem;
    color: var(--brutalist-orange);
    font-weight: 700;
    font-style: italic;
}

/* Desktop: melhor apresentação */
@media (min-width: 768px) {
    .manifesto-closing {
        font-size: clamp(1.25rem, 2.2vw, 1.75rem) !important;
        padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 5vw, 3.5rem);
    }
    
    .manifesto-closing-highlight {
        margin-top: 1rem;
    }
}

/* ========================================
   RESPONSIVIDADE AVANÇADA
======================================== */

/* Mobile Portrait */
@media (max-width: 767px) {
    .manifesto-section {
        padding: clamp(4rem, 10vw, 6rem) clamp(1.25rem, 4vw, 2rem);
    }
    
    .manifesto-paragraph {
        text-align: left;
    }
    
    .manifesto-paragraph:first-of-type::first-letter {
        font-size: clamp(3rem, 10vw, 4rem);
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .manifesto-section {
        padding: clamp(6rem, 10vw, 8rem) clamp(2rem, 5vw, 3rem);
        min-height: 90vh;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .manifesto-section {
        min-height: 100vh;
        padding: clamp(8rem, 12vw, 12rem) clamp(2.5rem, 6vw, 4rem);
    }
}

/* Landscape Mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .manifesto-section {
        min-height: auto;
        padding: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 4vw, 2.5rem);
    }
    
    .manifesto-header {
        margin-bottom: clamp(2rem, 5vw, 3rem);
    }
}

/* ========================================
   ANIMAÇÕES DE SCROLL
======================================== */

.manifesto-paragraph {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1),
                transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.manifesto-paragraph.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   IMPRESSÃO (Print Styles)
======================================== */

@media print {
    .manifesto-section {
        background: white;
        padding: 2rem 1rem;
    }
    
    .manifesto-section::before,
    .manifesto-section::after {
        display: none;
    }
    
    .manifesto-title {
        -webkit-text-fill-color: initial;
        color: var(--brutalist-charcoal);
    }
    
    .manifesto-paragraph {
        font-size: 11pt;
        line-height: 1.8;
        margin-bottom: 1rem;
    }
}

@media (min-width: 768px) {
    .manifesto-paragraph {
        font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    }
}

.manifesto-paragraph.active,
.manifesto-paragraph.revealed {
    opacity: 1;
    color: var(--brutalist-charcoal);
}

/* ========================================
   CATEGORY SHOWCASE SECTION
======================================== */
.category-showcase {
    padding: var(--section-padding) 1rem;
    background: var(--brutalist-cream);
}

.showcase-header {
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: var(--brutalist-gray);
    margin: 0;
    line-height: 1.6;
}

.donation-info a {
    color: var(--brutalist-orange);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
}

.donation-info a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brutalist-orange);
    transition: width 0.3s var(--ease-out-expo);
}

.donation-info a:hover::after {
    width: 100%;
}

@media (min-width: 768px) {
    .manifesto-donation {
        margin-top: clamp(4rem, 8vw, 6rem);
        padding-top: clamp(3rem, 6vw, 5rem);
        gap: 2.5rem;
    }
}

.manifesto-signature {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 1.125rem;
    color: var(--brutalist-orange);
    margin-top: 3rem;
}

.manifesto-scroll-hint {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--brutalist-gray);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.manifesto-scroll-hint i {
    animation: bounce 2s ease-in-out infinite;
}

/* ========================================
   CAUSA ANIMAL SECTION
   Mobile-First, Transição Suave
======================================== */
.cause-section {
    background: var(--brutalist-white);
    padding: var(--section-padding) 1.5rem;
    position: relative;
    border-top: 2px solid var(--brutalist-gray);
}

.cause-container {
    max-width: 900px;
    margin: 0 auto;
}

.cause-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cause-eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--brutalist-orange);
    margin-bottom: 1rem;
}

.cause-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 10vw, 5rem);
    font-weight: 400;
    line-height: 0.95;
    color: var(--brutalist-charcoal);
    text-transform: uppercase;
    margin: 0;
}

.cause-content {
    max-width: 700px;
    margin: 0 auto;
}

.cause-paragraph {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.8;
    color: var(--brutalist-gray);
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cause-paragraph strong {
    color: var(--brutalist-charcoal);
    font-weight: 700;
}

.cause-link {
    color: var(--brutalist-orange);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cause-link:hover {
    color: var(--brutalist-orange-dark);
}

.cause-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.cause-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--brutalist-white);
    background: var(--brutalist-orange);
    border: 2px solid var(--brutalist-orange);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
    box-shadow: 0 4px 15px rgba(231, 111, 81, 0.3);
}

.cause-button:hover {
    background: var(--brutalist-orange-dark);
    border-color: var(--brutalist-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 111, 81, 0.4);
}

.cause-button i {
    font-size: 1.25rem;
}

/* Responsividade - Mobile First */
@media (min-width: 768px) {
    .cause-section {
        padding: calc(var(--section-padding) * 1.2) 2rem;
    }
    
    .cause-paragraph {
        font-size: clamp(1.125rem, 2vw, 1.375rem);
    }
    
    .cause-button {
        font-size: 1.125rem;
        padding: 1.5rem 3rem;
    }
}

@media (min-width: 1024px) {
    .cause-section {
        padding: calc(var(--section-padding) * 1.5) 3rem;
    }
}

/* ========================================
   CATEGORY SHOWCASE - GRID INTERATIVO
======================================== */
.category-showcase {
    padding: var(--section-padding) 1rem;
    background: var(--brutalist-cream);
}

.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.showcase-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 6rem);
    text-transform: uppercase;
    line-height: 1;
    margin: 1rem 0 0;
    color: var(--brutalist-charcoal);
}

.showcase-title .outline {
    -webkit-text-stroke: 2px var(--brutalist-charcoal);
    -webkit-text-fill-color: transparent;
}

.showcase-title .highlight {
    color: var(--brutalist-orange);
}

/* Grid de Cards - Mobile First */
.showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 480px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .showcase-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

/* Card Individual - Mobile First */
.showcase-card {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .showcase-card {
        aspect-ratio: 3 / 4;
    }
}

.showcase-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.showcase-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo), filter 0.4s ease;
}

/* Fallback quando imagem não carrega */
.showcase-card-bg img[src=""],
.showcase-card-bg img:not([src]) {
    display: none;
}

.showcase-card-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--card-color) 0%, rgba(26, 26, 26, 0.8) 100%);
    z-index: -1;
}

/* Color Overlay */
.showcase-card-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.85;
    mix-blend-mode: multiply;
    transition: opacity 0.4s ease;
    z-index: 1;
}

/* Overlay escuro adicional para garantir contraste do texto branco */
.showcase-card-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.45) 40%, rgba(0, 0, 0, 0.2) 70%, transparent 100%);
    z-index: -1;
    pointer-events: none;
}

.showcase-card:hover .showcase-card-overlay {
    opacity: 0;
}

.showcase-card:hover .showcase-card-bg img {
    transform: scale(1.08);
}

/* Conteúdo Principal */
.showcase-card-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--brutalist-white);
    transition: opacity 0.3s ease;
}

.showcase-card:hover .showcase-card-content {
    opacity: 0;
}

.showcase-card-icon {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: 1.125rem;
    opacity: 0.95;
    color: var(--brutalist-white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.showcase-card-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.65rem, 1.5vw, 0.75rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.95;
    margin-bottom: 0.625rem;
    color: var(--brutalist-white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.showcase-card-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 5vw, 2.75rem);
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 0 0.875rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--brutalist-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.5);
}

.showcase-card-description {
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.98;
    color: var(--brutalist-white);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    max-width: 90%;
}

/* Responsividade e legibilidade melhorada para mobile */
@media (max-width: 480px) {
    .showcase-card-content {
        padding: 1.5rem 1.25rem;
    }
    
    .showcase-card-title {
        margin-bottom: 0.625rem;
    }
    
    .showcase-card-description {
        max-width: 95%;
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    .showcase-card-icon {
        margin-bottom: 0.875rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .showcase-card-content {
        padding: 1.75rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .showcase-card-content {
        padding: 2.5rem;
    }
    
    .showcase-card-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .showcase-card-description {
        font-size: 1rem;
        line-height: 1.65;
    }
}

/* Número do Card */
.showcase-card-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--brutalist-white);
    opacity: 0.5;
    z-index: 2;
}

/* Conteúdo Revelado no Hover */
.showcase-card-reveal {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.showcase-card:hover .showcase-card-reveal {
    opacity: 1;
}

.showcase-featured {
    color: var(--brutalist-white);
}

.showcase-featured-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.25rem 0.75rem;
    background: var(--card-color);
    border-radius: 2px;
    margin-bottom: 0.75rem;
}

.showcase-featured-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
}

.showcase-featured-tagline {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0 0 0.5rem;
    color: var(--card-color);
}

.showcase-featured-description {
    font-family: var(--font-body);
    font-size: 0.8rem;
    line-height: 1.5;
    opacity: 0.8;
    margin: 0 0 1rem;
}

.showcase-featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brutalist-white);
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid currentColor;
    transition: color 0.3s ease;
}

.showcase-featured-cta:hover {
    color: var(--card-color);
}

/* ========================================
   PARTNER SPOTLIGHT - LAYOUT STICKY
======================================== */
.partner-spotlight {
    background: var(--brutalist-sand);
    padding: var(--section-padding) 0;
}

.spotlight-header {
    text-align: center;
    padding: 0 1.5rem 4rem;
}

.spotlight-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 4rem);
    text-transform: uppercase;
    color: var(--brutalist-charcoal);
    margin: 1rem 0 0;
}

.spotlight-title .highlight {
    color: var(--brutalist-orange);
}

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

/* Item Individual - Mobile First */
.spotlight-item {
    display: flex;
    flex-direction: column;
    min-height: auto;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
    .spotlight-item {
        flex-direction: row;
        min-height: 80vh;
    }
}

/* Imagem Wrapper - Mobile First */
.spotlight-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .spotlight-image-wrapper {
        height: 350px;
    }
}

@media (min-width: 1024px) {
    .spotlight-image-wrapper {
        width: 50%;
        height: auto;
        min-height: 400px;
    }
}

.spotlight-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s var(--ease-out-expo);
}

.spotlight-item:hover .spotlight-image {
    transform: scale(1.05);
}

.spotlight-image-overlay {
    position: absolute;
    inset: 0;
    background: var(--partner-color);
    opacity: 0.3;
    mix-blend-mode: multiply;
    transition: opacity 0.4s ease;
}

.spotlight-item:hover .spotlight-image-overlay {
    opacity: 0;
}

/* Conteúdo */
.spotlight-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 3rem 2rem;
    background: var(--brutalist-white);
}

@media (min-width: 1024px) {
    .spotlight-content {
        width: 50%;
        padding: 4rem 5rem;
    }
}

.spotlight-content-inner {
    max-width: 500px;
}

.spotlight-category {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--partner-color);
    margin-bottom: 1rem;
}

.spotlight-name {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    color: var(--brutalist-charcoal);
    margin: 0 0 0.5rem;
    line-height: 1;
}

.spotlight-tagline {
    font-family: 'Georgia', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--brutalist-gray);
    margin: 0 0 1.5rem;
}

.spotlight-description {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--brutalist-gray);
    margin: 0 0 2rem;
}

.spotlight-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.spotlight-highlight {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--partner-color);
    color: var(--partner-color);
    border-radius: 2px;
}

.spotlight-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 2rem;
    background: var(--brutalist-charcoal);
    color: var(--brutalist-white);
    text-decoration: none;
    border: 2px solid var(--brutalist-charcoal);
    transition: all 0.3s var(--ease-out-expo);
}

.spotlight-cta:hover {
    background: transparent;
    color: var(--brutalist-charcoal);
}

/* ========================================
   TRANSIÇÃO PARA PLANOS
======================================== */
.plans-transition {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brutalist-charcoal);
    overflow: hidden;
    padding: var(--section-padding) 1.5rem;
}

.plans-transition-bg {
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(255, 255, 255, 0.02) 50px,
            rgba(255, 255, 255, 0.02) 51px
        );
}

.plans-transition-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.plans-transition-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 10vw, 6rem);
    text-transform: uppercase;
    line-height: 1;
    margin: 0 0 2rem;
    color: var(--brutalist-white);
}

.plans-transition-title .line {
    display: block;
}

.plans-transition-title .highlight {
    color: var(--brutalist-orange);
}

.plans-transition-description {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 3rem;
    line-height: 1.7;
}

.plans-transition-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--brutalist-orange);
    line-height: 1;
}

.stat-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.plans-transition-arrow {
    animation: bounce 2s ease-in-out infinite;
}

.plans-transition-arrow a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 2px solid var(--brutalist-orange);
    border-radius: 50%;
    color: var(--brutalist-orange);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.plans-transition-arrow a:hover {
    background: var(--brutalist-orange);
    color: var(--brutalist-white);
}

/* ========================================
   CORREÇÕES SEÇÃO DESTAQUES - RESPONSIVO
======================================== */

/* Mobile First */
.highlights-section {
    background: var(--brutalist-sand);
    padding: 0;
    position: relative;
    min-height: auto;
}

.highlights-wrapper {
    display: flex;
    flex-direction: column;
    min-height: auto;
}

/* Sticky Section - Mobile */
.highlights-sticky {
    width: 100%;
    max-width: 100%;
    min-width: auto;
    padding: 3rem 1.5rem;
    position: relative;
    top: auto;
    height: auto;
    min-height: auto;
    background: var(--brutalist-green);
    color: var(--brutalist-white);
}

.highlights-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 3.5rem);
    text-transform: uppercase;
    line-height: 1;
    margin: 0 0 1rem;
}

.highlights-description {
    font-family: var(--font-body);
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 100%;
    margin-bottom: 1.5rem;
}

/* Cards - Mobile Horizontal Scroll */
.highlights-cards {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.highlights-cards::-webkit-scrollbar {
    display: none;
}

/* Cards individuais - Mobile */
.highlights-cards .brutalist-card {
    flex-shrink: 0;
    width: 280px;
    min-width: 280px;
    min-height: 380px;
    scroll-snap-align: start;
}

/* === TABLET (768px+) === */
@media (min-width: 768px) {
    .highlights-sticky {
        padding: 4rem 2rem;
    }
    
    .highlights-cards {
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .highlights-cards .brutalist-card {
        width: 320px;
        min-width: 320px;
        min-height: 420px;
    }
}

/* === DESKTOP (1024px+) === */
@media (min-width: 1024px) {
    .highlights-section {
        min-height: 100vh;
    }
    
    .highlights-wrapper {
        flex-direction: row;
        min-height: 100vh;
    }
    
    .highlights-sticky {
        width: 40%;
        min-width: 350px;
        max-width: 450px;
        padding: 3rem;
        position: sticky;
        top: 0;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .highlights-cards {
        flex: 1;
        padding: 3rem 2rem;
        gap: 2rem;
    }
    
    .highlights-cards .brutalist-card {
        width: 350px;
        min-width: 350px;
        min-height: 450px;
    }
}

/* ========================================
   SEÇÃO LOJA + DOAÇÕES
======================================== */
.shop-donations-section {
    padding: var(--section-padding) 1rem;
    background: var(--brutalist-cream);
}

.shop-donations-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .shop-donations-container {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 3rem;
    }
}

/* Bloco Loja */
.shop-block {
    background: var(--brutalist-white);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.shop-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    text-transform: uppercase;
    color: var(--brutalist-charcoal);
    margin: 0.5rem 0 1rem;
}

.shop-description {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--brutalist-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.shop-products-preview {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.product-mini {
    flex-shrink: 0;
    text-align: center;
    width: 100px;
}

.product-mini-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    color: var(--brutalist-white);
    font-size: 1.5rem;
}

.product-mini-name {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brutalist-charcoal);
    margin-bottom: 0.25rem;
}

.product-mini-price {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--brutalist-orange);
    font-weight: 700;
}

.shop-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--brutalist-charcoal);
    color: var(--brutalist-white);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s var(--ease-out-expo);
}

.shop-cta:hover {
    background: var(--brutalist-orange);
    transform: translateY(-2px);
}

/* Bloco Doações */
.donation-block {
    background: linear-gradient(135deg, var(--brutalist-green) 0%, var(--brutalist-green-light) 100%);
    border-radius: 16px;
    padding: 2.5rem;
    color: var(--brutalist-white);
    text-align: center;
}

.donation-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
}

.donation-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    text-transform: uppercase;
    margin: 0 0 1rem;
}

.donation-description {
    font-family: var(--font-body);
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.donation-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.donation-amount {
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--brutalist-white);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.donation-amount:hover,
.donation-amount.popular {
    background: var(--brutalist-orange);
    border-color: var(--brutalist-orange);
}

.donation-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--brutalist-white);
    color: var(--brutalist-green);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s var(--ease-out-expo);
}

.donation-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.donation-note {
    margin-top: 1rem;
    font-size: 0.75rem;
    opacity: 0.7;
}

.donation-note i {
    margin-right: 0.5rem;
}

/* ========================================
   PAYWALL / CONTEÚDO BLOQUEADO
======================================== */
.paywall-overlay {
    position: relative;
    background: linear-gradient(to bottom, transparent 0%, var(--brutalist-sand) 20%);
    padding: 6rem 1.5rem 4rem;
    text-align: center;
    margin-top: -6rem;
}

.paywall-overlay.with-blur::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(254, 250, 224, 0) 0%, var(--brutalist-sand) 100%);
    pointer-events: none;
}

.paywall-content {
    max-width: 500px;
    margin: 0 auto;
    background: var(--brutalist-white);
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.paywall-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brutalist-orange) 0%, var(--brutalist-orange-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--brutalist-white);
    font-size: 2rem;
}

.paywall-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    text-transform: uppercase;
    color: var(--brutalist-charcoal);
    margin: 0 0 0.5rem;
}

.paywall-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--brutalist-gray);
    margin: 0 0 2rem;
}

.paywall-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}

.paywall-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--brutalist-charcoal);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.paywall-benefits li:last-child {
    border-bottom: none;
}

.paywall-benefits li i {
    color: var(--brutalist-green);
    font-size: 1rem;
    margin-top: 0.1rem;
}

.paywall-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--brutalist-orange);
    color: var(--brutalist-white);
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(231, 111, 81, 0.4);
    transition: all 0.3s var(--ease-out-expo);
}

.paywall-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(231, 111, 81, 0.5);
}

.paywall-guarantee {
    margin-top: 1rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--brutalist-gray);
}

.paywall-guarantee i {
    color: var(--brutalist-green);
    margin-right: 0.5rem;
}

/* ========================================
   CONTEÚDO BLOQUEADO PREVIEW
======================================== */
.locked-content-section {
    padding: var(--section-padding) 1rem;
    background: var(--brutalist-sand);
    position: relative;
}

.locked-content-header {
    text-align: center;
    margin-bottom: 3rem;
}

.locked-content-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 4rem);
    text-transform: uppercase;
    color: var(--brutalist-charcoal);
    margin: 1rem 0 0;
}

.locked-content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

@media (min-width: 768px) {
    .locked-content-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.locked-item {
    background: var(--brutalist-white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.locked-item-image {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--brutalist-gray) 0%, var(--brutalist-charcoal) 100%);
}

.locked-item-blur {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.locked-item-lock {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brutalist-white);
    font-size: 1.5rem;
    opacity: 0.8;
}

.locked-item-info {
    padding: 1rem;
    text-align: center;
}

.locked-item-category {
    display: block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brutalist-orange);
    margin-bottom: 0.25rem;
}

.locked-item-name {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--brutalist-charcoal);
    margin: 0;
}

.locked-content-cta {
    text-align: center;
}

.locked-content-note {
    margin-top: 1rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--brutalist-gray);
}

/* ========================================
   FLOATING CTA (STICKY BANNER)
======================================== */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--brutalist-charcoal);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out-expo);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.floating-cta.visible {
    transform: translateY(0);
}

.floating-cta-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.floating-cta-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--brutalist-white);
    margin: 0;
}

.floating-cta-price {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--brutalist-orange);
    background: rgba(231, 111, 81, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.floating-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--brutalist-orange);
    color: var(--brutalist-white);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.floating-cta-button:hover {
    background: var(--brutalist-white);
    color: var(--brutalist-orange);
}

/* Mobile: Banner mais compacto */
@media (max-width: 480px) {
    .floating-cta {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .floating-cta-content {
        justify-content: center;
    }
    
    .floating-cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   RESPONSIVIDADE PRICING CTA BUTTONS
======================================== */

/* CTA Button - Melhorias de responsividade */
@media (max-width: 768px) {
    .pricing-cta {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
        letter-spacing: 0.025em;
    }
    
    .pricing-cta i {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .pricing-cta {
        padding: 0.75rem 0.875rem;
        font-size: 0.8125rem;
        gap: 0.375rem;
        white-space: normal;
        line-height: 1.3;
        text-align: center;
    }
    
    .pricing-cta i {
        font-size: 0.75rem;
    }
    
    /* Pricing card ajustes mobile */
    .pricing-card {
        padding: 1.25rem;
    }
    
    .pricing-card-price {
        margin: 1rem 0;
    }
    
    .pricing-value {
        font-size: 2.5rem;
    }
    
    .pricing-cents {
        font-size: 1.25rem;
    }
    
    .pricing-type {
        font-size: 0.75rem;
    }
    
    .pricing-savings {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
}

@media (max-width: 360px) {
    .pricing-cta {
        padding: 0.625rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .pricing-value {
        font-size: 2rem;
    }
    
    .pricing-feature {
        font-size: 0.8rem;
    }
}

