/* === VARIÁVEIS - TEMA PREMIUM GRAFITE E DOURADO === */
:root {
    --gold-primary: #D4AF37;
    --gold-secondary: #FFD700;
    --gold-light: #F4E4A6;
    --graphite-dark: #1A1A1A;
    --graphite-medium: #2D2D2D;
    --graphite-light: #3D3D3D;
    --text-light: #E5E5E5;
    --text-muted: #A0A0A0;
    --bg-dark: #0F0F0F;
    --bg-medium: #1A1A1A;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --border-radius: 12px;
}

/* === RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--bg-dark);
    overflow-x: hidden;
    /* WordPress reset — ensures WP theme doesn't override layout */
    margin: 0 !important;
    padding: 0 !important;
}

/* WordPress block wrapper reset */
.wp-site-blocks {
    padding: 0 !important;
}
:root {
    --wp--style--root--padding-right: 0px !important;
    --wp--style--root--padding-left: 0px !important;
}
img {
    max-width: 100%;
    height: auto;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === TIPOGRAFIA === */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gold-primary);
}
h1 {
    font-size: clamp(2.8rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}
h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}
h3 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 0.8rem;
}
p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
    border-radius: 2px;
}

/* === BOTÕES === */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: var(--graphite-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--gold-secondary), var(--gold-primary));
}
.btn-outline {
    background: transparent;
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}
.btn-outline:hover {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: var(--graphite-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* === NAVEGAÇÃO === */
.navbar {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-brand h3 {
    color: var(--gold-primary);
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}
.nav-menu {
    display: flex;
    gap: 1.5rem;
}
.nav-menu a {
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 30px;
    transition: var(--transition);
    color: var(--text-light);
}
.nav-menu a:hover,
.nav-menu a:focus {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: var(--graphite-dark);
    transform: translateY(-2px);
    outline: 2px solid var(--gold-primary);
    outline-offset: 2px;
}

/* === HERO === */
.hero {
    background: linear-gradient(rgba(15, 15, 15, 0.9), rgba(15, 15, 15, 0.95)),
        url('https://images.unsplash.com/photo-1511379938547-c1f69419868d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    /* padding definido pelo sistema .wp-site-blocks section.hero abaixo —
       esta regra serve apenas de fallback fora do WordPress */
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* === HERO PHOTO === */
.hero-photo-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out;
}
.hero-photo-frame {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary), var(--gold-primary));
    box-shadow: 
        0 0 30px rgba(212, 175, 55, 0.4),
        0 0 60px rgba(212, 175, 55, 0.2),
        0 10px 40px rgba(0, 0, 0, 0.5);
    animation: photoGlow 3s ease-in-out infinite alternate;
}
.hero-photo-frame::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-secondary), transparent, var(--gold-primary));
    opacity: 0.5;
    z-index: -1;
    animation: rotate 10s linear infinite;
}
.hero-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--graphite-dark);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
}
.hero-photo-frame:hover .hero-photo {
    transform: scale(1.05);
}
.hero-photo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220px;
    height: 220px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes photoGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(212, 175, 55, 0.4),
            0 0 60px rgba(212, 175, 55, 0.2),
            0 10px 40px rgba(0, 0, 0, 0.5);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(212, 175, 55, 0.6),
            0 0 80px rgba(212, 175, 55, 0.3),
            0 15px 50px rgba(0, 0, 0, 0.6);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-badge {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(255, 215, 0, 0.1));
    padding: 12px 28px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-light);
    font-weight: 500;
}
.hero-title {
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.hero-desc {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* === SEÇÕES === */
section {
    padding: 120px 0;
}
.about {
    background: var(--bg-medium);
    position: relative;
}
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
}
.about-text {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 4rem;
    color: var(--text-light);
}

/* === GRID === */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}
.card {
    background: linear-gradient(145deg, var(--graphite-medium), var(--graphite-dark));
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
    transform: scaleX(0);
    transition: var(--transition);
}
.card:hover::before,
.card:focus-within::before {
    transform: scaleX(1);
}
.card:hover,
.card:focus-within {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.3);
}

/* === CARROSSEL DE ALUNOS === */
.alunos-carrossel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-primary) var(--graphite-medium);
    scroll-snap-type: x mandatory;
}
.alunos-carrossel::-webkit-scrollbar {
    height: 8px;
}
.alunos-carrossel::-webkit-scrollbar-track {
    background: var(--graphite-medium);
    border-radius: 10px;
}
.alunos-carrossel::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 10px;
}
.aluno-card {
    flex: 0 0 auto;
    width: 300px;
    background: linear-gradient(145deg, var(--graphite-medium), var(--graphite-dark));
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    scroll-snap-align: start;
}
.aluno-card:hover,
.aluno-card:focus-within {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}
.aluno-video-thumbnail {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    height: 200px;
}
.aluno-video-thumbnail:focus {
    outline: 3px solid var(--gold-primary);
    outline-offset: 3px;
}
.aluno-imagem {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.aluno-card:hover .aluno-imagem {
    transform: scale(1.05);
}
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.aluno-video-thumbnail:hover .play-overlay,
.aluno-video-thumbnail:focus .play-overlay {
    opacity: 1;
}
.play-overlay i {
    font-size: 3rem;
    color: var(--gold-primary);
}
.aluno-info {
    padding: 1.5rem;
}
.aluno-info h3 {
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}
.aluno-desc {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
.aluno-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.1);
}
.aluno-social:hover,
.aluno-social:focus {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
    outline: 2px solid var(--gold-primary);
    outline-offset: 2px;
}

/* === CONTROLES DO CARROSSEL === */
.carrossel-controles {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}
.carrossel-btn {
    background: var(--graphite-medium);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}
.carrossel-btn:hover,
.carrossel-btn:focus {
    background: var(--gold-primary);
    color: var(--graphite-dark);
    transform: scale(1.1);
    outline: 2px solid var(--gold-primary);
    outline-offset: 3px;
}
.carrossel-dots {
    display: flex;
    gap: 10px;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--graphite-light);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}
.dot:hover,
.dot:focus {
    background: var(--gold-secondary);
    transform: scale(1.15);
    outline: 2px solid var(--gold-primary);
    outline-offset: 2px;
}
.dot.active {
    background: var(--gold-primary);
    transform: scale(1.2);
}

/* === MODAL DE VÍDEO === */
.video-modal-aluno {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    justify-content: center;
    align-items: center;
}
.video-modal-aluno.active {
    display: flex;
}
.video-modal-aluno .modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: var(--graphite-medium);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 2px solid var(--gold-primary);
}
.video-modal-aluno .close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 10;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: var(--transition);
}
.video-modal-aluno .close-modal:hover,
.video-modal-aluno .close-modal:focus {
    color: var(--gold-primary);
    background: rgba(0,0,0,0.8);
    outline: 2px solid var(--gold-primary);
}
.video-modal-aluno .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}
.video-modal-aluno .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* === PACOTES === */
.package-card {
    background: linear-gradient(145deg, var(--graphite-medium), var(--graphite-dark));
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.package-popular {
    border: 2px solid var(--gold-primary);
    transform: scale(1.05);
}
.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: var(--graphite-dark);
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.package-card:hover,
.package-card:focus-within {
    transform: translateY(-10px);
}
.package-popular:hover,
.package-popular:focus-within {
    transform: translateY(-10px) scale(1.05);
}
.package-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin: 1.5rem 0;
    font-family: var(--font-main);
}
.package-features {
    margin: 2rem 0;
    flex-grow: 1;
    text-align: left;
}
.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}
.package-features li:last-child {
    border-bottom: none;
}

/* === CONTATO === */
.contact {
    background: linear-gradient(135deg, var(--graphite-dark) 0%, var(--bg-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}
.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}
.contact-grid {
    position: relative;
    z-index: 2;
}
.contact-item {
    text-align: center;
    padding: 2rem;
    background: rgba(45, 45, 45, 0.5);
    border-radius: var(--border-radius);
    border: 1px solid rgba(212, 175, 55, 0.1);
}
.contact-item h3 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
}
.contact-item p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* === WHATSAPP FLOAT BUTTON === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    transition: var(--transition);
    z-index: 1000;
    border: 3px solid white;
}
.whatsapp-float:hover,
.whatsapp-float:focus {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.7);
    outline: 3px solid #25D366;
    outline-offset: 3px;
}

/* === FOOTER === */
.footer {
    background: var(--graphite-dark);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}
.footer p {
    color: var(--text-muted);
    margin-bottom: 0;
}
.copyright {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* === ANIMAÇÕES === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.animate {
    animation: fadeInUp 0.8s ease-out;
}

/* === RESPONSIVO === */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1.5rem;
    }
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero {
        padding: 140px 0 80px;
    }
    .hero-photo-frame {
        width: 160px;
        height: 160px;
    }
    .hero-photo-glow {
        width: 180px;
        height: 180px;
    }
    .grid {
        grid-template-columns: 1fr;
    }
    .package-popular {
        transform: none;
    }
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
    section {
        padding: 80px 0;
    }
    .aluno-card {
        width: 280px;
    }
    .alunos-carrossel {
        gap: 1rem;
    }
    .carrossel-controles {
        gap: 1rem;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .btn {
        width: 100%;
        margin: 10px 0;
    }
    .hero-badge {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    .hero-desc {
        font-size: 1.1rem;
    }
    .hero-photo-frame {
        width: 140px;
        height: 140px;
    }
    .hero-photo-glow {
        width: 160px;
        height: 160px;
    }
    .aluno-card {
        width: 260px;
    }
    .aluno-info {
        padding: 1rem;
    }
}

/* Focus visible for better keyboard navigation */
*:focus-visible {
    outline: 2px solid var(--gold-primary);
    outline-offset: 2px;
}


/* ============================================================
   SISTEMA DE LAYOUT — WP-SITE-BLOCKS
   Backgrounds alternados e hero exception
   ============================================================ */

.wp-site-blocks section:nth-of-type(odd)  { background: var(--bg-medium); }
.wp-site-blocks section:nth-of-type(even) { background: var(--bg-dark);   }

/* Hero: ignora o sistema genérico de section spacing
   e usa seu próprio padding definido em .hero acima.
   padding-top: 160px já compensa a navbar fixa (~70px) + respiro visual. */
.wp-site-blocks section.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    background: inherit;
}

@media (max-width: 768px) {
    .wp-site-blocks section.hero {
        padding-top: 140px;
        padding-bottom: 80px;
    }
}

/* ============================================================
   CTA INTERMEDIÁRIO
   ============================================================ */

.cta-intermediario {
    text-align: center;
    padding: 3.5rem 1rem;
    background: var(--bg-dark);
    border-top: 1px solid rgba(212, 175, 55, .12);
    border-bottom: 1px solid rgba(212, 175, 55, .12);
}
.cta-intermediario p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin: 0 auto 1.5rem;
    max-width: 520px;
}

/* ============================================================
   ABOUT — Split editorial
   Texto à esquerda + pillar grid à direita
   ============================================================ */

#about .about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: 0;
}
#about .about-split-text {
    padding-top: .5rem;
}
#about .about-split-text .about-text {
    margin-bottom: 0;
}
#about .about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
#about .pillar {
    padding: 1.4rem 1.2rem;
    border: 1px solid rgba(212, 175, 55, .18);
    border-radius: 10px;
    background: rgba(255, 255, 255, .03);
}
#about .pillar i {
    display: block;
    font-size: 1.4rem;
    color: var(--gold-primary);
    margin-bottom: .6rem;
}
#about .pillar h3 {
    font-size: .9rem;
    font-weight: 600;
    margin: 0 0 .4rem;
    line-height: 1.3;
}
#about .pillar p {
    font-size: .82rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ============================================================
   RESULTADOS — Grid assimétrico
   1 card destaque (2 colunas) + 4 cards menores
   ============================================================ */

#resultados .grid-asym {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.2rem;
}
#resultados .grid-asym .card-featured {
    grid-column: 1 / 3;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.4rem 2.2rem;
    border-left: 3px solid var(--gold-primary);
}
#resultados .grid-asym .card-featured .feat-icon {
    font-size: 2.4rem;
    color: var(--gold-primary);
    flex-shrink: 0;
}
#resultados .grid-asym .card-featured h3 {
    margin-bottom: .4rem;
}
#resultados .grid-asym .card-small {
    padding: 1.4rem;
}
#resultados .grid-asym .card-small i {
    display: block;
    font-size: 1.3rem;
    color: var(--gold-primary);
    margin-bottom: .5rem;
}
#resultados .grid-asym .card-small h3 {
    font-size: .95rem;
    margin-bottom: .3rem;
}
#resultados .grid-asym .card-small p {
    font-size: .83rem;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================================
   COMO FUNCIONA — Steps horizontais numerados
   ============================================================ */

#como-funciona .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
#como-funciona .steps::before {
    content: '';
    position: absolute;
    top: 2.4rem;
    left: 12.5%;
    width: 75%;
    height: 1px;
    background: linear-gradient(
        to right,
        rgba(212, 175, 55, .1),
        rgba(212, 175, 55, .4),
        rgba(212, 175, 55, .1)
    );
    pointer-events: none;
}
#como-funciona .step {
    padding: 0 1.5rem;
    text-align: center;
    position: relative;
}
#como-funciona .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    border: 1.5px solid var(--gold-primary);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    background: var(--bg-medium);
    margin-bottom: 1.4rem;
    position: relative;
    z-index: 1;
}
#como-funciona .step i {
    display: none; /* número serve de visual — ícone oculto */
}
#como-funciona .step h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .6rem;
    line-height: 1.3;
}
#como-funciona .step p {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   METHODOLOGY — Grid denso 4 colunas
   Borda dourada lateral em cada card
   ============================================================ */

#methodology .grid-dense {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
#methodology .grid-dense .card-dense {
    padding: 1.5rem 1.4rem;
    border-left: 2px solid rgba(212, 175, 55, .35);
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-radius: 0 8px 8px 0;
    background: rgba(255, 255, 255, .03);
}
#methodology .grid-dense .card-dense i {
    font-size: 1.2rem;
    color: var(--gold-primary);
    margin-bottom: .6rem;
    display: block;
}
#methodology .grid-dense .card-dense h3 {
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: .4rem;
    line-height: 1.3;
}
#methodology .grid-dense .card-dense p {
    font-size: .8rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ============================================================
   FAQ — Accordion visual com divisores
   Sem cards — layout editorial limpo
   ============================================================ */

#faq .faq-list {
    max-width: 780px;
    margin: 0 auto;
}
#faq .faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    padding: 2rem 0;
}
#faq .faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, .07);
}
#faq .faq-q {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: .9rem;
}
#faq .faq-q i {
    color: var(--gold-primary);
    font-size: 1rem;
    margin-top: .15rem;
    flex-shrink: 0;
}
#faq .faq-q h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    color: var(--text-light);
}
#faq .faq-a {
    padding-left: 2rem;
    font-size: .92rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   RESPONSIVO — NOVOS LAYOUTS
   ============================================================ */

@media (max-width: 900px) {
    #about .about-split          { grid-template-columns: 1fr; gap: 2.5rem; }
    #about .about-pillars        { grid-template-columns: 1fr 1fr; }

    #resultados .grid-asym                  { grid-template-columns: 1fr 1fr; }
    #resultados .grid-asym .card-featured   { grid-column: 1 / 3; }

    #methodology .grid-dense     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
    #como-funciona .steps        { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    #como-funciona .steps::before { display: none; }
}

@media (max-width: 520px) {
    #about .about-pillars        { grid-template-columns: 1fr; }

    #resultados .grid-asym                  { grid-template-columns: 1fr; }
    #resultados .grid-asym .card-featured   { grid-column: 1; flex-direction: column; gap: 1rem; }
}

@media (max-width: 480px) {
    #como-funciona .steps        { grid-template-columns: 1fr; gap: 2rem; }
    #methodology .grid-dense     { grid-template-columns: 1fr; }
}