:root {
      --bg:        #F5F0E8;
      --surface:   #FFFFFF;
      --dark:      #1E1710;
      --primary:   #44372A;
      --accent:    #C4A265;
      --gold:      #C4A265;
      --gold-light:#D4B478;
      --muted:     #8A7D6B;
      --border:    #D9D0C3;
      --light:     #EDE8DF;
      --serif: 'Source Serif 4', Georgia, serif;
      --sans:  'Inter', system-ui, sans-serif;
      --ease: cubic-bezier(.22,1,.36,1);
    }
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--dark);
      font-family: var(--sans);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
    }
    ::selection { background: rgba(196,162,101,.2); }
    h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      height: 64px; padding: 0 56px;
      display: flex; justify-content: space-between; align-items: center;
      background: rgba(26,19,13,.97);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(196,162,101,.1);
      transition: box-shadow .4s var(--ease);
    }
    .nav-logo {
      display: flex; align-items: center; gap: 14px;
      text-decoration: none;
    }
    .nav-mark { height: 34px; width: auto; display: block; }
    .nav-wordmark {
      font-family: var(--sans); font-size: 14px; font-weight: 500;
      letter-spacing: .22em; text-transform: uppercase;
      color: #EFE6D8; white-space: nowrap;
    }
    .nav-tagline {
      font-family: var(--sans); font-size: 7.5px; font-weight: 400;
      letter-spacing: .18em; text-transform: uppercase;
      color: rgba(212,180,120,.75); line-height: 1.6;
      padding-left: 14px; border-left: 1px solid rgba(255,255,255,.12);
      white-space: nowrap;
    }
    .nav-right { display: flex; align-items: center; gap: 36px; }
    .nav-links { display: flex; gap: 28px; list-style: none; }
    .nav-links a {
      font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
      color: rgba(255,255,255,.55); text-decoration: none;
      transition: color .3s var(--ease);
    }
    .nav-links a:hover { color: #FFFFFF; }
    .nav-cta {
      font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
      color: var(--dark); text-decoration: none;
      background: var(--gold); padding: 10px 22px;
      transition: background .3s var(--ease), transform .2s var(--ease);
    }
    .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

    /* HAMBURGER */
    .hamburger {
      display: none; background: none; border: none; cursor: pointer;
      width: 28px; height: 20px; position: relative; z-index: 210;
    }
    .hamburger span {
      display: block; width: 100%; height: 1.5px; background: #FFFFFF;
      position: absolute; left: 0; transition: all .3s var(--ease);
    }
    .hamburger span:nth-child(1) { top: 0; }
    .hamburger span:nth-child(2) { top: 9px; }
    .hamburger span:nth-child(3) { top: 18px; }
    .hamburger.active span:nth-child(1) { top: 9px; transform: rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

    .mobile-menu {
      display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
      background: var(--dark); z-index: 199;
      flex-direction: column; align-items: center; justify-content: center; gap: 28px;
    }
    .mobile-menu.active { display: flex; }
    .mobile-menu a {
      font-family: var(--serif); font-size: 22px; color: rgba(255,255,255,.7);
      text-decoration: none; transition: color .2s var(--ease);
    }
    .mobile-menu a:hover { color: var(--gold-light); }

    /* SHARED */
    .eyebrow {
      font-family: var(--sans); font-size: 10px; letter-spacing: .22em;
      text-transform: uppercase; color: var(--accent);
      display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
    }
    .eyebrow::before { content: ''; width: 32px; height: 1px; background: currentColor; flex-shrink: 0; }
    section { padding: 120px 56px; }
    hr { border: none; border-top: 1px solid var(--border); }
    .section-link {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
      color: var(--gold); text-decoration: none;
      transition: gap .3s var(--ease), color .3s var(--ease);
    }
    .section-link:hover { gap: 14px; color: var(--dark); }
    .section-link svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }
    .section-link:hover svg { transform: translateX(3px); }

    /* HERO */
    .hero {
      min-height: 100vh;
      padding: 140px 56px 100px;
      display: grid; grid-template-columns: 1fr 320px;
      align-items: center; gap: 80px;
      background: var(--dark); position: relative; overflow: hidden;
    }
    .hero-arc {
      position: absolute; right: -80px; top: 50%;
      transform: translateY(-50%);
      width: 700px; height: 700px; opacity: .05;
      pointer-events: none;
    }
    .hero-content { position: relative; z-index: 2; }
    .hero .eyebrow { color: var(--gold-light); }
    .hero .eyebrow span {
      background: rgba(255,255,255,.05);
      padding: 8px 14px;
    }
    .hero h1 {
      font-size: clamp(40px, 4.8vw, 68px);
      line-height: 1.1; letter-spacing: -.02em;
      color: var(--surface); margin-bottom: 28px;
    }
    .hero h1 em { font-style: italic; color: var(--gold-light); }
    .hero-sub {
      font-size: 16px; font-weight: 300; color: rgba(255,255,255,.62);
      line-height: 1.8; max-width: 520px; margin-bottom: 48px;
    }
    .hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 16px 32px;
      font-family: var(--sans); font-size: 11px;
      letter-spacing: .14em; text-transform: uppercase;
      text-decoration: none; border: none; cursor: pointer;
      transition: all .3s var(--ease);
    }
    .hero .btn-primary {
      background: var(--gold); color: var(--dark);
    }
    .hero .btn-primary:hover {
      background: var(--gold-light); transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(196,162,101,.25);
    }
    .hero-note {
      font-size: 12px; color: rgba(255,255,255,.3);
      font-style: italic; letter-spacing: .02em;
    }
    .hero-markers {
      display: flex; flex-direction: column; gap: 0;
      border: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.03);
      align-self: center; position: relative; z-index: 2;
    }
    .marker {
      padding: 32px 36px;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .marker:last-child { border-bottom: none; }
    .marker-value {
      font-family: var(--serif); font-size: 44px;
      color: var(--gold-light); line-height: 1; display: block; margin-bottom: 6px;
    }
    .marker-label {
      font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
      color: rgba(255,255,255,.48); display: block;
    }

    /* MANIFESTO EXCERPT */
    .manifesto-section { background: var(--surface); }
    .manifesto-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: start;
    }
    .manifesto-section h2 {
      font-size: clamp(28px, 3.2vw, 44px);
      line-height: 1.18; margin-bottom: 16px;
    }
    .manifesto-section h2 em { font-style: italic; color: var(--gold); }
    .manifesto-body p {
      font-size: 15px; color: var(--muted); line-height: 1.85;
      margin-bottom: 20px;
    }
    .manifesto-body .section-link { margin-top: 16px; }
    .manifesto-quote {
      font-family: var(--serif); font-size: 20px;
      font-style: italic; color: var(--primary);
      line-height: 1.55; border-left: 2px solid var(--gold);
      padding-left: 24px; margin-top: 32px;
    }

    /* FOUNDATION COHORT */
    .foundation-section { background: var(--bg); }
    .foundation-header { margin-bottom: 56px; }
    .foundation-header h2 {
      font-size: clamp(28px, 3.5vw, 48px);
      line-height: 1.12; margin-bottom: 14px;
    }
    .foundation-header h2 em { font-style: italic; color: var(--gold); }
    .foundation-sub {
      font-size: 16px; color: var(--muted); max-width: 560px; line-height: 1.7;
    }
    .format-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
      background: var(--border); margin-bottom: 40px;
    }
    .format-card {
      background: var(--surface); padding: 44px 36px;
      transition: background .3s var(--ease);
    }
    .format-card:hover { background: var(--light); }
    .format-icon {
      width: 44px; height: 44px;
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 24px; font-size: 18px; color: var(--gold);
      transition: border-color .3s var(--ease);
    }
    .format-card:hover .format-icon { border-color: var(--gold); }
    .format-card h4 { font-size: 18px; margin-bottom: 10px; }
    .format-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
    .foundation-details {
      display: flex; gap: 48px; padding-top: 8px; flex-wrap: wrap;
    }
    .foundation-detail {
      font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 10px;
    }
    .foundation-detail strong {
      color: var(--dark); font-weight: 500;
    }
    .foundation-cta { margin-top: 40px; }

    /* MÉTODO ARCO */
    .metodo-section {
      background: var(--dark);
      position: relative; overflow: hidden;
    }
    .metodo-section .eyebrow { color: var(--gold-light); }
    .metodo-header { margin-bottom: 56px; }
    .metodo-header h2 {
      font-size: clamp(28px, 3.5vw, 48px);
      color: var(--surface); line-height: 1.15; margin-bottom: 16px;
    }
    .metodo-header h2 em { font-style: italic; color: var(--gold-light); }
    .metodo-sub {
      font-size: 16px; color: rgba(255,255,255,.58);
      max-width: 560px; line-height: 1.7;
    }
    .pilares-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
      background: rgba(255,255,255,.06); margin-bottom: 40px;
    }
    .pilar {
      background: rgba(255,255,255,.03); padding: 44px 40px;
      display: flex; align-items: flex-start; gap: 20px;
      transition: background .3s var(--ease);
    }
    .pilar:hover { background: rgba(255,255,255,.06); }
    .pilar-num {
      font-family: var(--serif); font-size: 48px;
      color: rgba(255,255,255,.06); line-height: 1; flex-shrink: 0;
    }
    .pilar h4 {
      font-size: 17px; color: var(--surface); margin-bottom: 8px;
    }
    .pilar p {
      font-size: 13px; color: rgba(255,255,255,.58); line-height: 1.7;
    }
    .metodo-section .section-link { color: var(--gold-light); }
    .metodo-section .section-link:hover { color: #FFFFFF; }

    /* DIREÇÃO */
    .direcao-section { background: var(--surface); }
    .direcao-section .eyebrow { margin-bottom: 16px; }
    .direcao-section > h2 {
      font-size: clamp(28px, 3.5vw, 48px);
      margin-bottom: 56px; line-height: 1.15;
    }
    .direcao-section > h2 em { font-style: italic; color: var(--gold); }
    .mentores-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 2px; background: var(--border);
    }
    .mentor-card { background: var(--surface); display: grid; grid-template-columns: 260px 1fr; }
    .mentor-img {
      background: var(--light); min-height: 400px;
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
    }
    .mentor-img img {
      width: 100%; height: 100%; object-fit: cover;
      object-position: top center;
      position: absolute; top: 0; left: 0;
    }
    .mentor-content { padding: 44px 36px; }
    .mentor-content h3 { font-size: 26px; margin-bottom: 4px; }
    .mentor-title {
      font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
      color: var(--accent); margin-bottom: 20px; display: block;
    }
    .mentor-role {
      display: inline-block; font-size: 10px; letter-spacing: .12em;
      text-transform: uppercase; color: var(--surface);
      background: var(--primary); padding: 4px 12px; margin-bottom: 14px;
    }
    .mentor-bio {
      font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 24px;
    }
    .creds { list-style: none; }
    .creds li {
      font-size: 13px; color: var(--dark); padding: 9px 0;
      border-bottom: 1px solid var(--border);
      display: flex; align-items: center; gap: 12px;
    }
    .creds li::before {
      content: ''; width: 4px; height: 4px; border-radius: 50%;
      background: var(--accent); flex-shrink: 0;
    }
    .direcao-cta { margin-top: 48px; text-align: center; }

    /* PERFIL */
    .perfil-section { background: var(--primary); }
    .perfil-section .eyebrow { color: var(--gold-light); }
    .perfil-section h2 {
      font-size: clamp(28px, 3.5vw, 48px);
      color: var(--surface); margin-bottom: 56px; line-height: 1.15;
    }
    .perfil-section h2 em { font-style: italic; color: var(--gold-light); }
    .criteria-grid { display: grid; grid-template-columns: 1fr 1fr; }
    .c-item {
      padding: 36px 40px;
      border: 1px solid rgba(255,255,255,.08);
      display: flex; align-items: flex-start; gap: 20px;
      transition: background .3s var(--ease);
    }
    .c-item:hover { background: rgba(255,255,255,.03); }
    .c-num {
      font-family: var(--serif); font-size: 48px;
      color: rgba(255,255,255,.06); line-height: 1; flex-shrink: 0;
    }
    .c-body h4 {
      font-size: 17px; color: var(--surface); font-weight: 400; margin-bottom: 8px;
    }
    .c-body p { font-size: 13px; color: rgba(255,255,255,.58); line-height: 1.7; }

    /* ROADMAP */
    .roadmap-section { background: var(--bg); }
    .roadmap-header { margin-bottom: 56px; }
    .roadmap-header h2 {
      font-size: clamp(28px, 3.5vw, 48px); line-height: 1.15; margin-bottom: 14px;
    }
    .roadmap-header h2 em { font-style: italic; color: var(--gold); }
    .roadmap-sub { font-size: 16px; color: var(--muted); max-width: 520px; }
    .timeline { max-width: 680px; position: relative; padding-left: 40px; }
    .timeline::before {
      content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px;
      width: 1px; background: var(--border);
    }
    .timeline-item {
      position: relative; padding: 0 0 48px 0;
    }
    .timeline-item:last-child { padding-bottom: 0; }
    .timeline-item::before {
      content: ''; position: absolute; left: -40px; top: 8px;
      width: 15px; height: 15px; border-radius: 50%;
      border: 2px solid var(--border); background: var(--bg);
      transition: border-color .3s var(--ease);
    }
    .timeline-item.active::before {
      border-color: var(--gold); background: var(--gold);
    }
    .timeline-year {
      font-family: var(--serif); font-size: 20px; color: var(--dark);
      margin-bottom: 4px;
    }
    .timeline-item.active .timeline-year { color: var(--gold); }
    .timeline-desc {
      font-size: 14px; color: var(--muted); line-height: 1.6;
    }
    .timeline-badge {
      display: inline-block; font-size: 9px; letter-spacing: .14em;
      text-transform: uppercase; padding: 3px 10px; margin-top: 8px;
    }
    .timeline-badge.active {
      background: var(--gold); color: var(--surface);
    }
    .timeline-badge.planned {
      border: 1px solid var(--border); color: var(--muted);
    }

    /* BLOG PREVIEW */
    .conversas-section { background: var(--surface); }
    .conversas-header { margin-bottom: 48px; }
    .conversas-header h2 {
      font-size: clamp(28px, 3.5vw, 48px); line-height: 1.15; margin-bottom: 14px;
    }
    .conversas-header h2 em { font-style: italic; color: var(--gold); }
    .blog-cards {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 2px; background: var(--border);
    }
    .blog-card {
      background: var(--surface); padding: 36px 32px;
      text-decoration: none; color: inherit;
      display: flex; flex-direction: column; gap: 16px;
      transition: background .3s var(--ease);
    }
    .blog-card:hover { background: var(--light); }
    .blog-card-cat {
      font-size: 9px; letter-spacing: .16em; text-transform: uppercase;
      color: var(--gold); font-weight: 500;
    }
    .blog-card h4 {
      font-size: 17px; line-height: 1.35; color: var(--dark);
    }
    .blog-card p {
      font-size: 13px; color: var(--muted); line-height: 1.65;
      flex-grow: 1;
    }
    .blog-card-meta {
      display: flex; justify-content: space-between; align-items: center;
      padding-top: 16px; border-top: 1px solid var(--border);
      font-size: 11px; color: var(--muted);
    }
    .blog-card-read {
      color: var(--gold); font-weight: 500; letter-spacing: .06em;
    }
    .conversas-cta { margin-top: 48px; text-align: center; }

    /* FAQ */
    .faq-section { background: var(--bg); }
    .faq-section .eyebrow { margin-bottom: 16px; }
    .faq-section h2 {
      font-size: clamp(28px, 3.5vw, 48px); margin-bottom: 48px; line-height: 1.15;
    }
    .faq-section h2 em { font-style: italic; color: var(--gold); }
    .faq-list { max-width: 780px; margin: 0 auto; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-question {
      width: 100%; padding: 24px 0; background: none; border: none;
      font-family: var(--sans); font-size: 15px; font-weight: 500;
      color: var(--dark); text-align: left; cursor: pointer;
      display: flex; justify-content: space-between; align-items: center; gap: 20px;
      transition: color .3s var(--ease);
    }
    .faq-question:hover { color: var(--gold); }
    .faq-icon {
      width: 22px; height: 22px; flex-shrink: 0;
      transition: transform .4s var(--ease); color: var(--gold);
    }
    .faq-item.active .faq-icon { transform: rotate(45deg); }
    .faq-answer {
      max-height: 0; overflow: hidden;
      transition: max-height .5s var(--ease);
    }
    /* altura da resposta definida via JS (scrollHeight) para não cortar textos longos */
    .faq-answer p {
      font-size: 14px; color: var(--muted); line-height: 1.8; padding-bottom: 24px;
    }

    /* CANDIDATURA */
    .candidatura-section {
      background: var(--dark); position: relative; overflow: hidden;
    }
    .candidatura-arc {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
      width: 900px; height: 500px; opacity: .03; pointer-events: none;
    }
    .candidatura-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: start; position: relative; z-index: 2;
    }
    .candidatura-content .eyebrow { color: var(--gold-light); }
    .candidatura-content h2 {
      font-size: clamp(28px, 3.5vw, 48px);
      color: var(--surface); line-height: 1.12; margin-bottom: 18px;
    }
    .candidatura-content h2 em { font-style: italic; color: var(--gold-light); }
    .candidatura-content > p {
      font-size: 15px; color: rgba(255,255,255,.58); line-height: 1.75;
      margin-bottom: 20px;
    }
    .candidatura-process { margin-top: 32px; }
    .candidatura-step {
      display: flex; align-items: flex-start; gap: 16px;
      padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .candidatura-step-num {
      font-family: var(--serif); font-size: 20px;
      color: var(--gold-light); flex-shrink: 0; width: 24px;
    }
    .candidatura-step p {
      font-size: 13px; color: rgba(255,255,255,.58); line-height: 1.6;
    }
    .candidatura-step strong { color: rgba(255,255,255,.7); font-weight: 500; }
    .candidatura-form { display: flex; flex-direction: column; gap: 16px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; }
    .form-group label {
      font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
      color: rgba(255,255,255,.4); font-weight: 500;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 14px 16px; border: 1px solid rgba(255,255,255,.1);
      font-family: var(--sans); font-size: 14px;
      color: var(--surface); background: rgba(255,255,255,.04);
      transition: border-color .3s var(--ease);
      outline: none; width: 100%;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: rgba(255,255,255,.2);
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--gold);
    }
    .form-group select { color: rgba(255,255,255,.62); }
    .form-group select option { background: var(--dark); color: var(--surface); }
    .form-group textarea { resize: vertical; min-height: 140px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .btn-submit {
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      background: var(--gold); color: var(--dark);
      padding: 16px 32px; border: none; cursor: pointer;
      font-family: var(--sans); font-size: 11px;
      letter-spacing: .14em; text-transform: uppercase;
      transition: all .3s var(--ease); width: 100%; margin-top: 8px;
    }
    .btn-submit:hover {
      background: var(--gold-light); transform: translateY(-1px);
      box-shadow: 0 8px 32px rgba(196,162,101,.2);
    }
    .candidatura-note {
      font-size: 11px; color: rgba(255,255,255,.25);
      text-align: center; margin-top: 12px; font-style: italic;
    }
    .form-consent {
      display: flex; align-items: flex-start; gap: 12px;
      margin-top: 4px;
    }
    .form-consent input[type="checkbox"] {
      width: 16px; height: 16px; margin-top: 2px;
      accent-color: var(--gold); flex-shrink: 0; cursor: pointer;
    }
    .form-consent label {
      font-size: 12px; color: rgba(255,255,255,.4);
      line-height: 1.6; cursor: pointer;
    }
    .form-consent label a {
      color: var(--gold-light); text-decoration: underline;
      text-underline-offset: 2px;
    }
    .form-feedback { display: none; }
    .form-feedback.visible {
      display: block; padding: 48px 40px; text-align: center;
      border: 1px solid rgba(196,162,101,.35);
      background: rgba(196,162,101,.06);
    }
    .form-feedback h3 {
      font-size: 26px; color: var(--surface); margin-bottom: 14px;
    }
    .form-feedback h3 em { font-style: italic; color: var(--gold-light); }
    .form-feedback p {
      font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.8;
    }
    .form-error {
      display: none; font-size: 13px; color: #E8A87C;
      text-align: center; margin-top: 10px; line-height: 1.6;
    }
    .form-error.visible { display: block; }
    .btn-submit:disabled { opacity: .5; cursor: wait; transform: none; }

    /* FOOTER */
    footer {
      background: var(--dark); padding: 64px 56px 36px;
      border-top: 1px solid rgba(255,255,255,.06);
    }
    .footer-grid {
      display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr;
      gap: 48px; margin-bottom: 48px;
    }
    .footer-brand {
      font-family: var(--serif); font-size: 18px;
      color: #FFFFFF; margin-bottom: 14px;
    }
    .footer-brand span { color: var(--gold-light); }
    .footer-desc {
      font-size: 13px; color: rgba(255,255,255,.48); line-height: 1.7;
    }
    .footer-col h5 {
      font-family: var(--sans); font-size: 10px; letter-spacing: .14em;
      text-transform: uppercase; color: rgba(255,255,255,.62);
      margin-bottom: 18px; font-weight: 500;
    }
    .footer-col a {
      display: block; font-size: 13px; color: rgba(255,255,255,.4);
      text-decoration: none; padding: 5px 0;
      transition: color .3s var(--ease);
    }
    .footer-col a:hover { color: var(--gold-light); }
    .footer-col p {
      font-size: 13px; color: rgba(255,255,255,.48); line-height: 1.6;
    }
    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center;
      padding-top: 24px; border-top: 1px solid rgba(255,255,255,.06);
    }
    .footer-copy { font-size: 11px; color: rgba(255,255,255,.2); }

    /* ANIMATIONS */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-content .eyebrow     { opacity: 0; animation: fadeUp .9s var(--ease) .15s forwards; }
    .hero-content h1            { opacity: 0; animation: fadeUp .9s var(--ease) .3s forwards; }
    .hero-content .hero-sub     { opacity: 0; animation: fadeUp .9s var(--ease) .45s forwards; }
    .hero-content .hero-actions { opacity: 0; animation: fadeUp .9s var(--ease) .6s forwards; }
    .hero-markers               { opacity: 0; animation: fadeUp 1s var(--ease) .75s forwards; }
    .reveal {
      opacity: 0; transform: translateY(24px);
      transition: opacity .8s var(--ease), transform .8s var(--ease);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-d1 { transition-delay: .1s; }
    .reveal-d2 { transition-delay: .2s; }
    .reveal-d3 { transition-delay: .3s; }
    .reveal-d4 { transition-delay: .4s; }

    .reveal .format-card,
    .reveal .pilar,
    .reveal .c-item,
    .reveal .mentor-card,
    .reveal .blog-card,
    .reveal .faq-item,
    .reveal .timeline-item {
      opacity: 0; transform: translateY(16px);
      transition: opacity .6s var(--ease), transform .6s var(--ease);
    }
    .reveal.visible .format-card,
    .reveal.visible .pilar,
    .reveal.visible .c-item,
    .reveal.visible .mentor-card,
    .reveal.visible .blog-card,
    .reveal.visible .faq-item,
    .reveal.visible .timeline-item {
      opacity: 1; transform: translateY(0);
    }
    .reveal .format-card:nth-child(2),
    .reveal .pilar:nth-child(2),
    .reveal .c-item:nth-child(2),
    .reveal .mentor-card:nth-child(2),
    .reveal .blog-card:nth-child(2),
    .reveal .faq-item:nth-child(2),
    .reveal .timeline-item:nth-child(2) { transition-delay: .1s; }
    .reveal .format-card:nth-child(3),
    .reveal .pilar:nth-child(3),
    .reveal .c-item:nth-child(3),
    .reveal .blog-card:nth-child(3),
    .reveal .faq-item:nth-child(3),
    .reveal .timeline-item:nth-child(3) { transition-delay: .2s; }
    .reveal .pilar:nth-child(4),
    .reveal .c-item:nth-child(4),
    .reveal .faq-item:nth-child(4),
    .reveal .timeline-item:nth-child(4) { transition-delay: .3s; }
    .reveal .faq-item:nth-child(5) { transition-delay: .35s; }
    .reveal .faq-item:nth-child(6) { transition-delay: .4s; }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-delay: 0ms !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
      }
      .reveal, .hero-content .eyebrow, .hero-content h1,
      .hero-content .hero-sub, .hero-content .hero-actions,
      .hero-markers,
      .reveal .format-card, .reveal .pilar, .reveal .c-item,
      .reveal .mentor-card, .reveal .blog-card, .reveal .faq-item,
      .reveal .timeline-item {
        opacity: 1 !important; transform: none !important;
      }
    }

    /* RESPONSIVE */
    @media (max-width: 1260px) {
      .nav-tagline { display: none; }
    }
    @media (max-width: 1100px) {
      nav { padding: 0 20px; }
      .nav-links { display: none; }
      .nav-right { gap: 14px; }
      .nav-cta { padding: 9px 14px; letter-spacing: .1em; }
      .hamburger { display: block; }
      section { padding: 80px 24px; }
      .hero { grid-template-columns: 1fr; padding: 110px 24px 72px; gap: 40px; }
      .hero-arc { display: none; }
      .hero-markers {
        flex-direction: row; border: none; background: none;
      }
      .marker {
        border-bottom: none; border-right: 1px solid rgba(255,255,255,.08);
        padding: 20px 24px; background: rgba(255,255,255,.03);
        flex: 1;
      }
      .marker:last-child { border-right: none; }
      .manifesto-grid { grid-template-columns: 1fr; gap: 40px; }
      .format-grid { grid-template-columns: 1fr; }
      .pilares-grid { grid-template-columns: 1fr; }
      .mentores-grid { grid-template-columns: 1fr; }
      .mentor-card { grid-template-columns: 1fr; }
      .mentor-img { min-height: 360px; }
      .mentor-content { padding: 32px 24px; }
      .criteria-grid { grid-template-columns: 1fr; }
      .blog-cards { grid-template-columns: 1fr; }
      .candidatura-grid { grid-template-columns: 1fr; gap: 48px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    }
    @media (max-width: 600px) {
      .hero-markers { flex-direction: column; }
      .marker { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
      nav .lang-switch { display: none; }
      .nav-wordmark { font-size: 12px; letter-spacing: .16em; }
      .nav-mark { height: 28px; }
    }

    /* LANGUAGE SWITCHER */
    .lang-switch {
      display: flex; align-items: center; gap: 0;
      border: 1px solid rgba(255,255,255,.15); background: transparent;
      flex-shrink: 0; overflow: hidden;
    }
    .lang-switch button {
      background: none; border: none; cursor: pointer;
      padding: 7px 12px; font-family: var(--sans);
      font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
      color: rgba(255,255,255,.4); transition: background .25s, color .25s;
      line-height: 1;
    }
    .lang-switch button.active { background: var(--gold); color: var(--dark); }
    .lang-switch button:hover:not(.active) { color: #FFFFFF; }
    .lang-switch-divider {
      width: 1px; height: 16px; background: rgba(255,255,255,.15); flex-shrink: 0;
    }
    .mobile-lang-switch {
      display: flex; align-items: center; gap: 0;
      border: 1px solid rgba(255,255,255,.15); margin-top: 12px;
    }
    .mobile-lang-switch button {
      background: none; border: none; cursor: pointer;
      padding: 10px 20px; font-family: var(--sans);
      font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
      color: rgba(255,255,255,.4); transition: background .25s, color .25s;
    }
    .mobile-lang-switch button.active { background: var(--gold); color: var(--dark); }
    .mobile-lang-switch .lang-switch-divider {
      width: 1px; height: 22px; background: rgba(255,255,255,.15); flex-shrink: 0;
    }
    @media (max-width: 1100px) {
      .lang-switch { order: -1; }
    }
