*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    :root {
      --navy:      #0d4564;
      --navy-dark: #092e42;
      --navy-deep: #061f2e;
      --orange:    #e98221;
      --orange-lt: rgba(233,130,33,.12);
      --light:     #f4f7fa;
      --gray:      #6b7280;
      --white:     #ffffff;
      --radius:    14px;
      --shadow:    0 8px 32px rgba(13,69,100,.14);
    }

    body {
      font-family: 'Inter', sans-serif;
      color: #1a2332;
      background: var(--white);
      line-height: 1.65;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -webkit-tap-highlight-color: transparent;
    }
    html { overflow-x: hidden; }
    * { box-sizing: border-box; }
    button, a { touch-action: manipulation; }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    /* ── PAGES ── */
    .page { display: none !important; }
    .page.active { display: block !important; }

    /* ── NAVBAR ── */
    .navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      background: rgba(255,255,255,.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(13,69,100,.07);
      transition: box-shadow .3s;
    }
    .navbar.scrolled { box-shadow: 0 4px 24px rgba(13,69,100,.12); }
    .navbar__inner {
      max-width: 1180px; margin: 0 auto; padding: 0 28px;
      display: flex; align-items: center; justify-content: space-between; height: 114px;
    }
    .navbar__logo {
      display: flex; align-items: center; gap: 12px; cursor: pointer;
    }
    .navbar__logo img { height: 100px; width: auto; }
    .navbar__nav {
      display: flex; align-items: center; gap: 36px; list-style: none;
    }
    .navbar__nav a {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700; font-size: 1rem; color: var(--navy);
      letter-spacing: .03em; transition: color .2s; cursor: pointer;
    }
    .navbar__nav a:hover, .navbar__nav a.active-link { color: var(--orange); }
    .navbar__cta {
      background: var(--orange); color: var(--white);
      font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .85rem;
      padding: 10px 24px; border-radius: 999px; border: none;
      cursor: pointer; transition: transform .2s, box-shadow .2s;
      white-space: nowrap;
    }
    .navbar__cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(233,130,33,.35); }
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 10px; background: none; border: none;
      min-width: 44px; min-height: 44px; align-items: center; justify-content: center;
    }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }
    .mobile-nav {
      display: none; position: fixed; inset: 114px 0 0 0;
      background: var(--white); z-index: 199; padding: 32px 28px;
      flex-direction: column; gap: 8px; overflow-y: auto;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-family: 'Montserrat', sans-serif; font-size: 1.1rem; font-weight: 700;
      color: var(--navy); padding: 14px 0; border-bottom: 1px solid rgba(13,69,100,.07);
      cursor: pointer; transition: color .2s;
    }
    .mobile-nav a:hover { color: var(--orange); }
    .mobile-nav .m-cta {
      margin-top: 16px; background: var(--orange); color: var(--white);
      text-align: center; border-radius: 999px; padding: 14px;
    }

    /* ── UTILITIES ── */
    .container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
    .section { padding: 100px 0; }
    .section--alt { background: var(--light); }
    .section--navy { background: var(--navy); color: var(--white); }
    .section--deep { background: var(--navy-deep); color: var(--white); }
    .badge {
      display: inline-block; background: var(--orange-lt); color: var(--orange);
      font-family: 'Montserrat', sans-serif; font-size: .72rem; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase;
      padding: 6px 16px; border-radius: 999px; margin-bottom: 18px;
    }
    .badge--white { background: rgba(255,255,255,.15); color: var(--white); }
    .section-title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 800; line-height: 1.18; margin-bottom: 18px;
    }
    .section-title span { color: var(--orange); }
    .section-sub {
      font-size: 1.05rem; color: var(--gray); max-width: 580px; margin-bottom: 44px; line-height: 1.7;
    }
    .section--navy .section-sub, .section--deep .section-sub { color: rgba(255,255,255,.7); }
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 30px; border-radius: 999px; font-family: 'Montserrat', sans-serif;
      font-weight: 700; font-size: .92rem; cursor: pointer; border: none;
      transition: transform .2s, box-shadow .2s;
    }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.2); }
    .btn--primary { background: var(--orange); color: var(--white); }
    .btn--outline { background: transparent; color: var(--orange); border: 2px solid var(--orange); }
    .btn--outline:hover { background: var(--orange); color: var(--white); }
    .btn--white { background: var(--white); color: var(--navy); }

    /* ══════════════════════════════════
       HOME PAGE
    ══════════════════════════════════ */

    /* HERO */
    .hero {
      min-height: 100vh; display: flex; align-items: center;
      position: relative; overflow: hidden; padding-top: 114px;
    }
    .hero__bg {
      position: absolute; inset: 0;
      background:
        linear-gradient(135deg, rgba(9,46,66,.88) 0%, rgba(13,69,100,.80) 55%, rgba(6,31,46,.92) 100%),
        url('/assets/img/1d830fd4c91b.jpg') center/cover no-repeat;
    }
    .hero__bg::after {
      content: ''; position: absolute; inset: 0;
      background: repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,.015) 60px, rgba(255,255,255,.015) 61px);
    }
    .hero__content {
      position: relative; z-index: 2; padding: 80px 0;
      display: grid;
      grid-template-columns: 1fr auto;
      grid-template-rows: auto auto auto;
      align-items: center;
      gap: 0 72px;
    }
    .hero__eyebrow {
      grid-column: 1; grid-row: 1;
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(233,130,33,.18); border: 1px solid rgba(233,130,33,.4);
      color: var(--orange); font-family: 'Montserrat', sans-serif;
      font-size: .78rem; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; padding: 8px 18px; border-radius: 999px; margin-bottom: 44px;
      width: fit-content;
    }
    .hero__eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); animation: pulse 1.8s infinite; }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
    .hero__title {
      grid-column: 1; grid-row: 2;
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(1.6rem, 3.2vw, 2.6rem);
      font-weight: 800; color: var(--white); line-height: 1.25;
      margin-bottom: 44px; max-width: 640px; text-align: left;
    }
    .hero__title span { color: var(--orange); }
    .hero__desc {
      font-size: 1.18rem; color: rgba(255,255,255,.82);
      max-width: 560px; margin-bottom: 44px; line-height: 1.75;
    }
    .hero__ctas {
      grid-column: 1; grid-row: 3;
      display: flex; gap: 16px; flex-wrap: wrap; justify-content: flex-start;
    }
    /* Vertical stats — right column */
    .hero__stats {
      grid-column: 2; grid-row: 1 / 4;
      display: flex; flex-direction: column; gap: 0;
      border-left: 2px solid rgba(255,255,255,.15);
      padding-left: 48px;
      align-self: center;
    }
    .hero__stat-item {
      padding: 20px 0;
      border-bottom: 1px solid rgba(255,255,255,.08);
      transition: transform .25s ease;
    }
    .hero__stat-item:last-child { border-bottom: none; }
    .hero__stat-item:hover { transform: translateX(6px); }
    .hero__stat-value {
      font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 800;
      color: var(--orange); line-height: 1; margin-bottom: 5px;
    }
    .hero__stat-label {
      font-size: .72rem; color: rgba(255,255,255,.65);
      line-height: 1.4; max-width: 200px; text-transform: uppercase;
      letter-spacing: .05em; font-weight: 600;
    }
    .hero__stat-sep { display: none; }

    /* TRUST */
    .trust { background: var(--navy-dark); padding: 28px 0; }
    .trust__inner {
      display: flex; align-items: center; justify-content: center;
      gap: 48px; flex-wrap: wrap;
    }
    .trust__item {
      display: flex; align-items: center; gap: 10px;
      color: rgba(255,255,255,.72); font-size: .88rem; font-weight: 500;
    }
    .trust__icon { color: var(--orange); font-size: 1.1rem; }

    /* PARA QUEM */
    .forwhom__grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px; margin-top: 48px;
    }
    .forwhom__card {
      background: var(--white); border: 1px solid rgba(13,69,100,.09);
      border-radius: var(--radius); padding: 32px 26px;
      transition: box-shadow .25s, transform .25s;
    }
    .forwhom__card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
    .forwhom__icon {
      width: 50px; height: 50px; background: var(--orange-lt);
      border-radius: 13px; display: flex; align-items: center;
      justify-content: center; font-size: 1.4rem; margin-bottom: 16px;
      margin-left: auto; margin-right: auto; overflow: hidden;
    }
    .forwhom__icon span {
      display: flex; align-items: center; justify-content: center;
      width: 100%; height: 100%;
      font-style: normal; line-height: 1;
      transform: translateY(1px);
    }
    .forwhom__card h3 { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; text-align: center; }
    .forwhom__card p { font-size: .88rem; color: var(--gray); line-height: 1.6; text-align: center; }

    /* DORES */
    .pain__grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 18px; margin-top: 48px;
    }
    .pain__item {
      display: flex; align-items: flex-start; gap: 16px;
      background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--radius); padding: 26px 22px;
    }
    .pain__num {
      width: 38px; height: 38px; border-radius: 50%; background: var(--orange);
      color: var(--white); font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: .85rem;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .pain__item h3 { font-family: 'Montserrat', sans-serif; font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
    .pain__item p { font-size: .87rem; color: rgba(255,255,255,.68); line-height: 1.6; }
    .pain__callout {
      margin-top: 48px; background: rgba(233,130,33,.15);
      border-left: 4px solid var(--orange); border-radius: 8px;
      padding: 24px 28px; font-size: 1.1rem; font-weight: 600;
      font-style: italic; color: rgba(255,255,255,.92); max-width: 760px;
    }

    /* COMO FUNCIONA */
    .how__steps {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 22px; margin-top: 52px;
    }
    .how__step {
      background: var(--white); border-radius: var(--radius);
      padding: 34px 28px; border: 1px solid rgba(13,69,100,.09);
      position: relative; overflow: hidden;
      transition: box-shadow .25s, transform .25s;
    }
    .how__step:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
    .how__step::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0;
      height: 4px; background: var(--orange);
    }
    .how__step-num {
      font-family: 'Montserrat', sans-serif; font-size: 3.2rem; font-weight: 800;
      color: rgba(13,69,100,.07); line-height: 1; margin-bottom: 10px;
    }
    .how__step h3 { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
    .how__step p { font-size: .87rem; color: var(--gray); line-height: 1.65; }

    /* BENEFÍCIOS */
    .benefits__split {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    .benefits__img {
      border-radius: 20px; overflow: hidden;
      box-shadow: 0 24px 64px rgba(13,69,100,.22);
    }
    .benefits__img img { width: 100%; height: auto; object-fit: contain; display: block; }
    .benefits__list { display: flex; flex-direction: column; gap: 22px; }
    .benefits__item { display: flex; gap: 16px; align-items: flex-start; }
    .benefits__check {
      width: 30px; height: 30px; border-radius: 50%; background: var(--orange);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
    }
    .benefits__check svg { width: 14px; height: 14px; fill: none; stroke: #fff; stroke-width: 2.5; }
    .benefits__item h4 { font-family: 'Montserrat', sans-serif; font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
    .benefits__item p { font-size: .87rem; color: var(--gray); line-height: 1.65; }

    /* DIFERENCIAIS */
    .diff__grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px; margin-top: 48px;
    }
    .diff__card {
      background: var(--white); border-radius: var(--radius);
      padding: 32px 26px; text-align: left;
      border: 1px solid rgba(13,69,100,.09);
      border-top: 3px solid var(--orange);
      transition: box-shadow .25s, transform .25s;
    }
    .diff__card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
    .diff__icon {
      width: 50px; height: 50px; background: var(--orange-lt);
      border-radius: 13px; display: flex; align-items: center;
      justify-content: center; font-size: 1.5rem; margin-bottom: 16px;
      transition: transform .4s cubic-bezier(.34,1.56,.64,1);
    }
    .diff__card:hover .diff__icon { transform: rotate(12deg) scale(1.2); }
    .diff__card h3 { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .diff__card p { font-size: .88rem; color: var(--gray); line-height: 1.6; }

    /* DEPOIMENTOS */
    .testimonials__grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px; margin-top: 48px;
    }
    .testimonial {
      background: var(--white); border-radius: var(--radius);
      padding: 34px; border: 1px solid rgba(13,69,100,.08);
    }
    .testimonial__quote { font-size: 3.2rem; color: var(--orange); line-height: .8; margin-bottom: 14px; font-family: Georgia, serif; }
    .testimonial__text { font-size: .93rem; color: #374151; line-height: 1.75; margin-bottom: 24px; font-style: italic; }
    .testimonial__author { display: flex; align-items: center; gap: 12px; }
    .testimonial__avatar {
      width: 46px; height: 46px; border-radius: 50%; background: var(--navy);
      display: flex; align-items: center; justify-content: center;
      color: var(--white); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .9rem;
    }
    .testimonial__name { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--navy); font-size: .88rem; }
    .testimonial__role { font-size: .78rem; color: var(--gray); }

    /* FAQ */
    .faq__list { max-width: 780px; margin: 52px auto 0; }
    .faq__item { border-bottom: 1px solid rgba(13,69,100,.1); }
    .faq__q {
      display: flex; justify-content: space-between; align-items: center;
      padding: 22px 0; cursor: pointer;
      font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--navy); font-size: .93rem;
      gap: 16px; user-select: none; transition: color .2s;
    }
    .faq__q:hover { color: var(--orange); }
    .faq__icon {
      width: 26px; height: 26px; border-radius: 50%; background: var(--orange);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
      transition: transform .3s;
    }
    .faq__icon svg { width: 12px; height: 12px; fill: none; stroke: #fff; stroke-width: 2.5; }
    .faq__item.open .faq__icon { transform: rotate(45deg); }
    .faq__a {
      max-height: 0; overflow: hidden;
      transition: max-height .35s ease, padding .35s;
      font-size: .9rem; color: var(--gray); line-height: 1.75;
    }
    .faq__item.open .faq__a { max-height: 300px; padding-bottom: 22px; }

    /* FINAL CTA */
    .final-cta {
      padding: 100px 24px;
      background: linear-gradient(135deg, rgba(9,46,66,.90) 0%, rgba(13,69,100,.85) 55%, rgba(6,31,46,.92) 100%), url('/assets/img/1d830fd4c91b.jpg') center/cover no-repeat;
      text-align: center; position: relative; overflow: hidden;
    }
    .final-cta::before { display: none; }
    .final-cta::after { display: none; }
    .final-cta__content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
    .final-cta h2 {
      font-family: 'Montserrat', sans-serif; font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800; color: var(--white); margin-bottom: 18px; line-height: 1.2;
    }
    .final-cta h2 span { color: var(--orange); }
    .final-cta p { font-size: 1.05rem; color: rgba(255,255,255,.75); margin-bottom: 36px; line-height: 1.7; }

    /* ══════════════════════════════════
       SOBRE PAGE
    ══════════════════════════════════ */
    .sobre-hero {
      background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
      padding: 160px 0 100px; color: var(--white); position: relative; overflow: hidden;
    }
    .sobre-hero::before {
      content: ''; position: absolute; right: -100px; top: -100px;
      width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle, rgba(233,130,33,.12) 0%, transparent 70%);
    }
    .sobre-hero__content { position: relative; z-index: 1; max-width: 700px; }
    .sobre-hero h1 {
      font-family: 'Montserrat', sans-serif; font-size: clamp(2.4rem, 5vw, 3.8rem);
      font-weight: 800; line-height: 1.1; margin-bottom: 24px;
    }
    .sobre-hero h1 span { color: var(--orange); }
    .sobre-hero p { font-size: 1.15rem; color: rgba(255,255,255,.8); line-height: 1.75; max-width: 600px; }

    .sobre-missao {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center; margin-top: 0;
    }
    .sobre-missao__img {
      border-radius: 20px; overflow: hidden;
      box-shadow: var(--shadow); aspect-ratio: 3/4; max-height: 500px;
    }
    .sobre-missao__img img { width: 100%; height: 100%; object-fit: cover; }
    .sobre-missao__text { }
    .sobre-missao__text p { font-size: 1rem; color: var(--gray); line-height: 1.8; margin-bottom: 20px; }

    .valores__grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px; margin-top: 52px;
      counter-reset: pilar;
    }
    .valor__card {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--radius); padding: 36px 28px;
      position: relative; overflow: hidden;
      cursor: default;
      transition:
        transform .35s cubic-bezier(.34,1.56,.64,1),
        box-shadow .35s ease,
        background .35s ease,
        border-color .35s ease !important;
    }
    /* Animated top border line */
    .valor__card::before {
      content: '';
      position: absolute; top: 0; left: 0;
      height: 3px; width: 0;
      background: linear-gradient(90deg, var(--orange), #f5a623);
      border-radius: 3px 3px 0 0;
      transition: width .6s cubic-bezier(.22,1,.36,1);
    }
    .valor__card.is-visible::before { width: 100%; }

    /* Subtle glow radial on hover */
    .valor__card::after {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(circle at 50% 0%, rgba(233,130,33,.12) 0%, transparent 70%);
      opacity: 0;
      transition: opacity .35s ease;
    }
    .valor__card:hover::after { opacity: 1; }
    .valor__card:hover {
      transform: translateY(-10px) scale(1.02) !important;
      box-shadow: 0 24px 56px rgba(0,0,0,.3), 0 0 0 1px rgba(233,130,33,.35) !important;
      background: rgba(255,255,255,.10) !important;
      border-color: rgba(233,130,33,.4) !important;
    }

    /* Icon zoom + rotate on hover */
    .valor__card h3 {
      font-family: 'Montserrat', sans-serif; font-size: 1.1rem;
      font-weight: 700; margin-bottom: 12px; color: var(--orange);
      display: flex; align-items: center; justify-content: center; gap: 10px; text-align: center;
    }
    .valor__card .pilar-icon {
      display: inline-block; font-size: 1.6rem;
      transition: transform .4s cubic-bezier(.34,1.56,.64,1);
    }
    .valor__card:hover .pilar-icon {
      transform: rotate(12deg) scale(1.3);
    }
    .valor__card p { font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.7; }

    /* Animated connecting dots between cards on desktop */
    @media (min-width: 901px) {
      .valores__grid { position: relative; }
      .valores__grid::after { display: none; }
    }

    /* Pilar step number */
    .pilar-step {
      font-family: 'Montserrat', sans-serif;
      font-size: .7rem; font-weight: 800; letter-spacing: .14em;
      color: rgba(233,130,33,.45);
      margin-bottom: 14px;
      transition: color .3s ease, transform .3s ease;
    }
    .valor__card:hover .pilar-step { color: var(--orange); transform: scale(1.1); }

    .numeros__grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 24px; margin-top: 52px;
    }
    .numero__card {
      text-align: center; padding: 40px 24px;
      background: var(--white); border-radius: var(--radius);
      border: 1px solid rgba(13,69,100,.09);
      transition: box-shadow .25s, transform .25s;
    }
    .numero__card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
    .numero__val {
      font-family: 'Montserrat', sans-serif; font-size: 2.8rem; font-weight: 800;
      color: var(--navy); line-height: 1; margin-bottom: 8px;
    }
    .numero__val span { color: var(--orange); }
    .numero__label { font-size: .9rem; color: var(--gray); font-weight: 500; }

    .equipe__grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 28px; margin-top: 52px;
    }
    .equipe__card {
      background: var(--white); border-radius: var(--radius);
      overflow: hidden; border: 1px solid rgba(13,69,100,.09);
      transition: box-shadow .25s, transform .25s;
    }
    .equipe__card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
    .equipe__img {
      height: 220px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Montserrat', sans-serif; font-size: 3rem; font-weight: 800;
      color: rgba(255,255,255,.3);
    }
    .equipe__info { padding: 24px; }
    .equipe__info h3 { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
    .equipe__info span { font-size: .85rem; color: var(--orange); font-weight: 600; }
    .equipe__info p { font-size: .85rem; color: var(--gray); margin-top: 8px; line-height: 1.6; }

    /* ══════════════════════════════════
       CONTATO PAGE
    ══════════════════════════════════ */
    .contato-hero {
      background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
      padding: 160px 0 100px; color: var(--white); position: relative; overflow: hidden;
    }
    .contato-hero::before {
      content: ''; position: absolute; left: -100px; bottom: -100px;
      width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(233,130,33,.12) 0%, transparent 70%);
    }
    .contato-hero__content { position: relative; z-index: 1; max-width: 640px; }
    .contato-hero h1 {
      font-family: 'Montserrat', sans-serif; font-size: clamp(2.2rem, 4.5vw, 3.5rem);
      font-weight: 800; line-height: 1.1; margin-bottom: 20px;
    }
    .contato-hero h1 span { color: var(--orange); }
    .contato-hero p { font-size: 1.1rem; color: rgba(255,255,255,.8); line-height: 1.75; }

    .contato__layout {
      display: grid; grid-template-columns: 1fr 1.1fr;
      gap: 64px; align-items: start; padding-top: 80px; padding-bottom: 80px;
    }

    /* Info cards */
    .contato__info-title { font-family: 'Montserrat', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 28px; }
    .contato__card {
      background: var(--white); border: 1px solid rgba(13,69,100,.1);
      border-radius: var(--radius); padding: 24px 22px;
      display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px;
      transition: box-shadow .25s, transform .25s;
    }
    .contato__card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
    .contato__card-icon {
      width: 48px; height: 48px; border-radius: 12px; background: var(--orange-lt);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.4rem;
    }
    .contato__card-text h4 { font-family: 'Montserrat', sans-serif; font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
    .contato__card-text p, .contato__card-text a { font-size: .88rem; color: var(--gray); line-height: 1.6; }
    .contato__card-text a:hover { color: var(--orange); }

    /* WhatsApp CTA */
    .whatsapp-cta {
      background: #1a9e4d; border-radius: var(--radius);
      padding: 24px 22px; display: flex; align-items: center; gap: 16px;
      color: var(--white); margin-bottom: 16px; cursor: pointer;
      transition: box-shadow .25s, transform .25s; text-decoration: none;
    }
    .whatsapp-cta:hover { box-shadow: 0 8px 28px rgba(26,158,77,.35); transform: translateY(-3px); }
    .whatsapp-cta__icon { font-size: 2rem; flex-shrink: 0; }
    .whatsapp-cta h4 { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 2px; }
    .whatsapp-cta p { font-size: .84rem; opacity: .88; }

    /* Form */
    .contato__form-box {
      background: var(--white); border-radius: 20px;
      box-shadow: 0 16px 64px rgba(13,69,100,.12);
      padding: 44px 40px; border: 1px solid rgba(13,69,100,.08);
    }
    .form-title { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
    .form-sub { font-size: .9rem; color: var(--gray); margin-bottom: 32px; }
    .form-group { margin-bottom: 20px; }
    .form-group label {
      display: block; font-family: 'Montserrat', sans-serif; font-size: .8rem;
      font-weight: 700; color: var(--navy); text-transform: uppercase;
      letter-spacing: .06em; margin-bottom: 8px;
    }
    .form-group input, .form-group select, .form-group textarea {
      width: 100%; padding: 14px 18px;
      border: 2px solid rgba(13,69,100,.12); border-radius: 10px;
      font-family: 'Inter', sans-serif; font-size: .92rem;
      color: var(--navy); background: #fafbfc; transition: border-color .2s, box-shadow .2s;
      outline: none;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      border-color: var(--orange); box-shadow: 0 0 0 3px rgba(233,130,33,.12);
    }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-submit {
      width: 100%; padding: 16px; border-radius: 999px;
      background: var(--orange); color: var(--white); border: none;
      font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem;
      cursor: pointer; transition: transform .2s, box-shadow .2s; margin-top: 8px;
    }
    .form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(233,130,33,.35); }
    .form-note { font-size: .78rem; color: var(--gray); text-align: center; margin-top: 14px; }
    .form-success {
      display: none; text-align: center; padding: 40px 0;
    }
    .form-success .check { font-size: 3.5rem; margin-bottom: 16px; }
    .form-success h3 { font-family: 'Montserrat', sans-serif; font-size: 1.4rem; color: var(--navy); margin-bottom: 10px; }
    .form-success p { color: var(--gray); }

    /* ── FOOTER ── */
    .footer { background: var(--navy-deep); color: rgba(255,255,255,.65); padding: 64px 0 28px; }
    .footer__grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr;
      gap: 48px; margin-bottom: 52px;
    }
    .footer__logo img { height: 100px; margin-bottom: 16px; opacity: .92; }
    .footer__desc { font-size: .88rem; line-height: 1.75; margin-bottom: 24px; }
    .footer__social { display: flex; gap: 12px; }
    .footer__social a {
      width: 38px; height: 38px; border-radius: 10px;
      background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
      transition: background .2s, transform .2s;
    }
    .footer__social a:hover { background: var(--orange); transform: translateY(-2px); }
    .footer__social svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
    .footer__col h4 {
      font-family: 'Montserrat', sans-serif; font-size: .85rem; font-weight: 700;
      color: var(--white); text-transform: uppercase; letter-spacing: .08em;
      margin-bottom: 20px;
    }
    .footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer__links a { font-size: .88rem; color: rgba(255,255,255,.6); cursor: pointer; transition: color .2s; }
    .footer__links a:hover { color: var(--orange); }
    .footer__contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: .87rem; }
    .footer__contact-item svg { width: 16px; height: 16px; fill: none; stroke: var(--orange); stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
    .footer__contact-item a { color: rgba(255,255,255,.65); }
    .footer__contact-item a:hover { color: var(--orange); }
    .footer__bottom {
      border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 12px; font-size: .8rem; color: rgba(255,255,255,.4);
    }

    /* ══════════════════════════════════
       ANIMATIONS
    ══════════════════════════════════ */

    /* ─ Keyframes ─ */
    @keyframes fadeUp      { from { opacity:0; transform:translateY(36px); } to { opacity:1; transform:translateY(0); } }
    @keyframes fadeDown    { from { opacity:0; transform:translateY(-24px); } to { opacity:1; transform:translateY(0); } }
    @keyframes fadeIn      { from { opacity:0; } to { opacity:1; } }
    @keyframes scaleIn     { from { opacity:0; transform:scale(.88); } to { opacity:1; transform:scale(1); } }
    @keyframes slideLeft   { from { opacity:0; transform:translateX(-44px); } to { opacity:1; transform:translateX(0); } }
    @keyframes slideRight  { from { opacity:0; transform:translateX(44px); } to { opacity:1; transform:translateX(0); } }
    @keyframes floatY      { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-10px); } }
    @keyframes shimmer     { 0% { background-position:200% center; } 100% { background-position:-200% center; } }
    @keyframes rotatePulse { 0%,100% { transform:rotate(0deg) scale(1); } 50% { transform:rotate(8deg) scale(1.08); } }
    @keyframes borderPulse { 0%,100% { box-shadow:0 0 0 0 rgba(233,130,33,.4); } 50% { box-shadow:0 0 0 10px rgba(233,130,33,0); } }
    @keyframes gradientMove{ 0% { background-position:0% 50%; } 50% { background-position:100% 50%; } 100% { background-position:0% 50%; } }
    @keyframes drawLine    { from { width:0; opacity:0; } to { width:100%; opacity:1; } }
    @keyframes bounceIn    { 0% { opacity:0; transform:scale(.3); } 50% { opacity:1; transform:scale(1.08); } 70% { transform:scale(.95); } 100% { transform:scale(1); } }
    @keyframes typewriter  { from { clip-path:inset(0 100% 0 0); } to { clip-path:inset(0 0% 0 0); } }
    @keyframes orb         { 0%,100% { transform:translate(0,0) scale(1); } 33% { transform:translate(30px,-20px) scale(1.1); } 66% { transform:translate(-20px,15px) scale(.9); } }

    /* ─ Hero background animated orbs ─ */
    .hero__bg::before {
      content:''; position:absolute; width:500px; height:500px; border-radius:50%;
      background:radial-gradient(circle, rgba(233,130,33,.18) 0%, transparent 70%);
      top:-100px; right:-100px; animation:orb 12s ease-in-out infinite;
    }
    .hero__bg::after {
      content:''; position:absolute; width:400px; height:400px; border-radius:50%;
      background:radial-gradient(circle, rgba(13,69,100,.35) 0%, transparent 70%);
      bottom:-80px; left:-80px; animation:orb 16s ease-in-out infinite reverse;
    }

    /* ─ Hero entrance ─ */
    .hero__eyebrow { animation:fadeDown .65s cubic-bezier(.22,1,.36,1) both .1s; }
    .hero__title   { animation:fadeUp   .75s cubic-bezier(.22,1,.36,1) both .3s; }
    .hero__ctas    { animation:fadeUp   .7s  cubic-bezier(.22,1,.36,1) both .52s; }
    .hero__stats   { animation:fadeUp   .65s cubic-bezier(.22,1,.36,1) both .72s; }

    /* ─ Hero title gradient shimmer on span ─ */
    .hero__title span {
      background: linear-gradient(90deg, var(--orange), #f5a623, var(--orange));
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shimmer 3s linear infinite;
    }

    /* ─ Hero stat values float subtly ─ */
    .hero__stat-value { display:inline-block; animation:floatY 4s ease-in-out infinite; }
    .hero__stats > div:nth-child(3) .hero__stat-value { animation-delay:.8s; }
    .hero__stats > div:nth-child(5) .hero__stat-value { animation-delay:1.6s; }

    /* ─ CTA primary button pulse ─ */
    .btn--primary { animation:borderPulse 2.8s ease-in-out infinite; animation-delay:1.5s; }

    /* ─ Trust strip entrance ─ */
    .trust__item { animation:fadeIn .5s ease both; }
    .trust__item:nth-child(1) { animation-delay:.1s; }
    .trust__item:nth-child(2) { animation-delay:.22s; }
    .trust__item:nth-child(3) { animation-delay:.34s; }

    /* ─ Navbar logo subtle bounce on load ─ */
    .navbar__logo { animation:bounceIn .8s cubic-bezier(.36,.07,.19,.97) both .05s; }

    /* ─ Orange accent icons rotate on hover ─ */
    .forwhom__icon { display:inline-block; transition:transform .4s cubic-bezier(.34,1.56,.64,1); }
    .forwhom__card:hover .forwhom__icon { transform:rotate(12deg) scale(1.2); }

    /* ─ How steps number pulse on hover ─ */
    .how__step-num { transition:transform .3s cubic-bezier(.34,1.56,.64,1), color .3s; }
    .how__step:hover .how__step-num { transform:scale(1.18); color:var(--orange); }

    /* ─ FAQ icon spin ─ */
    .faq__icon svg { transition:transform .35s cubic-bezier(.34,1.56,.64,1); }
    .faq__item.open .faq__icon svg { transform:rotate(45deg); }

    /* ─ Scroll-reveal base ─ */
    .reveal {
      opacity:0;
      transform:translateY(30px);
      transition:opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
      will-change:opacity,transform;
      transition-delay:var(--delay,0ms);
    }
    .reveal.from-left  { transform:translateX(-40px); }
    .reveal.from-right { transform:translateX(40px); }
    .reveal.scale      { transform:scale(.92); }
    .reveal.is-visible { opacity:1 !important; transform:none !important; }

    /* ─ Section title animated underline ─ */
    .section-title span {
      position:relative; display:inline;
    }
    .section-title span::after {
      content:''; position:absolute; left:0; bottom:-4px;
      height:3px; border-radius:3px;
      background:linear-gradient(90deg, var(--orange), #f5a623);
      width:0; transition:width .8s cubic-bezier(.22,1,.36,1) .3s;
    }
    .section-title.is-visible span::after,
    .reveal.is-visible .section-title span::after { width:100%; }

    /* ─ Badge bounce on reveal ─ */
    .badge { transition:transform .4s cubic-bezier(.34,1.56,.64,1), opacity .4s ease; }

    /* ─ Card hover lifts ─ */
    .forwhom__card,
    .how__step,
    .diff__card,
    .valor__card,
    .contato__card,
    .whatsapp-cta,
    .pain__item,
    .numero__card {
      transition:transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease !important;
    }
    .forwhom__card:hover,
    .how__step:hover,
    .diff__card:hover,
    .valor__card:hover,
    .pain__item:hover {
      transform:translateY(-8px) scale(1.01);
      box-shadow:0 20px 48px rgba(13,69,100,.16);
    }
    .numero__card:hover { transform:translateY(-6px) scale(1.03); box-shadow:0 16px 36px rgba(13,69,100,.18); }
    .contato__card:hover { transform:translateX(6px); }
    .whatsapp-cta:hover { transform:scale(1.02); }

    /* ─ Footer social links ─ */
    .footer__social a { transition:transform .3s cubic-bezier(.34,1.56,.64,1), color .25s; }
    .footer__social a:hover { transform:translateY(-5px) scale(1.15); }

    /* ─ Smooth page transition ─ */
    .page.active { animation:fadeIn .4s cubic-bezier(.22,1,.36,1) both; }

    /* ─ Navbar link underline ─ */
    .navbar__nav a::after {
      content:''; display:block; height:2px;
      background:var(--orange); border-radius:2px;
      transform:scaleX(0); transition:transform .28s cubic-bezier(.22,1,.36,1);
      transform-origin:left;
    }
    .navbar__nav a:hover::after,
    .navbar__nav a.active-link::after { transform:scaleX(1); }

    /* ─ Navbar CTA wobble on hover ─ */
    .navbar__cta { transition:transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease !important; }
    .navbar__cta:hover { transform:translateY(-3px) scale(1.04) !important; box-shadow:0 8px 24px rgba(233,130,33,.4) !important; }

    /* ─ Button interactions ─ */
    .btn { transition:transform .22s cubic-bezier(.34,1.56,.64,1), box-shadow .22s ease !important; }
    .btn:hover { transform:translateY(-3px) !important; }
    .btn:active { transform:translateY(1px) scale(.98) !important; }
    .navbar__cta:active { transform:scale(.96) !important; }

    /* ─ WA big button glow ─ */
    .wa-big-btn { transition:transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease !important; }
    .wa-big-btn:hover { transform:translateY(-4px) scale(1.03) !important; box-shadow:0 14px 36px rgba(37,211,102,.45) !important; }

    /* ─ Input focus glow ─ */
    .contato__form-box input:focus,
    .contato__form-box select:focus,
    .contato__form-box textarea:focus {
      outline:none;
      box-shadow:0 0 0 3px rgba(233,130,33,.25);
      border-color:var(--orange) !important;
      transform:translateY(-1px);
      transition:box-shadow .2s ease, border-color .2s ease, transform .2s ease;
    }

    /* ─ Sobre / Contato hero parallax text ─ */
    .sobre-hero__content,
    .contato-hero__content { animation:fadeUp .8s cubic-bezier(.22,1,.36,1) both .15s; }

    /* ─ Final CTA elements ─ */
    .final-cta__content > * { animation:fadeUp .7s cubic-bezier(.22,1,.36,1) both; }
    .final-cta__content > *:nth-child(1) { animation-delay:.1s; }
    .final-cta__content > *:nth-child(2) { animation-delay:.25s; }
    .final-cta__content > *:nth-child(3) { animation-delay:.4s; }
    .final-cta__content > *:nth-child(4) { animation-delay:.55s; }

    /* ─ Accessibility ─ */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
    }

    /* ── FLOATING WHATSAPP ── */
    @keyframes waPop    { 0%{transform:scale(0) rotate(-180deg);opacity:0} 70%{transform:scale(1.15) rotate(8deg)} 100%{transform:scale(1) rotate(0deg);opacity:1} }
    @keyframes waPulse  { 0%,100%{box-shadow:0 0 0 0 rgba(37,211,102,.55)} 60%{box-shadow:0 0 0 16px rgba(37,211,102,0)} }
    @keyframes waBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 999;
      width: 60px;
      height: 60px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 24px rgba(37,211,102,.5);
      text-decoration: none;
      animation: waPop .6s cubic-bezier(.34,1.56,.64,1) both 1.2s, waPulse 2.5s ease-in-out infinite 2s, waBounce 3s ease-in-out infinite 2.5s;
      transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease;
    }
    .wa-float:hover {
      transform: scale(1.12) translateY(-4px);
      box-shadow: 0 12px 36px rgba(37,211,102,.6);
      animation: none;
    }
    .wa-float:active { transform: scale(.95); }

    /* Tooltip */
    .wa-float__tooltip {
      position: absolute;
      right: 72px;
      background: #1a2332;
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-size: .78rem;
      font-weight: 600;
      padding: 7px 14px;
      border-radius: 8px;
      white-space: nowrap;
      pointer-events: none;
      opacity: 0;
      transform: translateX(8px);
      transition: opacity .2s ease, transform .2s ease;
    }
    .wa-float__tooltip::after {
      content: '';
      position: absolute;
      left: 100%;
      top: 50%;
      transform: translateY(-50%);
      border: 6px solid transparent;
      border-left-color: #1a2332;
    }
    .wa-float:hover .wa-float__tooltip {
      opacity: 1;
      transform: translateX(0);
    }

    @media (max-width: 600px) {
      .wa-float { width: 54px; height: 54px; bottom: 20px; right: 20px; }
      .wa-float__tooltip { display: none; }
    }

    /* ── FLOATING WHATSAPP ── */
    .wa-big-btn {
      display: inline-flex; align-items: center; gap: 12px;
      background: #25D366; color: #fff;
      padding: 16px 36px; border-radius: 999px;
      font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem;
      transition: transform .2s, box-shadow .2s; text-decoration: none;
      max-width: 100%; box-sizing: border-box;
    }
    @media (max-width: 600px) {
      .wa-big-btn { width: 100%; justify-content: center; padding: 15px 20px; font-size: .92rem; }
    }

    /* ══════════════════════════════════
       RESPONSIVE — TABLET (≤900px)
    ══════════════════════════════════ */
    @media (max-width: 900px) {
      .navbar__nav, .navbar__cta { display: none !important; }
      .hamburger { display: flex !important; }

      .benefits__split,
      .sobre-missao,
      .contato__layout { grid-template-columns: 1fr !important; gap: 32px; }

      .footer__grid { grid-template-columns: 1fr 1fr; }
      .form-row { grid-template-columns: 1fr !important; }
      .sobre-missao__img { max-height: 320px; }
      .numeros__grid { grid-template-columns: 1fr 1fr; }
      .diff__grid { grid-template-columns: 1fr 1fr; }
      .valores__grid { grid-template-columns: 1fr 1fr; }
    }

    /* ══════════════════════════════════
       RESPONSIVE — MOBILE (≤600px)
    ══════════════════════════════════ */
    @media (max-width: 600px) {

      /* ─ Global ─ */
      html { font-size: 15px; }
      .section { padding: 56px 0; }
      .container { padding: 0 16px; }
      .section-title { font-size: clamp(1.3rem, 5.5vw, 1.75rem) !important; }
      .section-sub { font-size: .9rem; }

      /* ─ Navbar ─ */
      .navbar__inner { padding: 0 16px; height: 72px; }
      .navbar__logo img { height: 72px; }
      .mobile-nav { inset: 72px 0 0 0; padding: 20px 16px; }
      .mobile-nav a { font-size: 1rem; padding: 13px 0; }

      /* ─ Hero ─ */
      .hero { min-height: 100svh; padding-top: 72px; }
      .hero__content {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: 0 !important;
        padding: 44px 0 36px;
      }
      .hero__eyebrow { grid-column: 1 !important; grid-row: auto !important; }
      .hero__title {
        grid-column: 1 !important; grid-row: auto !important;
        font-size: clamp(1.2rem, 5vw, 1.55rem) !important;
        text-align: center !important; margin-bottom: 24px; max-width: 100% !important;
      }
      .hero__ctas {
        grid-column: 1 !important; grid-row: auto !important;
        flex-direction: column !important; gap: 10px !important;
        align-items: stretch; margin-bottom: 36px;
      }
      .hero__ctas .btn { width: 100% !important; justify-content: center !important; padding: 14px 20px; }
      .hero__stats {
        grid-column: 1 !important; grid-row: auto !important;
        flex-direction: column !important;
        border-left: none !important; border-top: 1px solid rgba(255,255,255,.15) !important;
        padding-left: 0 !important; padding-top: 24px !important;
        gap: 0 !important; align-items: center; text-align: center;
      }
      .hero__stat-item { padding: 14px 0; text-align: center; width: 100%; }
      .hero__eyebrow {
        font-size: .62rem; padding: 5px 10px; letter-spacing: .06em;
        white-space: normal; text-align: center;
        max-width: 90%; margin: 0 auto 20px;
      }
      .hero__stat-sep { display: none !important; }
      .hero__stat-value { font-size: 1.7rem !important; }
      .hero__stat-label { font-size: .78rem; }

      /* ─ Trust Strip ─ */
      .trust { padding: 20px 0; }
      .trust__inner {
        flex-direction: column !important; gap: 10px !important;
        align-items: flex-start; padding: 0 16px;
      }
      .trust__item { font-size: .82rem; }

      /* ─ Cards / Grids ─ */
      .forwhom__grid { grid-template-columns: 1fr !important; gap: 12px; margin-top: 28px; }
      .forwhom__card { padding: 22px 18px; }
      .pain__grid { grid-template-columns: 1fr !important; gap: 10px; }
      .pain__item { padding: 18px 16px; }
      .how__steps { grid-template-columns: 1fr !important; gap: 14px; margin-top: 36px; }
      .how__step { padding: 22px 18px; }
      .diff__grid { grid-template-columns: 1fr !important; gap: 12px; }
      .diff__card { padding: 22px 18px; }
      .numeros__grid { grid-template-columns: 1fr 1fr !important; gap: 12px; }
      .numero__card { padding: 24px 14px; }
      .numero__val { font-size: 2rem !important; }
      .valores__grid { grid-template-columns: 1fr !important; gap: 12px; }
      .valor__card { padding: 22px 18px; }

      /* ─ Benefits ─ */
      .benefits__split { gap: 0 !important; }
      .benefits__img { aspect-ratio: 16/9; min-height: unset; max-height: 220px; }
      .benefits__checks { gap: 10px; }

      /* ─ Pain callout ─ */
      .pain__callout { font-size: .88rem; padding: 18px 16px; margin-top: 28px; }

      /* ─ FAQ ─ */
      .faq__list { margin-top: 28px; }
      .faq__q { font-size: .85rem; padding: 16px 12px; }
      .faq__a { font-size: .88rem; padding: 0 12px 16px; }

      /* ─ Final CTA ─ */
      .final-cta { padding: 60px 16px; }
      .final-cta h2 { font-size: clamp(1.4rem, 5.5vw, 1.85rem) !important; }
      .final-cta p { font-size: .9rem; }
      .final-cta .btn { width: 100% !important; justify-content: center !important; }

      /* ─ Sobre ─ */
      .sobre-hero, .contato-hero { padding: 108px 0 52px; }
      .sobre-hero h1, .contato-hero h1 { font-size: clamp(1.5rem, 6vw, 2rem) !important; }
      .sobre-missao { gap: 24px !important; }
      .sobre-missao__img { max-height: 220px !important; }
      .sobre-missao__text p { font-size: .92rem; }

      /* ─ Contato ─ */
      .contato__layout { gap: 28px !important; }
      .contato__form-box { padding: 22px 16px; border-radius: 12px; }
      .form-title { font-size: 1.15rem; }
      .form-sub { font-size: .85rem; }
      .contato__card { padding: 14px; gap: 12px; }
      .contato__info-title { font-size: 1.15rem; }
      .whatsapp-cta { padding: 14px; gap: 12px; }
      .form-submit { font-size: .92rem; padding: 14px 20px; }

      /* ─ Footer ─ */
      .footer { padding: 44px 0 20px; }
      .footer__grid { grid-template-columns: 1fr !important; gap: 24px; }
      .footer__logo img { height: 80px; }
      .footer__desc { font-size: .85rem; }
      .footer__col h4 { font-size: .88rem; }
      .footer__links li { font-size: .85rem; }
      .footer__contact-item { font-size: .82rem; }
      .footer__bottom {
        flex-direction: column !important; text-align: center;
        gap: 4px; font-size: .75rem;
      }
      .footer__social { gap: 12px; }

      /* ─ Buttons global ─ */
      .btn { font-size: .87rem; padding: 12px 20px; gap: 6px; }

      /* ─ Badge ─ */
      .badge { font-size: .65rem; padding: 5px 12px; }
    }

    /* ─ Very small screens (≤380px) ─ */
    @media (max-width: 380px) {
      .hero__title { font-size: 1.1rem !important; }
      .section-title { font-size: 1.2rem !important; }
      .numeros__grid { grid-template-columns: 1fr !important; }
    }

    /* Global Trade - Why Global Trade Exists */
    .gt-exists {
      background: #eef1f4;
    }
    .gt-exists__title {
      max-width: 900px;
      color: #17233a;
      margin-bottom: 18px;
      line-height: 1.1;
    }
    .gt-exists__title .gt-exists__title-line {
      display: block;
      white-space: nowrap;
      color: #17233a;
    }
    .gt-exists__title .gt-exists__title-line::after,
    .gt-exists__title .gt-exists__title-accent::after {
      content: none !important;
      display: none !important;
      width: 0 !important;
    }
    .gt-exists__title-accent {
      color: var(--orange);
      display: inline-block;
      border-bottom: 3px solid var(--orange);
      padding-bottom: 6px;
      text-decoration: none;
    }
    @media (max-width: 720px) {
      .gt-exists__title .gt-exists__title-line {
        white-space: normal;
      }
    }
    .gt-exists__sub {
      max-width: 660px;
      font-size: 1.03rem;
      line-height: 1.75;
      color: #6f7785;
      margin-bottom: 44px;
    }
    .gt-exists__layout {
      display: grid;
      grid-template-columns: minmax(300px, 460px) minmax(420px, 1fr);
      gap: 42px;
      align-items: stretch;
    }
    .gt-exists__cards {
      display: flex;
      flex-direction: column;
      gap: 18px;
      align-self: center;
    }
    .gt-exists__card {
      background: rgba(255,255,255,.9);
      border-radius: 18px;
      padding: 28px 26px;
      border-top: 3px solid var(--orange);
      box-shadow: 0 2px 0 rgba(255,255,255,.6) inset;
      min-height: 78px;
      display: flex;
      align-items: center;
    }
    .gt-exists__card {
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
    }
    .gt-exists__card h3 {
      margin: 0 0 8px;
      font-family: 'Montserrat', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.3;
    }
    .gt-exists__card p {
      margin: 0;
      font-size: .92rem;
      line-height: 1.65;
      color: #6f7785;
    }
    .gt-exists__visual {
      background: #0a3147;
      border-radius: 18px;
      overflow: hidden;
      min-height: 340px;
      display: flex;
      align-items: stretch;
      justify-content: stretch;
      box-shadow: 0 16px 40px rgba(13,69,100,.14);
    }
    .gt-exists__visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    @media (max-width: 1024px) {
      .gt-exists__layout {
        grid-template-columns: 1fr;
        gap: 26px;
      }
      .gt-exists__visual {
        min-height: 300px;
      }
    }
    @media (max-width: 640px) {
      .gt-exists__sub {
        max-width: 100%;
        margin-bottom: 28px;
      }
      .gt-exists__card {
        padding: 22px 20px;
        border-radius: 16px;
      }
      .gt-exists__card h3 {
        font-size: 1rem;
      }
      .gt-exists__visual {
        min-height: 240px;
        border-radius: 16px;
      }
    }

  

    /* ── LANGUAGE SELECTOR ── */
    .language-selector {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      padding: 4px;
      border: 1px solid rgba(13,69,100,.16);
      border-radius: 999px;
      background: rgba(255,255,255,.86);
      flex-shrink: 0;
    }
    .language-selector button {
      min-width: 34px;
      height: 30px;
      padding: 0 8px;
      border: 0;
      border-radius: 999px;
      background: transparent;
      color: var(--navy);
      font-family: 'Montserrat', sans-serif;
      font-size: .68rem;
      font-weight: 800;
      letter-spacing: .04em;
      cursor: pointer;
      transition: background .2s, color .2s, transform .2s;
    }
    .language-selector button:hover { transform: translateY(-1px); }
    .language-selector button.active {
      background: var(--orange);
      color: var(--white);
    }
    .language-selector--mobile {
      display: none;
      width: max-content;
      margin: 0 0 14px;
    }
    @media (max-width: 1050px) {
      .navbar__inner { gap: 14px; }
      .navbar__nav { gap: 22px; }
      .language-selector--desktop button { min-width: 30px; padding: 0 6px; }
    }
    @media (max-width: 900px) {
      .language-selector--desktop { display: none; }
      .language-selector--mobile { display: inline-flex; }
    }

.home-modelos__grid {
      display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 26px; margin-top: 50px;
    }
    .home-modelo {
      position: relative; display: flex; flex-direction: column;
      padding: 38px 34px 34px; border-radius: 18px;
      border: 1px solid rgba(13,69,100,.10); background: var(--white);
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .home-modelo:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(13,69,100,.16); }
    .home-modelo--destaque { background: var(--navy); border-color: var(--navy); }
    .home-modelo--destaque:hover { box-shadow: 0 22px 50px rgba(13,69,100,.30); border-color: rgba(233,130,33,.5); }
    .home-modelo__icon {
      width: 54px; height: 54px; border-radius: 14px; margin-bottom: 22px;
      display: flex; align-items: center; justify-content: center;
      background: var(--orange-lt); color: var(--orange);
    }
    .home-modelo--destaque .home-modelo__icon { background: rgba(233,130,33,.16); border: 1px solid rgba(233,130,33,.24); }
    .home-modelo__label {
      display: inline-block; margin-bottom: 10px; color: var(--orange);
      font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
    }
    .home-modelo h3 {
      font-family: 'Montserrat', sans-serif; font-weight: 800;
      font-size: 1.28rem; line-height: 1.3; margin-bottom: 14px; color: var(--navy);
    }
    .home-modelo--destaque h3 { color: var(--white); }
    .home-modelo__desc { font-size: .95rem; line-height: 1.75; color: var(--gray); margin-bottom: 22px; }
    .home-modelo--destaque .home-modelo__desc { color: rgba(255,255,255,.76); }
    .home-modelo ul { list-style: none; display: grid; gap: 10px; margin-bottom: 28px; }
    .home-modelo li {
      display: grid; grid-template-columns: 18px 1fr; gap: 11px; align-items: start;
      font-size: .9rem; line-height: 1.6; color: var(--navy);
    }
    .home-modelo--destaque li { color: rgba(255,255,255,.8); }
    .home-modelo li svg { margin-top: 4px; color: var(--orange); }
    .home-modelo__btn {
      width: fit-content; min-height: 48px; margin-top: auto;
      padding: 13px 24px; border-radius: 9px; cursor: pointer;
      font-family: 'Montserrat', sans-serif; font-size: .86rem; font-weight: 700;
      background: transparent; border: 1.5px solid rgba(13,69,100,.25); color: var(--navy);
      transition: background .22s ease, border-color .22s ease, color .22s ease, transform .22s ease;
    }
    .home-modelo__btn:hover { background: var(--navy); border-color: var(--navy); color: #fff; transform: translateY(-2px); }
    .home-modelo--destaque .home-modelo__btn { background: var(--orange); border-color: var(--orange); color: #fff; }
    .home-modelo--destaque .home-modelo__btn:hover { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
    @media (max-width: 860px) {
      .home-modelos__grid { grid-template-columns: 1fr; }
      .home-modelo { padding: 32px 26px 28px; }
      .home-modelo__btn { width: 100%; }
    }

.home-global-trade {
      position: relative;
      overflow: hidden;
      background: var(--navy-deep);
      color: var(--white);
    }
    .home-global-trade::before {
      content: '';
      position: absolute;
      width: 460px;
      height: 460px;
      right: -180px;
      top: -210px;
      border-radius: 50%;
      background: rgba(233,130,33,.08);
      pointer-events: none;
    }
    .home-global-trade__grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
      gap: 64px;
      align-items: center;
    }
    .home-global-trade__content { max-width: 650px; }
    .home-global-trade__content .section-title { color: var(--white); margin-bottom: 22px; }
    .home-global-trade__intro {
      color: rgba(255,255,255,.76);
      font-size: 1.04rem;
      line-height: 1.78;
      margin-bottom: 30px;
      max-width: 640px;
    }
    .home-global-trade__points {
      display: grid;
      gap: 13px;
      margin-bottom: 32px;
    }
    .home-global-trade__point {
      display: grid;
      grid-template-columns: 38px 1fr;
      gap: 14px;
      align-items: start;
      padding: 15px 16px;
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 12px;
      background: rgba(255,255,255,.045);
    }
    .home-global-trade__icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--orange);
      background: rgba(233,130,33,.12);
      flex-shrink: 0;
    }
    .home-global-trade__point h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: .98rem;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 3px;
    }
    .home-global-trade__point p {
      color: rgba(255,255,255,.63);
      font-size: .88rem;
      line-height: 1.55;
    }
    .home-global-trade__visual {
      position: relative;
      min-height: 540px;
      border-radius: 24px;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(6,31,46,.08) 20%, rgba(6,31,46,.72) 100%),
        url('/assets/img/66cdd838117f.png') center 42% / cover no-repeat;
      box-shadow: 0 24px 60px rgba(0,0,0,.32);
      border: 1px solid rgba(255,255,255,.10);
    }
    .home-global-trade__visual::after {
      content: 'BSB GLOBAL TRADE';
      position: absolute;
      left: 28px;
      bottom: 26px;
      color: rgba(255,255,255,.92);
      font-family: 'Montserrat', sans-serif;
      font-size: .76rem;
      font-weight: 800;
      letter-spacing: .16em;
    }
    @media (max-width: 900px) {
      .home-global-trade__grid { grid-template-columns: 1fr; gap: 42px; }
      .home-global-trade__content { max-width: none; }
      .home-global-trade__visual { min-height: 430px; }
    }
    @media (max-width: 560px) {
      .home-global-trade__visual { min-height: 340px; border-radius: 18px; }
      .home-global-trade__point { grid-template-columns: 34px 1fr; padding: 14px; }
      .home-global-trade__icon { width: 34px; height: 34px; }
    }

.sobre-global-trade-transition {
      margin-top: 18px;
      color: var(--navy);
      font-weight: 600;
      line-height: 1.75;
    }
    .sobre-frentes {
      position: relative;
      overflow: hidden;
      background: var(--navy-deep);
    }
    .sobre-frentes::before {
      content: '';
      position: absolute;
      width: 520px;
      height: 520px;
      border-radius: 50%;
      top: -300px;
      right: -180px;
      background: radial-gradient(circle, rgba(233,130,33,.14) 0%, rgba(233,130,33,0) 70%);
      pointer-events: none;
    }
    .sobre-frentes__header {
      position: relative;
      z-index: 1;
      max-width: 780px;
      margin: 0 auto 48px;
      text-align: center;
    }
    .sobre-frentes__header .section-title {
      color: #fff;
      margin: 14px auto 18px;
    }
    .sobre-frentes__intro {
      max-width: 760px;
      margin: 0 auto;
      color: rgba(255,255,255,.72);
      font-size: 1rem;
      line-height: 1.8;
    }
    .sobre-frentes__grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
      max-width: 1180px;
      margin: 0 auto;
    }
    .sobre-frente__card {
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 400px;
      padding: 34px 28px 30px;
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,.12);
      border-top: 4px solid var(--orange);
      background: rgba(13,69,100,.72);
      box-shadow: 0 18px 44px rgba(0,0,0,.20);
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .sobre-frente__card:hover {
      transform: translateY(-6px);
      box-shadow: 0 26px 56px rgba(0,0,0,.28);
      border-color: rgba(233,130,33,.45);
    }
    .sobre-frente__icon {
      width: 54px;
      height: 54px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 26px;
      color: var(--orange);
      background: rgba(233,130,33,.12);
      border: 1px solid rgba(233,130,33,.24);
    }
    .sobre-frente__label {
      display: inline-block;
      margin-bottom: 12px;
      color: var(--orange);
      font-size: .76rem;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .sobre-frente__card h3 {
      margin-bottom: 16px;
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-size: 1.2rem;
      font-weight: 800;
      line-height: 1.3;
    }
    .sobre-frente__card p {
      margin-bottom: 28px;
      color: rgba(255,255,255,.72);
      font-size: .95rem;
      line-height: 1.75;
    }
    .sobre-frente__btn {
      width: fit-content;
      min-height: 48px;
      margin-top: auto;
      padding: 13px 22px;
      border: 1.5px solid rgba(255,255,255,.30);
      border-radius: 9px;
      background: transparent;
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-size: .86rem;
      font-weight: 700;
      cursor: pointer;
      transition: background .22s ease, border-color .22s ease, color .22s ease, transform .22s ease;
    }
    .sobre-frente__btn:hover,
    .sobre-frente__btn:focus-visible {
      background: var(--orange);
      border-color: var(--orange);
      color: #fff;
      transform: translateY(-2px);
      outline: none;
    }
    @media (max-width: 1080px) {
      .sobre-frentes__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 820px) {
      .sobre-frentes__grid { grid-template-columns: 1fr; }
      .sobre-frente__card { min-height: 0; }
    }
    @media (max-width: 560px) {
      .sobre-frentes__header { margin-bottom: 34px; }
      .sobre-frente__card { padding: 30px 24px 28px; border-radius: 16px; }
      .sobre-frente__card h3 { font-size: 1.18rem; }
      .sobre-frente__btn { width: 100%; }
    }

/* ── HERO ── */
    #estruturacao-hero .hero__content {
      grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
      gap: 0 60px;
    }
    .est-hero__panel {
      grid-column: 2; grid-row: 1 / 4;
      align-self: center;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 22px;
      background: linear-gradient(160deg, rgba(13,69,100,.62), rgba(6,31,46,.72));
      box-shadow: 0 24px 60px rgba(0,0,0,.34);
      padding: 26px 24px;
      backdrop-filter: blur(3px);
    }
    .est-hero__panel svg { width: 100%; height: auto; display: block; }
    .est-hero__panel-label {
      margin-top: 16px; padding-top: 15px;
      border-top: 1px solid rgba(255,255,255,.12);
      color: rgba(255,255,255,.62);
      font-size: .78rem; line-height: 1.6; text-align: center;
    }
    @media (max-width: 980px) {
      #estruturacao-hero .hero__content { grid-template-columns: 1fr; gap: 0; }
      .est-hero__panel { grid-column: 1; grid-row: auto; margin-top: 34px; max-width: 460px; }
    }

    /* ── SINTOMAS (checklist) ── */
    .est-check__grid {
      display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px; margin-top: 48px;
    }
    .est-check__item {
      display: grid; grid-template-columns: 30px 1fr; gap: 15px; align-items: start;
      padding: 20px 22px;
      background: var(--white);
      border: 1px solid rgba(13,69,100,.10);
      border-left: 3px solid var(--orange);
      border-radius: 12px;
      transition: transform .22s ease, box-shadow .22s ease;
    }
    .est-check__item:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(13,69,100,.12); }
    .est-check__mark {
      width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      background: var(--orange-lt); color: var(--orange);
    }
    .est-check__item p {
      font-family: 'Montserrat', sans-serif; font-weight: 600;
      font-size: .93rem; color: var(--navy); line-height: 1.55;
    }
    .est-check__note {
      margin-top: 34px; padding: 26px 30px;
      border-radius: 14px; background: var(--navy); color: var(--white);
      font-family: 'Montserrat', sans-serif; font-weight: 700;
      font-size: 1.02rem; line-height: 1.6; text-align: center;
    }
    .est-check__note span { color: var(--orange); }
    @media (max-width: 780px) { .est-check__grid { grid-template-columns: 1fr; } }

    /* ── FASES ── */
    .est-fases { position: relative; overflow: hidden; }
    .est-fases::before {
      content: ''; position: absolute; width: 520px; height: 520px;
      border-radius: 50%; top: -260px; left: -200px;
      background: radial-gradient(circle, rgba(233,130,33,.13) 0%, rgba(233,130,33,0) 70%);
      pointer-events: none;
    }
    .est-fases__grid {
      position: relative; z-index: 1;
      display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px; margin-top: 52px;
    }
    .est-fase {
      display: flex; flex-direction: column;
      padding: 32px 28px 30px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.045);
      transition: transform .25s ease, border-color .25s ease, background .25s ease;
    }
    .est-fase:hover { transform: translateY(-6px); border-color: rgba(233,130,33,.45); background: rgba(255,255,255,.07); }
    .est-fase__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
    .est-fase__num {
      font-family: 'Montserrat', sans-serif; font-weight: 800;
      font-size: 2.1rem; color: var(--orange); line-height: 1;
    }
    .est-fase__chip {
      font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
      color: rgba(255,255,255,.72);
      border: 1px solid rgba(255,255,255,.22); border-radius: 999px;
      padding: 5px 12px;
    }
    .est-fase h3 {
      font-family: 'Montserrat', sans-serif; font-weight: 800;
      font-size: 1.18rem; color: var(--white); margin-bottom: 18px;
    }
    .est-fase ul { list-style: none; display: grid; gap: 11px; }
    .est-fase li {
      display: grid; grid-template-columns: 17px 1fr; gap: 11px; align-items: start;
      color: rgba(255,255,255,.72); font-size: .89rem; line-height: 1.6;
    }
    .est-fase li svg { margin-top: 4px; color: var(--orange); }
    @media (max-width: 900px) { .est-fases__grid { grid-template-columns: 1fr; } }

    /* ── CARROSSEL ── */
    .est-carousel {
      display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
      gap: 46px; align-items: center; margin-top: 52px;
    }
    .est-carousel__visual {
      position: relative; border-radius: 20px; overflow: hidden;
      min-height: 380px; display: flex; align-items: center; justify-content: center;
      padding: 34px;
      background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
      border: 1px solid rgba(13,69,100,.16);
      box-shadow: 0 20px 48px rgba(13,69,100,.20);
    }
    .est-carousel__visual::before {
      content: ''; position: absolute; inset: 0;
      background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
      background-size: 34px 34px;
      pointer-events: none;
    }
    .est-carousel__visual svg { position: relative; z-index: 1; width: 100%; height: auto; max-width: 380px; }
    .est-carousel__tag {
      display: inline-block; background: var(--orange-lt); color: var(--orange);
      font-family: 'Montserrat', sans-serif; font-size: .7rem; font-weight: 800;
      letter-spacing: .1em; text-transform: uppercase;
      padding: 6px 15px; border-radius: 999px; margin-bottom: 16px;
    }
    .est-carousel__title {
      font-family: 'Montserrat', sans-serif; font-weight: 800;
      font-size: clamp(1.3rem, 2.4vw, 1.75rem); color: var(--navy);
      line-height: 1.25; margin-bottom: 16px;
    }
    .est-carousel__desc { color: var(--gray); font-size: 1rem; line-height: 1.8; margin-bottom: 22px; }
    .est-carousel__list { list-style: none; display: grid; gap: 10px; margin-bottom: 30px; }
    .est-carousel__list li {
      display: grid; grid-template-columns: 18px 1fr; gap: 11px; align-items: start;
      font-size: .92rem; color: var(--navy); line-height: 1.6;
    }
    .est-carousel__list svg { margin-top: 4px; color: var(--orange); }
    .est-carousel__nav { display: flex; align-items: center; gap: 14px; }
    .est-carousel__arrow {
      width: 44px; height: 44px; border-radius: 50%;
      border: 1.5px solid rgba(13,69,100,.22); background: transparent;
      color: var(--navy); cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s, border-color .2s, color .2s, transform .2s;
    }
    .est-carousel__arrow:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-2px); }
    .est-carousel__dots { display: flex; gap: 8px; margin-left: 6px; }
    .est-carousel__dot {
      width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0;
      background: rgba(13,69,100,.22); cursor: pointer; transition: background .2s, width .2s;
    }
    .est-carousel__dot.active { background: var(--orange); width: 26px; border-radius: 999px; }
    @media (max-width: 900px) {
      .est-carousel { grid-template-columns: 1fr; gap: 32px; }
      .est-carousel__visual { min-height: 300px; padding: 26px; order: -1; }
    }

    /* ── ENTREGÁVEIS ── */
    .est-deliver__grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 22px; margin-top: 50px;
    }
    .est-deliver__card {
      position: relative; padding: 32px 28px 28px;
      background: var(--white); border-radius: 16px;
      border: 1px solid rgba(13,69,100,.09);
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .est-deliver__card::after {
      content: ''; position: absolute; left: 28px; right: 28px; top: 0; height: 3px;
      border-radius: 0 0 3px 3px; background: var(--orange);
      transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
    }
    .est-deliver__card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(13,69,100,.14); }
    .est-deliver__card:hover::after { transform: scaleX(1); }
    .est-deliver__icon {
      width: 50px; height: 50px; border-radius: 13px; margin-bottom: 20px;
      display: flex; align-items: center; justify-content: center;
      background: var(--orange-lt); color: var(--orange);
    }
    .est-deliver__card h3 {
      font-family: 'Montserrat', sans-serif; font-weight: 800;
      font-size: 1.03rem; color: var(--navy); margin-bottom: 10px; line-height: 1.35;
    }
    .est-deliver__card p { font-size: .9rem; color: var(--gray); line-height: 1.72; }

    /* ── ANTES × DEPOIS ── */
    .est-compare {
      display: grid; grid-template-columns: 1fr 54px 1fr;
      gap: 0; align-items: stretch; margin-top: 50px;
    }
    .est-compare__col { padding: 36px 32px; border-radius: 18px; }
    .est-compare__col--before { background: var(--light); border: 1px solid rgba(13,69,100,.09); }
    .est-compare__col--after { background: var(--navy); border: 1px solid var(--navy); }
    .est-compare__head {
      font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.05rem;
      letter-spacing: .04em; text-transform: uppercase; margin-bottom: 24px;
      padding-bottom: 16px;
    }
    .est-compare__col--before .est-compare__head { color: var(--gray); border-bottom: 1px solid rgba(13,69,100,.12); }
    .est-compare__col--after .est-compare__head { color: var(--orange); border-bottom: 1px solid rgba(255,255,255,.16); }
    .est-compare__row {
      display: grid; grid-template-columns: 20px 1fr; gap: 13px; align-items: start;
      padding: 13px 0; font-size: .93rem; line-height: 1.6;
    }
    .est-compare__col--before .est-compare__row { color: var(--gray); border-bottom: 1px solid rgba(13,69,100,.07); }
    .est-compare__col--after .est-compare__row { color: rgba(255,255,255,.82); border-bottom: 1px solid rgba(255,255,255,.09); }
    .est-compare__row:last-child { border-bottom: none; }
    .est-compare__row svg { margin-top: 3px; flex-shrink: 0; }
    .est-compare__mid { display: flex; align-items: center; justify-content: center; }
    .est-compare__arrow {
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--orange); color: #fff;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 8px 22px rgba(233,130,33,.36);
    }
    @media (max-width: 860px) {
      .est-compare { grid-template-columns: 1fr; gap: 0; }
      .est-compare__mid { padding: 18px 0; }
      .est-compare__arrow { transform: rotate(90deg); }
    }

    /* ── POR QUE BSB ── */
    .est-why { position: relative; overflow: hidden; }
    .est-why__split {
      display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
      gap: 58px; align-items: center;
    }
    .est-why__tiles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
    .est-why__tile {
      padding: 26px 24px; border-radius: 15px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.05);
      transition: transform .25s ease, border-color .25s ease;
    }
    .est-why__tile:hover { transform: translateY(-5px); border-color: rgba(233,130,33,.45); }
    .est-why__tile-icon { color: var(--orange); margin-bottom: 15px; }
    .est-why__tile h4 {
      font-family: 'Montserrat', sans-serif; font-weight: 800;
      font-size: .97rem; color: var(--white); margin-bottom: 8px; line-height: 1.35;
    }
    .est-why__tile p { color: rgba(255,255,255,.66); font-size: .86rem; line-height: 1.65; }
    .est-why__intro { color: rgba(255,255,255,.75); font-size: 1.04rem; line-height: 1.8; margin-bottom: 28px; }
    @media (max-width: 900px) {
      .est-why__split { grid-template-columns: 1fr; gap: 40px; }
    }
    @media (max-width: 520px) {
      .est-why__tiles { grid-template-columns: 1fr; }
    }

#page-global-trade {
      --navy: var(--navy-deep);
    }
    #global-trade-hero .hero__bg {
      background-position: right bottom !important;
      background: linear-gradient(rgba(6,31,46,0.83), rgba(6,31,46,0.83)), url('/assets/img/3a6ebbf6287e.png') right bottom/cover no-repeat !important;
    }
    #global-trade-hero .hero__eyebrow {
      font-size: 0.85rem !important;
      padding: 6px 16px !important;
    }
    .who-carousel {
      position: relative; margin-top: 44px; border-radius: 22px; overflow: hidden;
      min-height: 480px; box-shadow: 0 20px 50px rgba(6,31,46,.25);
    }
    .who-carousel__bg {
      position: absolute; inset: 0; background-size: cover; background-position: center;
      transition: background-image .5s ease;
    }
    .who-carousel__bg::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(0deg, rgba(6,31,46,.92) 0%, rgba(6,31,46,.55) 45%, rgba(6,31,46,.25) 100%);
    }
    .who-carousel__content {
      position: relative; z-index: 2; height: 480px; display: flex; flex-direction: column;
      justify-content: flex-end; padding: 40px 48px;
    }
    .who-carousel__tag {
      color: var(--orange); text-transform: uppercase; font-weight: 700;
      font-size: .78rem; letter-spacing: .06em; margin-bottom: 10px; display: block;
    }
    .who-carousel__title {
      font-family: 'Montserrat', sans-serif; color: #fff; font-size: 1.9rem;
      font-weight: 800; margin-bottom: 14px; max-width: 640px;
    }
    .who-carousel__title--single-line {
      white-space: nowrap;
      max-width: none;
      font-size: clamp(.84rem, 3.5vw, 1.9rem);
      letter-spacing: -.025em;
    }
    .who-carousel__desc {
      color: rgba(255,255,255,.85); font-size: 1rem; line-height: 1.65; max-width: 560px; margin-bottom: 24px;
    }
    .who-carousel__dots { display: flex; gap: 8px; }
    .who-carousel__dot {
      width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35);
      border: none; cursor: pointer; padding: 0; transition: all .25s ease;
    }
    .who-carousel__dot.active { background: var(--orange); width: 22px; border-radius: 4px; }
    .who-carousel__arrows {
      position: absolute; right: 40px; bottom: 40px; z-index: 3; display: flex; gap: 10px;
    }
    .who-carousel__arrow {
      width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.4);
      background: rgba(255,255,255,.08); color: #fff; font-size: 1.2rem; cursor: pointer;
      display: flex; align-items: center; justify-content: center; transition: all .25s ease;
    }
    .who-carousel__arrow:hover { background: var(--orange); border-color: var(--orange); }
    .gt-pain__grid {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 16px !important;
    }
    .gt-pain__item {
      display: block !important;
      background: rgba(255,255,255,.05) !important;
      border: none !important;
      border-left: 3px solid var(--orange) !important;
      border-radius: 10px !important;
      padding: 28px 26px !important;
    }
    .gt-pain__item h3 { font-size: 1.05rem !important; margin-bottom: 10px !important; }
    .gt-pain__item p { font-size: .92rem !important; }
    @media (max-width: 720px) {
      .gt-pain__grid { grid-template-columns: 1fr !important; }
    }
    @media (max-width: 720px) {
      .who-carousel { min-height: 560px; }
      .who-carousel__content { height: 560px; padding: 28px 24px; }
      .who-carousel__title { font-size: 1.4rem; }
      .who-carousel__arrows { right: 24px; bottom: 24px; }
    }
    .gt-timeline__track {
      position: relative;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
      margin-top: 48px;
    }
    .gt-timeline__track::before {
      content: '';
      position: absolute;
      top: 24px; left: 0; right: 0;
      height: 2px;
      background: var(--orange);
    }
    .gt-timeline__item { position: relative; z-index: 1; text-align: left; }
    .gt-timeline__num {
      position: relative; z-index: 1;
      width: 48px; height: 48px; border-radius: 50%;
      border: 2px solid var(--orange); background: var(--navy-deep); color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.05rem;
      margin-bottom: 22px;
    }
    .gt-timeline__item h3 {
      font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .98rem;
      color: #fff; margin-bottom: 8px;
    }
    .gt-timeline__item p { font-size: .85rem; color: rgba(255,255,255,.7); line-height: 1.6; }
    @media (max-width: 900px) {
      .gt-timeline__track { grid-template-columns: repeat(3, 1fr); gap: 32px 20px; }
      .gt-timeline__track::before { display: none; }
    }
    @media (max-width: 720px) {
      .gt-timeline__track { grid-template-columns: 1fr; gap: 28px; }
    }

.landxx{fill:#0d4564;stroke-width:1.4;stroke:#1c5a7d;fill-rule:evenodd}.coastxx{stroke-width:1}.antxx,.limitxx{fill:#0d4564;stroke:#1c5a7d;stroke-width:0;fill-rule:evenodd}

.country-dot { fill: #e98221; }
.country-dot-ring { fill: none; stroke:#e98221; stroke-width:3.6; opacity:.55; }
.conn-line { fill:none; stroke:#e98221; stroke-width:4.2; stroke-dasharray:12 14; stroke-linecap:round; opacity:.85; animation: connLineFlow 3.6s linear infinite; }@keyframes connLineFlow { from { stroke-dashoffset: 0; } to { stroke-dashoffset: -52; } }
.label-white { font-family:'Montserrat',sans-serif; font-weight:700; font-size:37px; fill:#ffffff; }
.label-orange { font-family:'Montserrat',sans-serif; font-weight:800; font-size:37px; fill:#e98221; letter-spacing:1px; }