  /* ============ RESET ============ */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: auto; }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
  ul { list-style: none; }
  svg { display: block; }

  /* ============ TOKENS ============ */
  :root{
    --white:        #FFFFFF;
    --navy:          #0B2545;  /* azul-marinho — texto principal e fundo escuro/rodapé */
    --navy-soft:     rgba(11,37,69,.68);
    --navy-faint:    rgba(11,37,69,.14);

    --blue:          #1450C4;  /* azul de marca — logo, ícones, links secundários (7.06:1 s/ branco) */
    --blue-onDark:   #78AAFF;  /* azul claro — TEXTO pequeno sobre navy (6.59:1) */
    --blue-tint:     #E8F0FD;  /* tingimento leve p/ fundos de chip/ícone */

    --red:           #D7263D;  /* vermelho de marca — CTA, destaque, hover (4.96:1 s/ branco) */
    --red-onDark:    #FF8C82;  /* vermelho claro — TEXTO pequeno sobre navy (6.83:1) */
    --red-tint:      #FCE9EA;

    --font-body: 'Manrope', system-ui, sans-serif;
    --font-logo: 'Fraunces', Georgia, serif;

    --section-pad-y: clamp(4.5rem, 9vw, 9rem);
    --container-pad-x: clamp(1.25rem, 6vw, 4.5rem);
    --max-width: 1360px;

    --ease-out: cubic-bezier(.16,1,.3,1);
  }

  @media (prefers-color-scheme: dark){ /* mantém marca consistente, sem dark mode automático */ }

  body{
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(1rem, .95rem + .2vw, 1.1875rem);
    line-height: 1.6;
    color: var(--navy);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  .container{
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: var(--container-pad-x);
  }

  section{ padding-block: var(--section-pad-y); }

  h1, h2, h3 { font-family: var(--font-body); line-height: 1.1; letter-spacing: -0.01em; }

  h2.section-title{
    font-weight: 700;
    font-size: clamp(2rem, 1.5rem + 2vw, 2.75rem);
    max-width: 16ch;
  }

  p.section-lede{
    max-width: 46ch;
    color: var(--navy-soft);
    margin-top: 1rem;
  }

  .eyebrow{
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1.25rem;
  }
  .eyebrow::before{
    content: "";
    width: 28px; height: 1px;
    background: var(--red);
  }

  a.link-underline{
    position: relative;
    font-weight: 600;
    color: var(--red);
    padding-bottom: 2px;
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: background-size .4s var(--ease-out), color .3s ease;
  }
  a.link-underline:hover, a.link-underline:focus-visible{
    background-size: 0% 1px;
    color: var(--navy);
  }

  /* focus visibility (a11y) */
  a:focus-visible, button:focus-visible, input:focus-visible{
    outline: 2px solid var(--blue);
    outline-offset: 3px;
    border-radius: 2px;
  }

  .skip-link{
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--navy);
    color: var(--white);
    padding: .9rem 1.4rem;
    z-index: 999;
    font-weight: 600;
  }
  .skip-link:focus{ left: 1rem; top: 1rem; }

  /* ============ BUTTONS ============ */
  .btn{
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 1.05rem 2.1rem;
    border: 1px solid currentColor;
    border-radius: 2px;
    transition: background-color .4s var(--ease-out), color .4s var(--ease-out), border-color .4s var(--ease-out), transform .3s var(--ease-out);
    white-space: nowrap;
  }
  .btn:hover, .btn:focus-visible{ transform: translateY(-2px); }

  .btn--ghost-light{ color: var(--white); border-color: rgba(255,255,255,.7); }
  .btn--ghost-light:hover{ background: var(--red); color: var(--white); border-color: var(--red); }

  .btn--solid-dark{ background: var(--navy); color: var(--white); border-color: var(--navy); }
  .btn--solid-dark:hover{ background: var(--red); border-color: var(--red); color: var(--white); }

  .btn--ghost-dark{ color: var(--navy); border-color: var(--navy-faint); }
  .btn--ghost-dark:hover{ background: var(--navy); color: var(--white); border-color: var(--navy); }

  .btn svg{ width: 16px; height: 16px; transition: transform .35s var(--ease-out); }
  .btn:hover svg{ transform: translateX(4px); }

  /* ============ WATERMARK (selo em todas as fotos) ============ */
  .wm-badge{
    position: absolute;
    right: 0;
    bottom: 0;
    width: clamp(30px, 5%, 60px);
    z-index: 5;
    border-top-left-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(6,16,36,.4);
    pointer-events: none;
    line-height: 0;
  }
  .wm-badge img{
    display: block;
    width: 100%;
    height: auto;
  }

  /* ============ WHATSAPP FLUTUANTE ============ */
  .whatsapp-float{
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(6,16,36,.35);
    z-index: 200;
    transition: transform .3s var(--ease-out), box-shadow .3s ease;
  }
  .whatsapp-float:hover{ transform: scale(1.08); box-shadow: 0 8px 26px rgba(6,16,36,.42); }
  .whatsapp-float svg{ width: 30px; height: 30px; display: block; }
  @media (max-width: 480px){
    .whatsapp-float{ right: 1rem; bottom: 1rem; width: 52px; height: 52px; }
    .whatsapp-float svg{ width: 26px; height: 26px; }
  }

  /* ============ HEADER ============ */
  .site-header{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding-block: 1.4rem;
    transition: background-color .5s var(--ease-out), padding .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .5s ease;
    border-bottom: 1px solid transparent;
  }
  .site-header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .site-header.is-scrolled{
    background: rgba(255,255,255,.92);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding-block: .85rem;
    box-shadow: 0 1px 0 rgba(11,37,69,.08);
  }

  .logo{
    display: inline-flex;
    align-items: center;
  }
  .logo-badge{
    display: inline-flex;
    align-items: center;
    background: var(--white);
    border-radius: 999px;
    padding: .5rem 1rem;
    box-shadow: 0 6px 20px -8px rgba(6,16,36,.35);
    transition: padding .5s var(--ease-out), box-shadow .5s ease;
  }
  .site-header.is-scrolled .logo-badge{ box-shadow: 0 2px 10px -4px rgba(6,16,36,.18); padding: .4rem .85rem; }
  .logo-badge img{
    height: 42px;
    width: auto;
    display: block;
  }
  @media (max-width: 480px){ .logo-badge img{ height: 32px; } .logo-badge{ padding: .4rem .75rem; } }

  .main-nav{ display: flex; align-items: center; gap: clamp(1.4rem, 2vw, 2.4rem); }
  .main-nav a{
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .03em;
    color: var(--white);
    position: relative;
    padding-block: .3rem;
    transition: color .4s ease;
  }
  .site-header.is-scrolled .main-nav a{ color: var(--navy); }
  .main-nav a::after{
    content: "";
    position: absolute; left: 0; bottom: -2px;
    width: 100%; height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .4s var(--ease-out);
  }
  .main-nav a:hover::after, .main-nav a:focus-visible::after{ transform: scaleX(1); transform-origin: left; }

  .header-actions{ display: flex; align-items: center; gap: 1.1rem; color: var(--white); }
  .site-header.is-scrolled .header-actions{ color: var(--navy); }
  .header-actions button, .header-actions svg{ width: 20px; height: 20px; }
  .header-actions .icon-btn{ display: flex; transition: color .3s ease, transform .3s ease; }
  .header-actions .icon-btn:hover{ color: var(--red); transform: translateY(-1px); }

  .nav-toggle{ display: none; }

  @media (max-width: 860px){
    .main-nav{
      position: fixed; inset: 0;
      background: var(--white);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      transform: translateY(-100%);
      opacity: 0;
      transition: transform .5s var(--ease-out), opacity .4s ease;
      pointer-events: none;
    }
    .main-nav.is-open{ transform: translateY(0); opacity: 1; pointer-events: auto; }
    .main-nav a{ color: var(--navy); font-size: 1.4rem; }
    .nav-toggle{
      display: flex; flex-direction: column; justify-content: center; gap: 5px;
      width: 26px; height: 20px; z-index: 200;
    }
    .nav-toggle span{
      display: block; height: 1.5px; width: 100%;
      background: currentColor;
      transition: transform .4s var(--ease-out), opacity .3s ease;
    }
    body.nav-is-open .nav-toggle{ color: var(--navy); }
    body.nav-is-open .nav-toggle span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
    body.nav-is-open .nav-toggle span:nth-child(2){ opacity: 0; }
    body.nav-is-open .nav-toggle span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }
    body.nav-is-open{ overflow: hidden; }
  }

  /* ============ HERO ============ */
  .hero{
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    padding-block: clamp(6rem, 12vw, 9rem) clamp(3rem, 6vw, 5rem);
    overflow: hidden;
  }
  .hero-media{ position: absolute; inset: 0; z-index: -1; }
  .hero-media img{
    width: 100%; height: 100%; object-fit: cover;
    object-position: center 45%;
    transform: scale(1.12);
  }
  .hero-media::after{
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(6,16,36,.4) 0%, rgba(6,16,36,.18) 40%, rgba(6,16,36,.68) 100%);
  }
  .hero-content{ max-width: 900px; position: relative; }
  .hero-title{
    font-weight: 200;
    font-size: clamp(2.75rem, 5vw + 1rem, 5.75rem);
    line-height: 1.02;
    color: var(--white);
    letter-spacing: -0.01em;
  }
  .hero-title em{ font-style: normal; color: var(--red); font-weight: 300; }
  .hero-sub{
    color: rgba(255,255,255,.88);
    max-width: 42ch;
    margin-top: 1.5rem;
    font-size: clamp(1rem, .95rem + .2vw, 1.15rem);
  }
  .hero-cta{ margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap; }

  .scroll-hint{
    position: absolute;
    right: var(--container-pad-x);
    bottom: clamp(2rem, 5vw, 3.5rem);
    display: flex; align-items: center; gap: .7rem;
    color: rgba(255,255,255,.75);
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
  }
  .scroll-hint .line{ width: 1px; height: 46px; background: rgba(255,255,255,.4); position: relative; overflow: hidden; }
  .scroll-hint .line::after{
    content:""; position: absolute; top: 0; left: 0; width: 100%; height: 40%;
    background: var(--red);
    animation: scrollLine 2.2s ease-in-out infinite;
  }
  @keyframes scrollLine{ 0%{ transform: translateY(-100%);} 100%{ transform: translateY(250%);} }
  @media (max-width: 640px){ .scroll-hint{ display: none; } }

  /* ============ SOBRE ============ */
  .about{ background: var(--white); }
  .about .container{
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(3rem, 6vw, 5rem);
  }
  @media (min-width: 900px){
    .about .container{ grid-template-columns: .95fr 1.05fr; align-items: center; }
  }
  .about-text p{ margin-top: 1.4rem; color: var(--navy-soft); max-width: 48ch; }
  .about-text .btn{ margin-top: 2.25rem; }

  .about-media{ position: relative; aspect-ratio: 4/5; max-width: 560px; }
  .about-media .frame{
    position: absolute; inset: 0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(11,37,69,.3);
  }
  .about-media .frame img{ width: 100%; height: 100%; object-fit: cover; }
  .about-media .frame--back{
    width: 72%; height: 62%;
    left: auto; right: -6%; top: -8%; bottom: auto;
  }
  .about-media .frame--front{
    width: 78%; height: 68%;
    left: -6%; bottom: -8%; top: auto; right: auto;
  }
  .carousel-nav{
    position: absolute;
    left: -6%; bottom: -8%;
    transform: translateY(120%);
    display: flex; gap: .6rem;
    z-index: 3;
  }
  .carousel-nav button{
    width: 42px; height: 42px;
    border: 1px solid var(--navy-faint);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy);
    background: var(--white);
    transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s ease;
  }
  .carousel-nav button:hover{ background: var(--navy); color: var(--white); border-color: var(--navy); transform: translateY(-2px); }
  .carousel-nav svg{ width: 16px; height: 16px; }

  /* ============ DIFERENCIAIS ============ */
  .process{ background: var(--white); }
  .process-grid{
    margin-top: clamp(2.5rem, 5vw, 4rem);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }
  @media (min-width: 620px){ .process-grid{ grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1080px){ .process-grid{ grid-template-columns: repeat(5, 1fr); gap: 1.75rem; } }

  .process-item .step-num{
    font-family: var(--font-logo);
    font-style: italic;
    color: var(--blue);
    font-size: .95rem;
    margin-bottom: 1rem;
    display: block;
  }
  .process-item .icon-wrap{
    width: 58px; height: 58px;
    border-radius: 50%;
    background: var(--blue-tint);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.4rem;
    transition: background .4s ease, transform .4s var(--ease-out);
  }
  .process-item:hover .icon-wrap{ background: var(--red); transform: translateY(-3px); }
  .process-item .icon-wrap svg{ width: 24px; height: 24px; color: var(--blue); stroke-width: 1.4; transition: color .4s ease; }
  .process-item:hover .icon-wrap svg{ color: var(--white); }
  .process-item h3{ font-size: 1rem; font-weight: 700; letter-spacing: .02em; max-width: 20ch; }
  .process-item p{ margin-top: .75rem; color: var(--navy-soft); font-size: .9375rem; max-width: 30ch; }

  /* ============ EXPERIÊNCIAS ============ */
  .experiences{ background: var(--white); }
  .experiences-head{ display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; }
  .experiences-grid{
    margin-top: clamp(2.5rem, 5vw, 4rem);
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  @media (min-width: 700px){ .experiences-grid{ grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1100px){ .experiences-grid{ grid-template-columns: repeat(4, 1fr); } }

  .exp-card{
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 4px;
    overflow: hidden;
    display: flex; align-items: flex-end;
    isolation: isolate;
  }
  .exp-card img{
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.05);
    transition: transform 1.1s var(--ease-out), filter .6s ease;
    z-index: -2;
  }
  .exp-card::after{
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(6,14,30,0) 35%, rgba(6,14,30,.8) 100%);
    transition: opacity .5s ease;
    z-index: -1;
  }
  .exp-card:hover img, .exp-card:focus-visible img{ transform: scale(1.14); }
  .exp-card-body{ padding: 1.75rem; color: var(--white); width: 100%; }
  .exp-card-body svg{ width: 26px; height: 26px; margin-bottom: .9rem; color: var(--red); }
  .exp-card-body h3{ font-size: 1.3rem; font-weight: 600; }
  .exp-card-body span{
    display: block; margin-top: .4rem; font-size: .8125rem;
    color: rgba(255,255,255,.75); letter-spacing: .04em;
    max-height: 0; opacity: 0; overflow: hidden;
    transition: max-height .5s var(--ease-out), opacity .4s ease .05s;
  }
  .exp-card:hover .exp-card-body span, .exp-card:focus-visible .exp-card-body span{ max-height: 3rem; opacity: 1; }

  /* ============ BANNER ============ */
  .banner{
    position: relative;
    padding-block: clamp(7rem, 16vw, 11rem);
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    overflow: hidden;
  }
  .banner-media{ position: absolute; inset: 0; z-index: -1; }
  .banner-media img{ width: 100%; height: 100%; object-fit: cover; transform: scale(1.15); }
  .banner-media::after{ content:""; position: absolute; inset: 0; background: rgba(6,16,36,.5); }
  .banner-quote{
    max-width: 900px;
    color: var(--white);
    font-weight: 200;
    font-size: clamp(1.75rem, 2vw + 1.2rem, 3.25rem);
    line-height: 1.3;
    padding-inline: 1rem;
  }
  .banner-quote span{ color: var(--red); font-weight: 300; }
  .banner-attrib{ margin-top: 2rem; color: rgba(255,255,255,.7); font-size: .8125rem; letter-spacing: .14em; text-transform: uppercase; }
  .banner-cta{ margin-top: 2.5rem; display: flex; justify-content: center; }

  /* ============ INSPIRE-SE ============ */
  .journal{ background: var(--white); }
  .journal-grid{
    margin-top: clamp(2.5rem, 5vw, 4rem);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.75rem 1.75rem;
  }
  @media (min-width: 640px){ .journal-grid{ grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1100px){ .journal-grid{ grid-template-columns: repeat(3, 1fr); } }

  .journal-card .thumb{
    position: relative;
    aspect-ratio: 4/3; border-radius: 4px; overflow: hidden; margin-bottom: 1.4rem;
  }
  .journal-card .thumb img{ width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
  .journal-card:hover .thumb img{ transform: scale(1.07); }
  .journal-card .cat{ font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); }
  .journal-card h3{ margin-top: .6rem; font-size: 1.25rem; font-weight: 600; line-height: 1.3; }
  .journal-card p{ margin-top: .6rem; color: var(--navy-soft); font-size: .9375rem; }
  .journal-card .link-underline{ display: inline-block; margin-top: 1rem; font-size: .875rem; }

  /* ============ FOOTER ============ */
  .site-footer{ background: var(--navy); color: var(--white); padding-block: clamp(4rem, 8vw, 6rem) 2rem; }
  .footer-grid{
    display: grid; gap: 3rem;
    grid-template-columns: 1fr;
  }
  @media (min-width: 760px){ .footer-grid{ grid-template-columns: 1.3fr .8fr .8fr .9fr; } }
  .footer-logo{ display: inline-flex; align-items: center; background: var(--white); border-radius: 999px; padding: .6rem 1.2rem; }
  .footer-logo img{ height: 36px; width: auto; display: block; }
  .footer-tag{ margin-top: 1.1rem; color: rgba(255,255,255,.68); max-width: 32ch; }
  .footer-col h4{ font-size: .8125rem; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-onDark); margin-bottom: 1.2rem; }
  .footer-col p, .footer-col a{ color: rgba(255,255,255,.78); display: block; margin-bottom: .6rem; font-size: .9375rem; transition: color .3s ease; }
  .footer-col a:hover{ color: var(--red-onDark); }
  .footer-social{ display: flex; gap: .9rem; margin-top: .3rem; }
  .footer-social a{
    width: 38px; height: 38px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.22);
    display: flex; align-items: center; justify-content: center;
    transition: border-color .3s ease, background .3s ease, transform .3s ease, color .3s ease;
  }
  .footer-social svg{ width: 16px; height: 16px; }
  .footer-social a:hover{ background: var(--red); border-color: var(--red); color: var(--white); transform: translateY(-2px); }
  .footer-bottom{
    margin-top: clamp(3rem, 6vw, 4.5rem);
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255,255,255,.14);
    display: flex; flex-wrap: wrap; gap: 1rem;
    justify-content: space-between;
    font-size: .8125rem;
    color: rgba(255,255,255,.55);
  }
  .footer-bottom a{ color: rgba(255,255,255,.55); }
  .footer-bottom a:hover{ color: var(--red-onDark); }

  /* ============ REVEAL UTILS (fallback sem JS / reduced motion) ============ */
  [data-reveal]{ visibility: visible; }
  @media (prefers-reduced-motion: reduce){
    *{ animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  }

  .visually-hidden{
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
  }

  /* ============ PÁGINAS INTERNAS (experiências / blog) ============ */
  .breadcrumb{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 99;
  }
  .page-hero{
    position: relative;
    min-height: 62svh;
    display: flex;
    align-items: flex-end;
    padding-block: clamp(6rem, 12vw, 9rem) clamp(3rem, 6vw, 4.5rem);
    overflow: hidden;
  }
  .page-hero .hero-media{ position: absolute; inset: 0; z-index: -1; }
  .page-hero .hero-media img{
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.1);
  }
  .page-hero .hero-media::after{
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(6,16,36,.45) 0%, rgba(6,16,36,.2) 40%, rgba(6,16,36,.72) 100%);
  }
  .page-hero .container{ position: relative; }
  .page-hero .eyebrow{ color: var(--red-onDark); }
  .page-hero .eyebrow::before{ background: var(--red-onDark); }
  .page-hero h1{
    font-weight: 200;
    font-size: clamp(2.5rem, 4vw + 1rem, 4.5rem);
    line-height: 1.03;
    color: var(--white);
    max-width: 18ch;
  }
  .page-hero h1 em{ font-style: normal; color: var(--red); font-weight: 300; }
  .page-hero .page-hero-sub{
    color: rgba(255,255,255,.88);
    max-width: 52ch;
    margin-top: 1.25rem;
    font-size: clamp(1rem, .95rem + .2vw, 1.15rem);
  }

  .article-section{ background: var(--white); }
  .article-layout{
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 5vw, 4rem);
  }
  @media (min-width: 960px){
    .article-layout{ grid-template-columns: 1.3fr .7fr; align-items: start; }
  }
  .article-content p{ color: var(--navy-soft); margin-top: 1.3rem; max-width: 62ch; }
  .article-content p:first-child{ margin-top: 0; }
  .article-content h2{
    margin-top: 2.75rem;
    font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem);
    font-weight: 700;
  }
  .article-content h2:first-child{ margin-top: 0; }

  .pull-quote{
    margin: 2.5rem 0;
    padding-left: 1.5rem;
    border-left: 2px solid var(--red);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: clamp(1.15rem, 1rem + .6vw, 1.5rem);
    line-height: 1.4;
    color: var(--navy);
    max-width: 46ch;
  }

  .content-gallery{
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .content-gallery figure{ position: relative; border-radius: 4px; overflow: hidden; aspect-ratio: 4/3; }
  .content-gallery img{ width: 100%; height: 100%; object-fit: cover; }
  @media (max-width: 560px){ .content-gallery{ grid-template-columns: 1fr; } }

  .article-aside{
    background: var(--blue-tint);
    border-radius: 4px;
    padding: clamp(1.75rem, 3vw, 2.5rem);
    position: sticky;
    top: 7rem;
  }
  .article-aside h3{ font-size: 1.05rem; font-weight: 700; }
  .article-aside p{ margin-top: .75rem; color: var(--navy-soft); font-size: .9375rem; }
  .article-aside .btn{ margin-top: 1.5rem; width: 100%; justify-content: center; }
  .article-aside dl{ margin-top: 1.5rem; display: grid; gap: .85rem; }
  .article-aside dt{ font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--blue); font-weight: 700; }
  .article-aside dd{ font-size: .9375rem; color: var(--navy-soft); margin-top: .15rem; }

  .back-link{
    display: inline-flex; align-items: center; gap: .6rem;
    font-size: .8125rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    color: var(--navy-soft);
    transition: color .3s ease, gap .3s ease;
  }
  .back-link svg{ width: 16px; height: 16px; transition: transform .3s ease; }
  .back-link:hover{ color: var(--red); gap: .85rem; }
  .back-link:hover svg{ transform: translateX(-3px); }

  .related-strip{ background: var(--white); padding-top: 0; }
  .related-strip h2.section-title{ max-width: none; }

  .cta-block{
    position: relative;
    background: var(--navy);
    color: var(--white);
    text-align: center;
    padding-block: clamp(4.5rem, 9vw, 6.5rem);
  }
  .cta-block h2{
    font-weight: 200;
    font-size: clamp(1.9rem, 1.4rem + 2vw, 3rem);
    max-width: 22ch;
    margin-inline: auto;
  }
  .cta-block h2 em{ font-style: normal; color: var(--red); font-weight: 400; }
  .cta-block p{ margin-top: 1rem; color: rgba(255,255,255,.72); max-width: 44ch; margin-inline: auto; }
  .cta-block .hero-cta{ justify-content: center; margin-top: 2.25rem; }

  /* ============ INSTAGRAM PROMO ============ */
  .insta-promo{
    position: relative;
    background: radial-gradient(120% 160% at 15% 0%, rgba(20,80,196,.55) 0%, rgba(11,37,69,0) 55%), var(--navy);
    overflow: hidden;
  }
  .insta-promo::after{
    content: "";
    position: absolute;
    right: -8%; bottom: -30%;
    width: clamp(260px, 34vw, 460px);
    height: clamp(260px, 34vw, 460px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(215,38,61,.35) 0%, rgba(215,38,61,0) 70%);
    pointer-events: none;
  }
  .insta-promo .container{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
  }
  .insta-promo-icon{
    width: 62px; height: 62px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--red) 0%, var(--blue) 100%);
    margin-bottom: .5rem;
  }
  .insta-promo-icon svg{ width: 30px; height: 30px; color: var(--white); }
  .insta-promo .eyebrow{ color: var(--red-onDark); margin-bottom: 0; }
  .insta-promo .eyebrow::before{ background: var(--red-onDark); }
  .insta-promo h2{
    font-weight: 200;
    font-size: clamp(1.9rem, 1.4rem + 2vw, 3rem);
    color: var(--white);
    max-width: 20ch;
  }
  .insta-promo h2 em{ font-style: normal; color: var(--red-onDark); font-weight: 400; }
  .insta-promo p{ color: rgba(255,255,255,.75); max-width: 46ch; }
  .insta-promo .hero-cta{ margin-top: .75rem; justify-content: center; }
  .insta-promo .btn--ghost-light:hover{ background: var(--white); color: var(--navy); border-color: var(--white); }

  /* ============ DEPOIMENTOS ============ */
  .testimonials{ background: var(--white); }
  .testimonials-rating{
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .9375rem;
    color: var(--navy-soft);
    white-space: nowrap;
  }
  .testimonials-rating strong{ color: var(--navy); font-size: 1.05rem; }
  .testimonials-rating .stars{ color: var(--red); letter-spacing: 1px; font-size: .9rem; }
  .testimonials-grid{
    margin-top: clamp(2.5rem, 5vw, 4rem);
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  @media (min-width: 760px){ .testimonials-grid{ grid-template-columns: repeat(3, 1fr); } }
  .testimonial-card{
    background: var(--blue-tint);
    border-radius: 4px;
    padding: clamp(1.75rem, 3vw, 2.25rem);
    display: flex;
    flex-direction: column;
  }
  .testimonial-card .stars{ color: var(--red); letter-spacing: 2px; font-size: 1rem; }
  .testimonial-card p{
    margin-top: 1rem;
    color: var(--navy);
    font-size: .9375rem;
    line-height: 1.6;
    flex: 1;
  }
  .testimonial-card footer{
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .15rem;
  }
  .testimonial-card cite{
    font-style: normal;
    font-weight: 700;
    color: var(--navy);
    font-size: .9375rem;
  }
  .testimonial-card footer span{
    font-size: .8125rem;
    color: var(--navy-soft);
  }

  /* ============ MAIS VENDIDOS ============ */
  .bestsellers{ background: var(--blue-tint); }
  .bestsellers-grid{
    margin-top: clamp(2.5rem, 5vw, 4rem);
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  @media (min-width: 700px){ .bestsellers-grid{ grid-template-columns: repeat(2, 1fr); } }

  .bestseller-card{
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px -24px rgba(11,37,69,.35);
    transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
  }
  .bestseller-card:hover{ transform: translateY(-4px); box-shadow: 0 26px 46px -22px rgba(11,37,69,.42); }

  .bestseller-media{
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
  }
  .bestseller-media img{
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.04);
    transition: transform 1.1s var(--ease-out);
  }
  .bestseller-card:hover .bestseller-media img{ transform: scale(1.12); }

  .bestseller-ribbon{
    position: absolute;
    top: 14px; left: 14px;
    z-index: 2;
    display: inline-flex; align-items: center; gap: .4rem;
    background: var(--red);
    color: var(--white);
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .4rem .75rem;
    border-radius: 999px;
    box-shadow: 0 6px 16px -6px rgba(215,38,61,.6);
  }
  .bestseller-ribbon svg{ width: 12px; height: 12px; }

  .bestseller-body{
    padding: 1.5rem 1.6rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .bestseller-body h3{ font-size: 1.25rem; font-weight: 700; color: var(--navy); line-height: 1.25; }
  .bestseller-body .bestseller-tag{
    display: block; margin-top: .3rem; font-size: .75rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase; color: var(--blue);
  }
  .bestseller-body p{ margin-top: .85rem; color: var(--navy-soft); font-size: .9375rem; flex: 1; }
  .bestseller-body .btn{ margin-top: 1.4rem; align-self: flex-start; }
