/* ============================================================
   AQUÁRIO37 — Component Styles
   ============================================================
   Each section is clearly delimited with a comment block.
   Add new sections at the bottom following the same pattern.
   Never override CSS variables; extend them.
   ============================================================ */

/* ══════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-h);
    display: flex;
    align-items: center;
    transition: background var(--duration-normal) var(--ease-default),
        box-shadow var(--duration-normal) var(--ease-default);
}

.header.is-scrolled {
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header__logo {
    display: flex;
    align-items: center;
}

.header__logo .logo-dark {
    display: none;
}

.header__logo .logo-light {
    display: block;
    height: 28px;
    width: auto;
}

.header.is-scrolled .header__logo .logo-light {
    display: none;
}

.header.is-scrolled .header__logo .logo-dark {
    display: block;
    height: 28px;
    width: auto;
}

.header__nav {
    display: none;
    align-items: center;
    gap: var(--space-5);
}

.header__nav a {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-medium);
    transition: color var(--duration-fast);
    position: relative;
}

.header__nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color-gold);
    transform: scaleX(0);
    transition: transform var(--duration-normal) var(--ease-default);
}

.header__nav a:hover {
    color: var(--color-text-dark);
}

.header__nav a:hover::after {
    transform: scaleX(1);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

/* Mobile menu toggle */
.header__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-1);
    cursor: pointer;
}

.header__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-dark);
    border-radius: 2px;
    transition: transform var(--duration-normal), opacity var(--duration-normal);
}

.header__toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header__toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.header__toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.header__mobile-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--color-bg-light);
    padding: var(--space-4) var(--space-3);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--duration-normal), opacity var(--duration-normal);
    border-bottom: 1px solid rgba(48, 48, 48, 0.06);
    z-index: 99;
}

.header__mobile-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.header__mobile-nav a {
    display: block;
    padding: var(--space-2) 0;
    font-size: var(--text-md);
    font-weight: 500;
    color: var(--color-text-dark);
    border-bottom: 1px solid rgba(48, 48, 48, 0.06);
}

@media (min-width: 1024px) {
    .header__nav {
        display: flex;
    }

    .header__toggle {
        display: none;
    }
}

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-bg-dark);
    padding-top: var(--header-h);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(26, 26, 26, 0.85) 0%,
            rgba(26, 26, 26, 0.60) 60%,
            rgba(26, 26, 26, 0.30) 100%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: var(--space-16) var(--space-3) var(--space-12);
}

.hero__badge {
    margin-bottom: var(--space-4);
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
}

.hero__title {
    color: var(--color-white);
    font-size: var(--text-hero);
    line-height: 1.05;
    margin-bottom: var(--space-4);
    max-width: 800px;
}

.hero__title span {
    color: var(--color-gold);
    font-style: italic;
}

.hero__subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(var(--text-md), 2vw, var(--text-xl));
    line-height: var(--leading-loose);
    max-width: 600px;
    margin-bottom: var(--space-6);
    font-weight: 300;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-8);
}

.hero__stats {
    display: flex;
    gap: var(--space-6);
    flex-wrap: wrap;
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat-number {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    color: var(--color-gold);
    line-height: 1;
}

.hero__stat-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.55);
    margin-top: 4px;
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-4);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

/* ══════════════════════════════════════════════════════════
   SECTION HEADER (reusable)
══════════════════════════════════════════════════════════ */
.section-header {
    margin-bottom: var(--space-10);
}

.section-header--center {
    text-align: center;
}

.section-header--center .divider {
    margin: var(--space-3) auto;
}

.section-header__title {
    margin-bottom: var(--space-3);
}

.section-header__subtitle {
    font-size: var(--text-md);
    color: var(--color-text-medium);
    max-width: 640px;
    line-height: var(--leading-loose);
}

.section-header--center .section-header__subtitle {
    margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════
   ABOUT / THE PROBLEM
══════════════════════════════════════════════════════════ */
.problem__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    align-items: center;
}

.problem__text p {
    font-size: var(--text-md);
    color: var(--color-text-medium);
    margin-bottom: var(--space-3);
}

.problem__quote {
    border-left: 3px solid var(--color-gold);
    padding: var(--space-3) var(--space-4);
    margin: var(--space-5) 0;
    background: rgba(200, 169, 110, 0.06);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.problem__quote p {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--color-text-dark);
    font-style: italic;
    line-height: var(--leading-snug);
    margin: 0;
}

.problem__pains {
    margin-top: var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.problem__pain {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
    border: 1px solid rgba(48, 48, 48, 0.06);
}

.problem__pain-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.problem__pain-text {
    font-size: var(--text-base);
    color: var(--color-text-medium);
    line-height: var(--leading-snug);
}

.problem__visual {
    position: relative;
}

.problem__visual-box {
    background: var(--color-text-dark);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.problem__visual-box::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.2) 0%, transparent 70%);
}

.problem__visual-number {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.problem__visual-stat {
    font-size: var(--text-md);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

@media (min-width: 1024px) {
    .problem__grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: var(--space-12);
    }
}

/* ══════════════════════════════════════════════════════════
   PROBLEMA SECTION (redesigned)
══════════════════════════════════════════════════════════ */

/* Two-column body layout */
.problema-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: start;
}

@media (min-width: 1024px) {
    .problema-body {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-10);
    }
}

/* Section sub-label */
.problema-section-label {
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
}

/* Questions grid */
.problema-questions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
}

/* Single question card */
.problema-question {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.85rem 1.1rem;
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid rgba(48, 48, 48, 0.07);
    transition: border-color var(--duration-normal), box-shadow var(--duration-normal), transform var(--duration-normal);
}

.problema-question:hover {
    border-color: rgba(200, 169, 110, 0.35);
    box-shadow: 0 6px 24px rgba(200, 169, 110, 0.1);
    transform: translateX(4px);
}

.problema-question--wide {
    align-items: flex-start;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.problema-question__icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    line-height: 1;
}

.problema-question__text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-dark);
    line-height: 1.45;
}

/* Visual column */
.problema-visual {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

/* Image with overlay quote */
.problema-image-quote {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 340px;
    display: flex;
    align-items: flex-end;
}

.problema-image-quote__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.problema-image-quote__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    filter: saturate(0.7);
    transition: transform 0.8s var(--ease-default);
}

.problema-image-quote:hover .problema-image-quote__bg img {
    transform: scale(1.03);
}

.problema-image-quote__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(18, 14, 8, 0.90) 0%,
        rgba(18, 14, 8, 0.60) 55%,
        rgba(18, 14, 8, 0.20) 100%
    );
}

.problema-image-quote__content {
    position: relative;
    z-index: 2;
    padding: var(--space-6);
}

.problema-image-quote__rule {
    display: block;
    width: 36px;
    height: 2px;
    background: var(--color-gold);
    margin-bottom: 1.1rem;
}

.problema-image-quote__text {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin: 0;
}

/* Payoff statement */
.problema-payoff {
    padding: var(--space-5) var(--space-6);
    background: var(--color-text-dark);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-gold);
    position: relative;
    overflow: hidden;
}

.problema-payoff::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.problema-payoff__text {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-white);
    margin: 0;
    position: relative;
    z-index: 1;
}

.problema-payoff__text em {
    font-style: italic;
    color: var(--color-gold-light);
}

/* ══════════════════════════════════════════════════════════
   MENTORIA FORMAT
══════════════════════════════════════════════════════════ */
.mentoria__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-10);
}

.mentoria__card {
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(48, 48, 48, 0.08);
    transition: transform var(--duration-normal), box-shadow var(--duration-normal);
}

.mentoria__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.mentoria__card--grupo {
    background: var(--color-bg-light);
}

.mentoria__card--individual {
    background: var(--color-text-dark);
    color: var(--color-white);
    border-color: transparent;
}

.mentoria__card--individual .mentoria__card-body {
    color: rgba(255, 255, 255, 0.75);
}

.mentoria__card-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-3);
}

.mentoria__card-label {
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-1);
}

.mentoria__card-title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-3);
}

.mentoria__card--individual .mentoria__card-title {
    color: var(--color-white);
}

.mentoria__card-body {
    font-size: var(--text-base);
    color: var(--color-text-medium);
    line-height: var(--leading-loose);
    margin-bottom: var(--space-4);
}

.mentoria__card-detail {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 500;
    padding: var(--space-1) var(--space-2);
    background: rgba(200, 169, 110, 0.1);
    border-radius: var(--radius-full);
    color: var(--color-gold-dark);
    width: fit-content;
}

.mentoria__card--individual .mentoria__card-detail {
    background: rgba(200, 169, 110, 0.2);
    color: var(--color-gold-light);
}

.mentoria__highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
}

.mentoria__highlight {
    text-align: center;
    padding: var(--space-4);
    background: var(--color-bg-warm);
    border-radius: var(--radius-md);
    border: 1px solid rgba(48, 48, 48, 0.06);
}

.mentoria__highlight-number {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    color: var(--color-text-dark);
    line-height: 1;
}

.mentoria__highlight-label {
    font-size: var(--text-sm);
    color: var(--color-text-medium);
    margin-top: 6px;
}

@media (min-width: 768px) {
    .mentoria__cards {
        grid-template-columns: 1fr 1fr;
    }

    .mentoria__highlights {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ══════════════════════════════════════════════════════════
   CURRICULUM (12 SESSIONS)
══════════════════════════════════════════════════════════ */
.curriculum {
    background: var(--color-text-dark);
}

.curriculum .section-header__title {
    color: var(--color-white);
}

.curriculum .divider {
    background: var(--color-gold);
}

.curriculum__pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2);
    margin-bottom: var(--space-8);
    padding: var(--space-1);
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
}

.curriculum__pillar-btn {
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    cursor: pointer;
    transition: all var(--duration-normal);
    width: 100%;
}

.curriculum__pillar-btn.is-active,
.curriculum__pillar-btn:hover {
    background: var(--color-gold);
    color: var(--color-white);
}

.curriculum__panel {
    display: none;
}

.curriculum__panel.is-active {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.curriculum__session {
    display: flex;
    gap: var(--space-3);
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: background var(--duration-fast), border-color var(--duration-fast);
}

.curriculum__session:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(200, 169, 110, 0.2);
}

.curriculum__session-num {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--color-gold);
    opacity: 0.4;
    line-height: 1;
    flex-shrink: 0;
    width: 40px;
}

.curriculum__session-content {
    flex: 1;
}

.curriculum__session-title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    color: var(--color-white);
    margin-bottom: var(--space-1);
}

.curriculum__session-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: var(--space-1);
}

.curriculum__topic {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

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

@media (min-width: 768px) {
    .curriculum__panel.is-active {
        grid-template-columns: 1fr 1fr;
    }
}

/* ══════════════════════════════════════════════════════════
   CURRICULUM — FLAT LAYOUT
══════════════════════════════════════════════════════════ */

.curr-flat {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    margin-top: var(--space-4);
}

@media (min-width: 900px) {
    .curr-flat {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8) var(--space-10);
    }
}

/* Pillar block */
.curr-pillar {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

/* Pillar header: big number + name + description */
.curr-pillar__header {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
    padding-bottom: var(--space-4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.curr-pillar__num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1;
    color: var(--color-gold);
    opacity: 0.35;
    flex-shrink: 0;
    width: 54px;
    text-align: right;
}

.curr-pillar__name {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.curr-pillar__desc {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
    line-height: var(--leading-loose);
    margin: 0;
}

/* Sessions list inside each pillar */
.curr-sessions {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Single session row */
.curr-session {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
    padding: var(--space-3) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background var(--duration-fast);
}

.curr-session:last-child {
    border-bottom: none;
}

.curr-session__num {
    font-family: var(--font-display);
    font-size: var(--text-base);
    color: var(--color-gold);
    opacity: 0.55;
    flex-shrink: 0;
    width: 26px;
    padding-top: 2px;
    text-align: right;
}

.curr-session__body {
    flex: 1;
}

.curr-session__title {
    font-family: var(--font-display);
    font-size: var(--text-base);
    color: var(--color-white);
    font-weight: 400;
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.curr-session__desc {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.45);
    line-height: var(--leading-loose);
    margin: 0;
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════ */
.testimonials {
    background: var(--color-bg-light);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}

.testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(48, 48, 48, 0.06);
    transition: transform var(--duration-normal), box-shadow var(--duration-normal);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card__journey {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: var(--color-bg-warm);
    flex-wrap: nowrap;
    overflow: hidden;
}

.testimonial-card__old-role,
.testimonial-card__new-role {
    font-size: var(--text-sm);
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.testimonial-card__old-role {
    background: rgba(107, 107, 107, 0.12);
    color: var(--color-text-medium);
}

.testimonial-card__new-role {
    background: rgba(200, 169, 110, 0.18);
    color: var(--color-gold-dark);
}

.testimonial-card__arrow {
    color: var(--color-gold);
    font-size: var(--text-md);
    flex-shrink: 0;
}

.testimonial-card__body {
    padding: var(--space-4);
}

.testimonial-card__quote {
    font-size: var(--text-base);
    color: var(--color-text-medium);
    line-height: var(--leading-loose);
    margin-bottom: var(--space-4);
    font-style: italic;
    position: relative;
    padding-left: var(--space-3);
}

.testimonial-card__quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -8px;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-gold);
    opacity: 0.5;
    line-height: 1;
}

.testimonial-card__person {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.testimonial-card__photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--color-bg-warm);
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--color-gold-light);
}

.testimonial-card__photo-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-bg-warm));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: var(--text-lg);
    color: var(--color-gold-dark);
    border: 2px solid var(--color-gold-light);
    flex-shrink: 0;
}

.testimonial-card__name {
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--color-text-dark);
}

.testimonial-card__company {
    font-size: var(--text-xs);
    color: var(--color-text-light);
}

@media (min-width: 768px) {
    .testimonials__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .testimonials__grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* ══════════════════════════════════════════════════════════
   MENTOR
══════════════════════════════════════════════════════════ */
.mentor__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: center;
}

.mentor__photo-wrap {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.mentor__photo {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.mentor__photo-badge {
    position: absolute;
    bottom: -var(--space-3);
    right: -var(--space-2);
    background: var(--color-gold);
    color: var(--color-white);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.mentor__photo-badge-num {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    line-height: 1;
}

.mentor__photo-badge-label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.85;
}

.mentor__bio {
    font-size: var(--text-md);
    color: var(--color-text-medium);
    line-height: var(--leading-loose);
    margin-bottom: var(--space-4);
}

.mentor__achievements {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-bottom: var(--space-5);
}

.mentor__achievement {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
}

.mentor__achievement-icon {
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 3px;
    font-size: var(--text-md);
}

.mentor__achievement-text {
    font-size: var(--text-base);
    color: var(--color-text-medium);
    line-height: var(--leading-snug);
}

.mentor__achievement-text strong {
    color: var(--color-text-dark);
}

.mentor__social {
    margin-top: var(--space-4);
}

@media (min-width: 1024px) {
    .mentor__grid {
        grid-template-columns: 0.8fr 1.2fr;
    }

    .mentor__photo-wrap {
        max-width: 100%;
    }
}

/* ══════════════════════════════════════════════════════════
   COMPANY (ABOUT)
══════════════════════════════════════════════════════════ */
.company {
    background: var(--color-bg-warm);
}

.company__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: center;
}

.company__pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
    margin-top: var(--space-5);
}

.company__pillar {
    padding: var(--space-4);
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
    border: 1px solid rgba(48, 48, 48, 0.06);
}

.company__pillar-icon {
    font-size: 1.5rem;
    margin-bottom: var(--space-1);
}

.company__pillar-title {
    font-family: var(--font-display);
    font-size: var(--text-md);
    margin-bottom: 6px;
    color: var(--color-text-dark);
}

.company__pillar-desc {
    font-size: var(--text-sm);
    color: var(--color-text-medium);
    line-height: var(--leading-loose);
}

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

/* ══════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════ */
.faq {
    background: var(--color-bg-light);
}

.faq__list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.faq__item {
    background: var(--color-white);
    border: 1px solid rgba(48, 48, 48, 0.06);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    text-align: left;
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-text-dark);
    cursor: pointer;
    transition: color var(--duration-fast);
}

.faq__question:hover {
    color: var(--color-gold-dark);
}

.faq__icon {
    font-size: 1.2rem;
    color: var(--color-gold);
    flex-shrink: 0;
    transition: transform var(--duration-normal);
    line-height: 1;
}

.faq__item.is-open .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-slow) var(--ease-default);
}

.faq__item.is-open .faq__answer {
    max-height: 400px;
}

.faq__answer-inner {
    padding: 0 var(--space-4) var(--space-4);
    color: var(--color-text-medium);
    font-size: var(--text-base);
    line-height: var(--leading-loose);
    border-top: 1px solid rgba(48, 48, 48, 0.06);
    padding-top: var(--space-3);
}

/* ══════════════════════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════════════════════ */
.cta-final {
    background: var(--color-text-dark);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.12), transparent 70%);
    pointer-events: none;
}

.cta-final__content {
    position: relative;
    z-index: 1;
}

.cta-final__title {
    color: var(--color-white);
    margin-bottom: var(--space-3);
}

.cta-final__subtitle {
    font-size: var(--text-md);
    color: rgba(255, 255, 255, 0.65);
    max-width: 520px;
    margin: 0 auto var(--space-6);
    line-height: var(--leading-loose);
}

.cta-final__urgency {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
    padding: var(--space-2) var(--space-4);
    background: rgba(200, 169, 110, 0.1);
    border: 1px solid rgba(200, 169, 110, 0.25);
    border-radius: var(--radius-full);
    color: var(--color-gold-light);
    font-size: var(--text-sm);
    font-weight: 600;
}

.cta-final__pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gold);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.cta-final__guarantee {
    margin-top: var(--space-5);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.4);
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
    background: var(--color-black);
    color: rgba(255, 255, 255, 0.55);
    padding: var(--space-8) 0 var(--space-4);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.footer__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
}

.footer__logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-bottom: var(--space-2);
    display: block;
}

.footer__tagline {
    font-size: var(--text-sm);
    line-height: var(--leading-loose);
    max-width: 260px;
}

.footer__nav-title {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: var(--space-3);
}

.footer__nav-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.footer__nav-links a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--duration-fast);
}

.footer__nav-links a:hover {
    color: var(--color-gold);
}

.footer__social {
    display: flex;
    gap: var(--space-2);
    margin-top: var(--space-3);
}

.footer__social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-base);
    transition: background var(--duration-fast), color var(--duration-fast);
    color: rgba(255, 255, 255, 0.55);
}

.footer__social-link:hover {
    background: var(--color-gold);
    color: var(--color-white);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    align-items: center;
    text-align: center;
}

.footer__bottom-links {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
    justify-content: center;
}

.footer__bottom-links a {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.35);
    transition: color var(--duration-fast);
}

.footer__bottom-links a:hover {
    color: var(--color-gold);
}

.footer__copyright {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.25);
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ══════════════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
══════════════════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-4);
    right: var(--space-4);
    z-index: 99;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform var(--duration-normal) var(--ease-spring);
    color: white;
    font-size: 1.5rem;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

/* ══════════════════════════════════════════════════════════
   CURRICULUM — subtitle color override
══════════════════════════════════════════════════════════ */
.curriculum .section-header__subtitle {
    color: rgba(255, 255, 255, 0.6);
}

/* ══════════════════════════════════════════════════════════
   UTILITY CLASSES (replacing inline styles)
══════════════════════════════════════════════════════════ */
.mt-2 {
    margin-top: 1rem;
}

.problem__visual-divider {
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.problem__visual-number--sm {
    font-size: 3rem;
}

.company__text {
    font-size: var(--text-md);
    color: var(--color-text-medium);
    line-height: var(--leading-loose);
    margin-bottom: var(--space-3);
}

.company__text:last-of-type {
    margin-bottom: 0;
}

/* ══════════════════════════════════════════════════════════
   PROCESSO SELETIVO — TIMELINE
══════════════════════════════════════════════════════════ */
.processo-timeline {
    display: flex;
    flex-direction: column;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    gap: 0;
}

.processo-step {
    display: flex;
    gap: var(--space-5);
    align-items: flex-start;
}

.processo-step__connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.processo-step__dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-bg-warm);
    border: 2px solid rgba(200, 169, 110, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(200, 169, 110, 0.12);
    position: relative;
    z-index: 1;
}

.processo-step__line {
    width: 2px;
    flex: 1;
    min-height: 40px;
    background: linear-gradient(to bottom, rgba(200, 169, 110, 0.5), rgba(200, 169, 110, 0.15));
    margin-top: 4px;
    margin-bottom: 4px;
}

.processo-step--last .processo-step__connector {
    justify-content: flex-start;
}

.processo-step__content {
    padding-bottom: var(--space-8);
    padding-top: 0.65rem;
    flex: 1;
}

.processo-step--last .processo-step__content {
    padding-bottom: 0;
}

.processo-step__title {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: var(--space-2);
}

.processo-step__body {
    font-size: var(--text-base);
    color: var(--color-text-medium);
    line-height: var(--leading-loose);
}

/* ══════════════════════════════════════════════════════════
   SECTION SEPARATOR
══════════════════════════════════════════════════════════ */
.section-separator {
    display: flex;
    justify-content: center;
    padding: var(--space-2) var(--space-4);
    background: var(--color-bg-light);
}

.section-separator__inner {
    width: 100%;
    max-width: var(--max-w);
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(200, 169, 110, 0.4) 30%,
        rgba(200, 169, 110, 0.4) 70%,
        transparent
    );
}

/* ══════════════════════════════════════════════════════════
   ALUNOS DA TURMA — GRID
══════════════════════════════════════════════════════════ */
.alunos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
    gap: var(--space-5);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.aluno-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-4) var(--space-6);
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: var(--space-5);
    border: 1px solid rgba(48, 48, 48, 0.07);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform var(--duration-normal), box-shadow var(--duration-normal);
}

.aluno-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.09);
}

.aluno-card__photo-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(200, 169, 110, 0.3);
    flex-shrink: 0;
}

.aluno-card__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.aluno-card__info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.aluno-card__name {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-text-dark);
}

.aluno-card__location {
    font-size: var(--text-sm);
    color: var(--color-text-medium);
}

.aluno-card__role {
    font-size: 0.8rem;
    font-style: italic;
    color: var(--color-text-medium);
}

/* "VOCÊ" card variant */
.aluno-card--voce {
    border: 2px dashed rgba(200, 169, 110, 0.6);
    background: rgba(200, 169, 110, 0.04);
}

.aluno-card--voce:hover {
    border-color: var(--color-gold);
    box-shadow: 0 12px 36px rgba(200, 169, 110, 0.15);
}

.aluno-card__photo-wrap--voce {
    background: linear-gradient(135deg, rgba(200, 169, 110, 0.15) 0%, rgba(200, 169, 110, 0.05) 100%);
    border: 3px dashed rgba(200, 169, 110, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.aluno-card__voce-icon {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
    font-family: var(--font-display);
    line-height: 1;
}

.aluno-card__name--voce {
    color: var(--color-gold-dark);
    font-size: var(--text-lg);
}

/* ══════════════════════════════════════════════════════════
   COUNTDOWN TIMER
══════════════════════════════════════════════════════════ */
.countdown-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    flex-wrap: wrap;
}

.countdown-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    min-width: 90px;
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-4) var(--space-3);
    border: 1px solid rgba(48, 48, 48, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.countdown-block__num {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    color: var(--color-text-dark);
    line-height: 1;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
    min-width: 2ch;
    text-align: center;
}

.countdown-block__label {
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
}

.countdown-sep {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--color-gold);
    line-height: 1;
    margin-top: -0.5rem;
    opacity: 0.7;
}

@media (max-width: 480px) {
    .countdown-block {
        min-width: 70px;
        padding: var(--space-3) var(--space-2);
    }

    .countdown-sep {
        font-size: 1.5rem;
    }
}