@charset "UTF-8";
  /* ─── BRAND TOKENS ─── */
  :root {
    --navy:    #1d1d47;
    --brown:   #51280b;
    --wine:    #6e1212;
    --pink:    #ffdbe0;
    --cream:   #fffeee;
    --cream-dark: #f5f0dc;
    --text:    #2a2a2a;
    --text-soft: #5a5a5a;

    /* manual da marca: Copperplate exclusiva da logo (fonte de sistema,
       com fallback para Josefin Slab onde não estiver instalada) */
    --font-logo:    'Copperplate Gothic', 'Copperplate', 'Josefin Slab', serif;
    --font-display: 'Josefin Slab', serif;
    --font-ui:      'Josefin Sans', sans-serif;
    --font-body:    'Josefin Sans', sans-serif;

    --radius: 20px;
    --shadow-xs: 0 2px 12px rgba(29,29,71,0.05);
    --shadow: 0 12px 48px rgba(29,29,71,0.08);
    --shadow-lift: 0 24px 64px rgba(29,29,71,0.12);
    --transition: 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  ::selection { background: var(--pink); color: var(--wine); }

  /* ─── SCROLL ANIMATIONS ─── */
  .reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
    will-change: opacity, transform;
  }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-scale {
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
  }
  .reveal-scale.visible { opacity: 1; transform: none; }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  @media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-scale { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
    * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,254,238,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(29,29,71,0.06);
    padding: 0 5%;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: box-shadow 0.3s, height 0.3s;
  }
  nav.scrolled { box-shadow: 0 2px 24px rgba(29,29,71,0.08); height: 66px; }

  .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav-logo-text {
    font-family: var(--font-logo);
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .nav-logo-text span {
    display: block;
    font-family: var(--font-ui);
    font-weight: 300;
    font-size: 0.55rem;
    letter-spacing: 0.18em;
    color: var(--brown);
  }

  .nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
  .nav-links a {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
  }
  .nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    width: 100%; height: 1.5px;
    background: var(--wine);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
  }
  .nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
  .nav-links a:hover { color: var(--wine); }

  .nav-cta {
    background: var(--navy);
    color: var(--cream) !important;
    padding: 11px 24px;
    border-radius: 50px;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s !important;
  }
  .nav-cta:hover {
    background: var(--wine) !important;
    color: var(--cream) !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(110,18,18,0.25);
  }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
  }
  .hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
  }
  .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
  }
  .mobile-menu {
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--cream);
    padding: 28px 5% 36px;
    z-index: 99;
    border-bottom: 1px solid rgba(29,29,71,0.1);
    box-shadow: 0 24px 48px rgba(29,29,71,0.08);
    transform: translateY(-110%);
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  }
  .mobile-menu.open { transform: translateY(0); }
  .mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
  .mobile-menu a {
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    display: block;
    padding: 14px 8px;
    border-radius: 12px;
    transition: background 0.2s, color 0.2s;
  }
  .mobile-menu a:hover { background: rgba(29,29,71,0.04); color: var(--wine); }

  /* ─── HERO ─── */
  #home {
    min-height: 100vh;
    padding: 150px 5% 90px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .hero-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    opacity: 0.3;
    animation: blobFloat 14s ease-in-out infinite alternate;
  }
  .hero-bg-blob-1 {
    width: 560px; height: 560px;
    background: var(--pink);
    top: -120px; right: -120px;
  }
  .hero-bg-blob-2 {
    width: 340px; height: 340px;
    background: var(--navy);
    bottom: -40px; left: -100px;
    opacity: 0.06;
    animation-delay: -6s;
  }
  @keyframes blobFloat {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-30px, 36px) scale(1.08); }
  }

  /* discreet botanical line — decorative */
  .hero-leaf {
    position: absolute;
    bottom: 8%;
    left: 46%;
    width: 120px;
    opacity: 0.14;
    pointer-events: none;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pink);
    color: var(--wine);
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 9px 18px;
    border-radius: 50px;
    margin-bottom: 30px;
  }
  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--wine);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulseDot 2.4s ease-in-out infinite;
  }
  @keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.75); }
  }

  .hero-headline {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.5rem, 4.4vw, 4rem);
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 22px;
  }
  .hero-headline em { font-style: italic; color: var(--wine); }

  .hero-sub {
    font-family: var(--font-body);
    font-size: 1.18rem;
    color: var(--text-soft);
    margin-bottom: 32px;
    max-width: 480px;
  }

  /* quick indicators */
  .hero-checks {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    column-gap: 32px;
    row-gap: 12px;
    margin-bottom: 40px;
  }
  .hero-checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--navy);
  }
  .hero-checks svg {
    width: 18px; height: 18px;
    flex-shrink: 0;
    color: var(--wine);
    background: var(--pink);
    border-radius: 50%;
    padding: 3.5px;
  }

  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    color: var(--cream);
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(29,29,71,0.18);
  }
  .btn-primary:hover {
    background: var(--wine);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(110,18,18,0.28);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 18px 28px;
    border-radius: 50px;
    text-decoration: none;
    border: 1.5px solid rgba(29,29,71,0.35);
    transition: all 0.25s;
  }
  .btn-secondary:hover { background: var(--navy); border-color: var(--navy); color: var(--cream); }

  .hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* organic photo composition */
  .hero-photo-frame {
    width: 100%;
    max-width: 430px;
    aspect-ratio: 4/5;
    border-radius: 46% 54% 42% 58% / 48% 44% 56% 52%;
    background: linear-gradient(145deg, var(--pink) 0%, var(--cream-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lift);
    animation: blobMorph 16s ease-in-out infinite alternate;
  }
  @keyframes blobMorph {
    0%   { border-radius: 46% 54% 42% 58% / 48% 44% 56% 52%; }
    50%  { border-radius: 54% 46% 56% 44% / 44% 54% 46% 56%; }
    100% { border-radius: 44% 56% 48% 52% / 54% 46% 58% 42%; }
  }

  /* dotted orbital ring behind the photo */
  .hero-ring {
    position: absolute;
    width: 118%;
    max-width: 520px;
    aspect-ratio: 1;
    border: 1.5px dashed rgba(110,18,18,0.22);
    border-radius: 50%;
    pointer-events: none;
    animation: spinSlow 60s linear infinite;
  }
  @keyframes spinSlow { to { transform: rotate(360deg); } }
  .hero-ring::after {
    content: '';
    position: absolute;
    top: 8%; left: 12%;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--wine);
    opacity: 0.5;
  }

  .hero-photo-placeholder {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--wine);
    text-align: center;
    padding: 20px;
    opacity: 0.6;
  }

  .hero-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* a moldura é 4/5 e a foto é 2/3: o corte é vertical.
       Puxa o enquadramento para cima para manter o rosto na área visível. */
    object-position: 50% 28%;
    display: block;
  }

  .hero-float-card {
    position: absolute;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(29,29,71,0.06);
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 12px 36px rgba(29,29,71,0.12);
    font-family: var(--font-ui);
    animation: floatY 6s ease-in-out infinite alternate;
  }
  @keyframes floatY {
    from { transform: translateY(0); }
    to   { transform: translateY(-12px); }
  }
  .hero-float-card-1 {
    bottom: 48px;
    left: -34px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    animation-delay: -2s;
  }
  .hero-float-card-2 {
    top: 26px;
    right: -22px;
    font-size: 0.68rem;
    color: var(--text-soft);
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }
  .hero-float-card-3 {
    top: 46%;
    left: -52px;
    font-size: 0.66rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    animation-delay: -4s;
  }
  .float-icon {
    width: 36px; height: 36px;
    background: var(--pink);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .hero-scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 5%;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-ui);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(29,29,71,0.4);
  }
  .hero-scroll-hint::after {
    content: '';
    width: 40px; height: 1px;
    background: rgba(29,29,71,0.25);
  }

  @media (max-width: 768px) {
    #home {
      grid-template-columns: 1fr;
      gap: 44px;
      padding-top: 110px;
      padding-bottom: 70px;
    }
    .hero-visual { order: 2; }  /* image below the text on mobile */
    .hero-photo-frame { max-width: 300px; margin: 0 auto; }
    .hero-ring { max-width: 350px; }
    .hero-float-card-1 { left: 0; bottom: 24px; }
    .hero-float-card-2 { right: 0; top: 12px; }
    .hero-float-card-3 { display: none; }
    .hero-checks { grid-template-columns: 1fr; }
    .hero-actions .btn-primary, .hero-actions .btn-secondary {
      width: 100%;
      justify-content: center;
    }
    .hero-scroll-hint, .hero-leaf { display: none; }
  }

  /* ─── SECTION COMMONS ─── */
  section { padding: 76px 5%; }

  .section-label {
    font-family: var(--font-ui);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--wine);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .section-label::before {
    content: '';
    display: block;
    width: 28px; height: 1.5px;
    background: var(--wine);
    flex-shrink: 0;
  }

  .section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.9rem, 3.2vw, 3rem);
    color: var(--navy);
    line-height: 1.16;
    margin-bottom: 20px;
  }
  .section-title em { font-style: italic; color: var(--wine); }

  /* Sobre fundo navy o vinho quase desaparece (contraste ~1.4:1).
     Nessas secoes o destaque usa o rosa da paleta. */
  #experiencia .section-title em,
  .cta-card .section-title em { color: var(--pink); }

  .section-lead {
    font-size: 1.08rem;
    color: var(--text-soft);
    max-width: 560px;
    margin-bottom: 40px;
  }

  /* ─── BARRA DE CREDIBILIDADE ─── */
  #diferenciais {
    background: var(--navy);
    padding: 44px 5%;
    position: relative;
    overflow: hidden;
  }
  #diferenciais::before {
    content: '';
    position: absolute;
    top: -160px; right: -100px;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: var(--wine);
    opacity: 0.14;
    pointer-events: none;
  }

  .cred-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  .cred-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 14px 6px;
    border-radius: 14px;
    transition: background 0.3s;
  }
  .cred-item:hover { background: rgba(255,254,238,0.05); }
  .cred-item svg {
    width: 26px; height: 26px;
    color: var(--pink);
  }
  .cred-item span {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,254,238,0.85);
    line-height: 1.45;
  }

  @media (max-width: 1024px) { .cred-grid { grid-template-columns: repeat(3, 1fr); gap: 24px 12px; } }
  @media (max-width: 560px)  { .cred-grid { grid-template-columns: repeat(2, 1fr); } }

  /* ─── SOBRE ─── */
  #sobre {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 90px;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
  }

  .sobre-visual { position: relative; }
  .sobre-photo {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 28px 140px 28px 28px;
    background: linear-gradient(135deg, var(--pink) 0%, #e8d5d5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lift);
  }
  .sobre-photo-placeholder {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--wine);
    text-align: center;
    padding: 20px;
    opacity: 0.6;
  }
  .sobre-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 22%;
    display: block;
  }

  .sobre-deco {
    position: absolute;
    top: -28px; left: -28px;
    width: 90px;
    opacity: 0.35;
    pointer-events: none;
  }

  .sobre-badge {
    position: absolute;
    bottom: -24px;
    right: -18px;
    background: var(--wine);
    color: var(--cream);
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 20px 24px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 16px 40px rgba(110,18,18,0.3);
    line-height: 1.5;
  }
  .sobre-badge strong {
    display: block;
    font-size: 1.7rem;
    font-family: var(--font-display);
    letter-spacing: 0;
  }

  .sobre-text {
    font-size: 1.08rem;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 18px;
  }

  .sobre-cta-row { margin-top: 36px; }

  @media (max-width: 768px) {
    #sobre { grid-template-columns: 1fr; gap: 56px; }
    .sobre-visual { order: -1; }
    .sobre-photo { aspect-ratio: 4/3; border-radius: 24px 100px 24px 24px; }
    .sobre-badge { right: 8px; }
    .sobre-cta-row .btn-secondary { width: 100%; justify-content: center; }
  }

  /* ─── DIFERENCIAIS EM CARDS ─── */
  #pilares {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  }
  .pilares-inner { max-width: 1240px; margin: 0 auto; }
  .pilares-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
  .pilar-card {
    background: var(--cream);
    border: 1px solid rgba(29,29,71,0.07);
    border-radius: 24px;
    padding: 36px 28px;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s;
  }
  .pilar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lift);
  }
  .pilar-icon {
    width: 60px; height: 60px;
    border-radius: 18px;
    background: var(--pink);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 22px;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  }
  .pilar-card:hover .pilar-icon { transform: scale(1.08) rotate(-4deg); }
  .pilar-title {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.35;
  }
  .pilar-text {
    font-size: 0.95rem;
    color: var(--text-soft);
    line-height: 1.7;
  }
  @media (max-width: 1024px) { .pilares-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px)  { .pilares-grid { grid-template-columns: 1fr; } }

  /* ─── COMO FUNCIONA (fluxo) ─── */
  #experiencia {
    background: var(--navy);
    margin: 0;
    padding: 84px 5%;
    overflow: hidden;
    position: relative;
  }
  #experiencia::before {
    content: '';
    position: absolute;
    top: -220px; right: -220px;
    width: 640px; height: 640px;
    border-radius: 50%;
    background: var(--wine);
    opacity: 0.15;
    pointer-events: none;
  }
  #experiencia::after {
    content: '';
    position: absolute;
    bottom: -180px; left: -140px;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: var(--pink);
    opacity: 0.05;
    pointer-events: none;
  }

  #experiencia .section-label { color: var(--pink); }
  #experiencia .section-label::before { background: var(--pink); }
  #experiencia .section-title { color: var(--cream); }
  #experiencia .section-lead { color: rgba(255,254,238,0.7); }

  .exp-inner { max-width: 1240px; margin: 0 auto; position: relative; }

  .flow-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    position: relative;
    counter-reset: step;
  }
  /* connecting line across the steps */
  .flow-grid::before {
    content: '';
    position: absolute;
    top: 27px; left: 8%; right: 8%;
    height: 1.5px;
    background: repeating-linear-gradient(90deg, rgba(255,219,224,0.35) 0 8px, transparent 8px 16px);
    pointer-events: none;
  }

  .flow-step { position: relative; padding-top: 0; }
  .flow-num {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: rgba(255,254,238,0.06);
    border: 1.5px solid rgba(255,219,224,0.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(4px);
    transition: background 0.3s, transform 0.3s;
  }
  .flow-step:hover .flow-num { background: rgba(255,219,224,0.15); transform: scale(1.06); }
  .flow-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.08rem;
    color: var(--cream);
    margin-bottom: 10px;
    line-height: 1.2;
  }
  .flow-title small {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 6px;
  }
  .flow-text {
    font-size: 0.88rem;
    color: rgba(255,254,238,0.65);
    line-height: 1.65;
  }

  .exp-note {
    margin-top: 56px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: rgba(255,254,238,0.05);
    border: 1px solid rgba(255,254,238,0.1);
    border-radius: 20px;
    padding: 28px 32px;
    max-width: 720px;
  }
  .exp-note-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,219,224,0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
  }
  .exp-note-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--cream);
    margin-bottom: 6px;
  }
  .exp-note-text { font-size: 0.92rem; color: rgba(255,254,238,0.65); line-height: 1.65; }

  @media (max-width: 1024px) {
    .flow-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
    .flow-grid::before { display: none; }
  }
  @media (max-width: 560px) {
    .flow-grid { grid-template-columns: 1fr; gap: 0; }
    .flow-step {
      padding-left: 32px;
      padding-bottom: 36px;
      border-left: 1.5px dashed rgba(255,219,224,0.3);
      margin-left: 27px;
    }
    .flow-step:last-child { border-left-color: transparent; padding-bottom: 0; }
    .flow-num { position: absolute; left: -28px; top: 0; margin: 0; background: var(--navy); }
    .exp-note { flex-direction: column; padding: 24px; }
  }

  /* ─── METODOLOGIA — TIMELINE ─── */
  #metodologia {
    background: var(--cream-dark);
    border-radius: 40px;
    margin: 28px 2%;
    padding: 76px 5%;
    position: relative;
    overflow: hidden;
  }
  #metodologia::before {
    content: '';
    position: absolute;
    top: -140px; left: -140px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: var(--pink);
    opacity: 0.25;
    filter: blur(80px);
    pointer-events: none;
  }

  .metod-inner { max-width: 1100px; margin: 0 auto; position: relative; }

  .metod-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 44px;
  }

  .timeline { position: relative; max-width: 780px; }
  .timeline::before {
    content: '';
    position: absolute;
    left: 27px; top: 12px; bottom: 12px;
    width: 1.5px;
    background: linear-gradient(180deg, rgba(110,18,18,0.35) 0%, rgba(29,29,71,0.15) 100%);
  }

  .tl-item { position: relative; padding-left: 84px; margin-bottom: 14px; }

  .tl-dot {
    position: absolute;
    left: 0; top: 6px;
    width: 54px; height: 54px;
    border-radius: 50%;
    background: var(--cream);
    border: 1.5px solid rgba(110,18,18,0.3);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-ui);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--wine);
    z-index: 1;
    transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
  }
  .tl-item.open .tl-dot, .tl-item:hover .tl-dot {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--cream);
    transform: scale(1.05);
  }

  .tl-card {
    background: var(--cream);
    border: 1px solid rgba(29,29,71,0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: box-shadow 0.3s, border-color 0.3s;
  }
  .tl-item.open .tl-card { box-shadow: var(--shadow); border-color: rgba(29,29,71,0.16); }

  .tl-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
  }
  .tl-trigger:hover { background: rgba(29,29,71,0.02); }

  .tl-trigger-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--navy);
    line-height: 1.25;
  }
  .tl-trigger-title small {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--wine);
    margin-bottom: 4px;
  }

  .tl-arrow {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--pink);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), background 0.25s, color 0.25s;
    font-size: 0.8rem;
    color: var(--wine);
  }
  .tl-item.open .tl-arrow {
    transform: rotate(180deg);
    background: var(--navy);
    color: var(--cream);
  }

  .tl-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.22,1,0.36,1), padding 0.3s;
    padding: 0 28px;
  }
  .tl-item.open .tl-body { max-height: 420px; padding: 0 28px 24px; }
  .tl-body p { font-size: 0.98rem; color: var(--text-soft); line-height: 1.75; }

  @media (max-width: 768px) {
    #metodologia { margin: 0; border-radius: 0; }
    .metod-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 44px; }
    .tl-item { padding-left: 62px; }
    .tl-dot { width: 44px; height: 44px; font-size: 0.54rem; }
    .timeline::before { left: 22px; }
    .tl-trigger { padding: 18px 20px; }
    .tl-body { padding: 0 20px; }
    .tl-item.open .tl-body { padding: 0 20px 20px; }
  }

  /* ─── PROGRAMAS ─── */
  .programas-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 48px;
  }
  .programas-header .section-label { justify-content: center; }
  .programas-header .section-lead { margin: 0 auto; }

  .programas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: stretch;
    max-width: 1240px;
    margin: 0 auto;
  }

  .programa-card {
    border-radius: 28px;
    padding: 44px 34px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s;
  }
  .programa-card:hover { transform: translateY(-8px); box-shadow: 0 28px 72px rgba(29,29,71,0.16); }

  .programa-card-default {
    background: var(--cream);
    border: 1.5px solid rgba(29,29,71,0.1);
  }
  .programa-card-featured {
    background: var(--navy);
    color: var(--cream);
    box-shadow: 0 20px 60px rgba(29,29,71,0.25);
    position: relative;
  }
  /* decorative glow clipped by the card's own radius — no overflow:hidden,
     so the "Mais escolhido" badge can sit outside the card */
  .programa-card-featured::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 88% -8%, rgba(110,18,18,0.55) 0%, transparent 55%);
    pointer-events: none;
  }
  @media (min-width: 1025px) {
    .programa-card-featured { transform: scale(1.04); }
    .programa-card-featured:hover { transform: scale(1.04) translateY(-8px); }
  }
  .programa-card-featured .section-label { color: var(--pink); }
  .programa-card-featured .section-label::before { background: var(--pink); }

  .programa-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--wine);
    color: var(--cream);
    font-family: var(--font-ui);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(110,18,18,0.35);
    z-index: 2;
  }

  .programa-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.55rem;
    margin-bottom: 22px;
    position: relative;
  }
  .icon-default { background: var(--pink); }
  .icon-featured { background: rgba(255,219,224,0.15); }

  .programa-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.45rem;
    margin-bottom: 6px;
    color: inherit;
  }
  .programa-card-default .programa-title { color: var(--navy); }

  .programa-for {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--text-soft);
  }
  .programa-card-featured .programa-for { color: rgba(255,254,238,0.6); }

  .programa-desc {
    font-size: 0.97rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--text-soft);
  }
  .programa-card-featured .programa-desc { color: rgba(255,254,238,0.8); }

  /* carga horária semestral (Sprout / Flourish) */
  .programa-horas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 26px;
  }
  .programa-horas span {
    font-family: var(--font-ui);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 6px 15px;
    border-radius: 50px;
    border: 1.2px solid rgba(29,29,71,0.16);
    background: rgba(29,29,71,0.04);
    color: var(--navy);
    white-space: nowrap;
  }
  .programa-horas em {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-style: italic;
    color: var(--text-soft);
  }
  .programa-card-featured .programa-horas span {
    border-color: rgba(255,254,238,0.26);
    background: rgba(255,254,238,0.08);
    color: var(--cream);
  }
  .programa-card-featured .programa-horas em { color: rgba(255,254,238,0.6); }

  .programa-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 34px;
    flex-grow: 1;
  }
  .programa-features li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.88rem;
    color: var(--text);
  }
  .programa-card-featured .programa-features li { color: rgba(255,254,238,0.85); }
  .programa-features li::before {
    content: '✓';
    font-weight: 700;
    font-family: var(--font-ui);
    color: var(--wine);
    flex-shrink: 0;
    margin-top: 1px;
  }
  .programa-card-featured .programa-features li::before { color: var(--pink); }

  .programa-cta {
    display: block;
    text-align: center;
    padding: 15px 24px;
    border-radius: 50px;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
  }
  .cta-default { background: var(--navy); color: var(--cream); }
  .cta-default:hover { background: var(--wine); transform: translateY(-2px); }
  .cta-featured { background: var(--cream); color: var(--navy); position: relative; }
  .cta-featured:hover { background: var(--pink); transform: translateY(-2px); }
  .cta-ghost { border: 1.5px solid rgba(29,29,71,0.35); color: var(--navy); }
  .cta-ghost:hover { background: var(--navy); border-color: var(--navy); color: var(--cream); }

  @media (max-width: 768px) {
    .programas-grid { grid-template-columns: 1fr; }
    .programa-card { padding: 36px 26px; }
    .programa-card-featured { order: -1; margin-top: 14px; }
  }
  @media (min-width: 769px) and (max-width: 1024px) {
    .programas-grid { grid-template-columns: 1fr; max-width: 520px; }
    .programa-card-featured { order: -1; margin-top: 14px; }
  }

  /* ─── DEPOIMENTOS ─── */
  #depoimentos {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 60%, var(--cream) 100%);
  }
  .depo-inner { max-width: 1240px; margin: 0 auto; }
  .depo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    /* Estreita a grade para o texto em itálico não virar linhas longas demais */
    max-width: 940px;
    margin: 0 auto;
  }
  .depo-card {
    background: var(--cream);
    border: 1px solid rgba(29,29,71,0.08);
    border-radius: 24px;
    padding: 38px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s;
  }
  .depo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }

  .depo-quote-mark {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 0.5;
    color: var(--pink);
    margin-bottom: 22px;
    user-select: none;
  }
  .depo-text {
    font-size: 1.02rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 28px;
    flex-grow: 1;
  }
  /* Ênfase dentro de um texto já em itálico: volta ao normal e ganha peso */
  .depo-text em { font-style: normal; font-weight: 600; color: var(--wine); }
  .depo-author { display: flex; align-items: center; gap: 14px; }
  .depo-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--pink);
    color: var(--wine);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
  }
  .depo-name {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    color: var(--navy);
    line-height: 1.3;
  }
  .depo-name span {
    display: block;
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-top: 2px;
  }
  /* Número ímpar de depoimentos: centraliza o card órfão da última linha */
  .depo-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, calc(50% - 12px));
  }

  @media (max-width: 768px) {
    .depo-grid { grid-template-columns: 1fr; max-width: 560px; }
    .depo-card:last-child:nth-child(odd) { grid-column: auto; width: auto; }
  }

  /* ─── FAQ ─── */
  #faq { padding: 76px 5%; }

  .faq-list { display: flex; flex-direction: column; gap: 12px; }

  .faq-item {
    border: 1.5px solid rgba(29,29,71,0.1);
    border-radius: 18px;
    background: var(--cream);
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s;
  }
  .faq-item.open {
    border-color: rgba(29,29,71,0.25);
    box-shadow: 0 8px 28px rgba(29,29,71,0.08);
  }

  .faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-ui);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--navy);
    transition: background 0.2s;
  }
  .faq-trigger:hover { background: rgba(29,29,71,0.02); }

  .faq-arrow {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--pink);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), background 0.25s, color 0.25s;
    font-size: 0.8rem;
    color: var(--wine);
  }
  .faq-item.open .faq-arrow {
    transform: rotate(180deg);
    background: var(--navy);
    color: var(--cream);
  }

  .faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.22,1,0.36,1), padding 0.3s;
    padding: 0 28px;
  }
  .faq-item.open .faq-body { max-height: 400px; padding: 0 28px 24px; }
  .faq-body p { font-size: 0.98rem; color: var(--text-soft); line-height: 1.75; }

  /* ─── CTA FINAL ─── */
  #contato {
    padding: 76px 5% 96px;
    text-align: center;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  }

  .cta-card {
    background: var(--navy);
    border-radius: 40px;
    padding: 100px 8%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(29,29,71,0.28);
  }
  .cta-card::before {
    content: '';
    position: absolute;
    bottom: -140px; right: -140px;
    width: 440px; height: 440px;
    border-radius: 50%;
    background: var(--wine);
    opacity: 0.22;
    pointer-events: none;
    animation: blobFloat 12s ease-in-out infinite alternate;
  }
  .cta-card::after {
    content: '';
    position: absolute;
    top: -120px; left: -120px;
    width: 340px; height: 340px;
    border-radius: 50%;
    background: var(--pink);
    opacity: 0.07;
    pointer-events: none;
    animation: blobFloat 16s ease-in-out infinite alternate-reverse;
  }

  .cta-card .section-label { color: var(--pink); justify-content: center; position: relative; z-index: 1; }
  .cta-card .section-label::before { background: var(--pink); }
  .cta-card .section-title {
    color: var(--cream);
    text-align: center;
    font-size: clamp(2.2rem, 4.4vw, 3.6rem);
    position: relative;
    z-index: 1;
  }

  .cta-sub {
    font-size: 1.1rem;
    color: rgba(255,254,238,0.7);
    margin: 0 auto 48px;
    max-width: 480px;
    position: relative;
    z-index: 1;
  }

  /* ─── LEAD FORM ─── */
  .lead-form {
    max-width: 560px;
    margin: 0 auto 32px;
    position: relative;
    z-index: 1;
  }
  .lead-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
  }
  .lead-field-full { grid-column: 1 / -1; }
  .lead-form input {
    width: 100%;
    background: rgba(255,254,238,0.08);
    border: 1.5px solid rgba(255,254,238,0.25);
    border-radius: 50px;
    padding: 16px 24px;
    color: var(--cream);
    font-family: var(--font-ui);
    font-size: 0.9rem;
    transition: border-color 0.25s, background 0.25s;
  }
  .lead-form input::placeholder { color: rgba(255,254,238,0.45); }
  .lead-form input:focus {
    outline: none;
    border-color: var(--pink);
    background: rgba(255,254,238,0.12);
  }
  .lead-honey { position: absolute !important; left: -9999px; opacity: 0; height: 0; }
  .lead-submit {
    width: 100%;
    background: var(--pink);
    color: var(--wine);
    border: none;
    cursor: pointer;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 17px 32px;
    border-radius: 50px;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 10px 30px rgba(255,219,224,0.15);
  }
  .lead-submit:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(255,219,224,0.25);
  }
  .lead-submit:disabled { opacity: 0.6; cursor: wait; transform: none; }
  .lead-feedback {
    margin-top: 14px;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--pink);
    min-height: 1.3em;
  }
  .lead-privacy {
    margin-top: 6px;
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: rgba(255,254,238,0.4);
  }
  .lead-divider {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,254,238,0.45);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }
  @media (max-width: 600px) {
    .lead-fields { grid-template-columns: 1fr; }
  }

  .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 44px;
    position: relative;
    z-index: 1;
  }

  .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 19px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 12px 36px rgba(37,211,102,0.35);
  }
  .btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 18px 48px rgba(37,211,102,0.45);
  }

  .btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--cream);
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
    border: 1.5px solid rgba(255,254,238,0.3);
    transition: all 0.25s;
  }
  .btn-instagram:hover { border-color: var(--pink); color: var(--pink); }

  .cta-note {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,254,238,0.4);
    position: relative;
    z-index: 1;
  }

  @media (max-width: 600px) {
    .cta-card { padding: 70px 7%; border-radius: 28px; }
    .cta-buttons .btn-whatsapp, .cta-buttons .btn-instagram { width: 100%; justify-content: center; }
  }

  /* ─── FOOTER ─── */
  /* ─── BANCO DE TALENTOS ─── */
  #banco-talentos {
    background: var(--cream-dark);
    border-top: 1px solid rgba(29,29,71,0.10);
    padding: 78px 5%;
  }
  .talentos-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
  }
  .talentos-selo {
    width: clamp(96px, 11vw, 132px);
    height: auto;
    flex-shrink: 0;
    align-self: center;
  }
  .talentos-text { max-width: 640px; }
  .talentos-title {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 400;
    line-height: 1.24;
    color: var(--navy);
    margin: 14px 0 18px;
  }
  .talentos-title em {
    font-style: italic;
    color: var(--wine);
  }
  .talentos-lead {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-soft);
  }
  .talentos-cta {
    flex-shrink: 0;
    display: inline-block;
    background: var(--navy);
    color: var(--cream);
    padding: 17px 34px;
    border-radius: 50px;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s;
  }
  .talentos-cta:hover {
    background: var(--wine);
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(110,18,18,0.28);
  }
  @media (max-width: 900px) {
    .talentos-inner {
      flex-direction: column;
      align-items: flex-start;
      gap: 32px;
    }
    .talentos-selo { width: 84px; align-self: flex-start; }
  }

  footer {
    background: var(--navy);
    padding: 48px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }

  .footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .footer-logo-text {
    font-family: var(--font-logo);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--cream);
    line-height: 1.1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .footer-logo-text span {
    display: block;
    font-family: var(--font-ui);
    font-weight: 300;
    font-size: 0.5rem;
    letter-spacing: 0.18em;
    color: var(--pink);
  }

  .footer-copy {
    font-family: var(--font-ui);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255,254,238,0.35);
  }

  .footer-links { display: flex; gap: 24px; list-style: none; }
  .footer-links a {
    font-family: var(--font-ui);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,254,238,0.5);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--pink); }

  @media (max-width: 640px) {
    footer { flex-direction: column; text-align: center; gap: 24px; padding: 44px 5%; }
  }

  /* ─── WHATSAPP FLOAT ─── */
  .whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    width: 58px; height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s;
  }
  .whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37,211,102,0.5); }
  .whatsapp-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.5);
    animation: waPulse 2.2s ease-out infinite;
  }
  @keyframes waPulse {
    0%   { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
  }

  /* ─── LOGO DA MARCA ─── */
  .logo-mark {
    height: 46px;
    width: auto;
    flex-shrink: 0;
  }
  /* O arquivo da logo é traço escuro sobre fundo transparente.
     Sobre o navy do rodapé ele sumiria, então é convertido para creme. */
  .logo-mark-light {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.92;
  }

  /* ─── FAÇA PARTE DO TIME (recruitment page) ─── */
  .job-hero-adesivo {
    display: block;
    width: clamp(200px, 24vw, 280px);
    height: auto;
    margin: 0 auto 22px;
  }
  @media (max-width: 768px) {
    .job-hero-adesivo { width: 190px; margin-bottom: 16px; }
  }
  /* O elemento e <section id="home" class="job-hero">. O seletor #home do hero
     da home tem especificidade maior que .job-hero e impunha um grid de duas
     colunas, deixando a coluna da direita vazia. O ID entra aqui para vencer. */
  #home.job-hero {
    display: flex;
    grid-template-columns: none;
    min-height: 88vh;
    padding: 160px 5% 90px;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .job-hero-content { max-width: 760px; position: relative; z-index: 1; margin: 0 auto; }
  .job-hero-content .hero-badge { margin: 0 auto 30px; }
  .job-hero-content .hero-headline { margin-left: auto; margin-right: auto; }
  .job-hero-sub { max-width: 600px; margin-left: auto; margin-right: auto; }

  #visao {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 90px;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
  }
  .visao-visual { position: relative; }
  .visao-quote {
    background: var(--navy);
    color: var(--cream);
    border-radius: 28px 140px 28px 28px;
    padding: 56px 44px;
    box-shadow: var(--shadow-lift);
    position: relative;
  }
  .visao-quote .depo-quote-mark { margin-bottom: 14px; }
  .visao-quote p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.6;
  }
  @media (max-width: 768px) {
    #visao { grid-template-columns: 1fr; gap: 56px; }
    .visao-visual { order: -1; }
  }

  #perfil { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%); }
  .perfil-inner { max-width: 1000px; margin: 0 auto; }

  .criteria-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 40px;
    max-width: 900px;
    margin-bottom: 8px;
  }
  .criteria-grid li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 1rem;
    color: var(--text);
    line-height: 1.5;
  }
  .criteria-grid li::before {
    content: '✓';
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 0.7rem;
    color: var(--wine);
    background: var(--pink);
    width: 22px; height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }
  @media (max-width: 700px) { .criteria-grid { grid-template-columns: 1fr; } }

  .perfil-note {
    margin-top: 56px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: var(--cream);
    border: 1px solid rgba(29,29,71,0.08);
    border-radius: 20px;
    padding: 28px 32px;
    max-width: 720px;
    box-shadow: var(--shadow-xs);
  }
  .perfil-note-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--pink);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
  }
  .perfil-note p { font-size: 0.98rem; color: var(--text-soft); line-height: 1.7; }
  .perfil-note strong { color: var(--navy); }

  @media (max-width: 600px) { .perfil-note { flex-direction: column; padding: 24px; } }

  .cultura-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  @media (max-width: 1024px) { .cultura-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px)  { .cultura-grid { grid-template-columns: 1fr; } }

  /* ─── UTILITY ─── */
  .text-center { text-align: center; }
  .mt-4 { margin-top: 16px; }
  .relative { position: relative; }
