:root {
      --navy: #061a3f;
      --navy-soft: #102a60;
      --gold: #d6862c;
      --gold-soft: #fff0dc;
      --teal: #0f766e;
      --mint: #e8f4f1;
      --paper: #fffaf3;
      --sand: #f4eee4;
      --ink: #182238;
      --text: #3b3d45;
      --muted: #697080;
      --line: rgba(16, 42, 96, .14);
      --white: #ffffff;
      --shadow: 0 24px 70px rgba(6, 26, 63, .13);
      --radius: 8px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background: var(--paper);
      letter-spacing: 0;
      -webkit-font-smoothing: antialiased;
      cursor: default;
    }

    img,
    svg {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font: inherit;
      color: inherit;
      cursor: pointer;
      letter-spacing: 0;
    }

    .container {
      width: min(1120px, calc(100% - 40px));
      margin: 0 auto;
    }

    .section {
      padding: 82px 0;
      position: relative;
      scroll-margin-top: 96px;
      min-height: 100svh;
      display: flex;
      align-items: center;
    }

    .cursor-glow {
      position: fixed;
      inset: 0;
      z-index: 90;
      pointer-events: none;
      background:
        radial-gradient(360px circle at var(--cursor-x, 50%) var(--cursor-y, 30%), rgba(214, 134, 44, .18), transparent 42%),
        radial-gradient(520px circle at var(--cursor-x, 50%) var(--cursor-y, 30%), rgba(15, 118, 110, .12), transparent 55%);
      mix-blend-mode: screen;
      opacity: .28;
      transition: opacity .25s ease;
    }

    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 100;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), #f3c079, var(--teal));
      transform: scaleX(var(--scroll-progress, 0));
      transform-origin: left;
      box-shadow: 0 0 18px rgba(214, 134, 44, .55);
      pointer-events: none;
    }

    .section-sand {
      background: var(--sand);
    }

    #publico {
      min-height: 100svh;
      padding-top: 98px;
      padding-bottom: 108px;
    }

    #publico .container {
      width: min(1180px, calc(100% - 40px));
    }

    .section-dark {
      background: var(--navy);
      color: var(--white);
      overflow: hidden;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0;
      color: var(--teal);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 28px;
      height: 2px;
      background: var(--gold);
    }

    .section-dark .eyebrow {
      color: var(--mint);
    }

    .contact-card .eyebrow::before {
      display: none;
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    .display {
      margin-bottom: 0;
      font-family: Montserrat, system-ui, sans-serif;
      color: var(--navy);
      font-size: 38px;
      line-height: 1.08;
      font-weight: 800;
    }

    .section-dark .display {
      color: var(--white);
    }

    .lead {
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.7;
    }

    .section-dark .lead {
      color: rgba(255, 255, 255, .76);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 50px;
      padding: 0 18px;
      border: 1px solid transparent;
      border-radius: var(--radius);
      font-size: 15px;
      font-weight: 800;
      position: relative;
      overflow: hidden;
      isolation: isolate;
      transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
      white-space: nowrap;
    }

    .btn::after {
      content: "";
      position: absolute;
      inset: -50% auto -50% -80%;
      width: 54%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), transparent);
      transform: skewX(-20deg);
      transition: left .6s ease;
      z-index: -1;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn:hover::after {
      left: 130%;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--navy);
      box-shadow: 0 18px 35px rgba(214, 134, 44, .27);
    }

    .btn-primary:hover {
      background: #e39a49;
    }

    .btn-ghost {
      color: var(--white);
      border-color: rgba(255, 255, 255, .28);
      background: rgba(255, 255, 255, .07);
    }

    .btn-light {
      color: var(--navy);
      border-color: var(--line);
      background: var(--white);
    }

    .icon {
      width: 20px;
      height: 20px;
      flex: 0 0 auto;
    }

    .site-header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 50;
      color: var(--navy);
      background: rgba(255, 250, 243, .94);
      border-bottom: 1px solid var(--line);
      box-shadow: 0 12px 34px rgba(6, 26, 63, .08);
      backdrop-filter: blur(14px);
      transition: background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
    }

    .site-header.is-scrolled {
      color: var(--navy);
      background: rgba(255, 250, 243, .94);
      border-color: var(--line);
      box-shadow: 0 12px 34px rgba(6, 26, 63, .08);
      backdrop-filter: blur(14px);
    }

    .nav-shell {
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 13px;
      min-width: 0;
      font-weight: 700;
    }

    .brand img {
      width: 48px;
      height: 48px;
      object-fit: contain;
      flex: 0 0 auto;
    }

    .brand-name {
      display: block;
      font-size: 18px;
      line-height: 1.02;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
    }

    .brand-sub {
      display: block;
      margin-top: 4px;
      font-size: 10px;
      line-height: 1.05;
      opacity: .78;
      font-weight: 700;
      letter-spacing: .11em;
      text-transform: uppercase;
    }

    .desktop-nav {
      display: none;
      align-items: center;
      gap: 22px;
      font-size: 14px;
      font-weight: 800;
    }

    .desktop-nav a {
      opacity: .84;
      transition: opacity .2s ease, color .2s ease;
    }

    .desktop-nav a:hover {
      opacity: 1;
      color: var(--gold);
    }

    .menu-button,
    .menu-close {
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .site-header.is-scrolled .menu-button {
      border-color: var(--line);
      background: var(--white);
    }

    .scrim {
      position: fixed;
      inset: 0;
      z-index: 70;
      background: rgba(6, 26, 63, .56);
      opacity: 0;
      pointer-events: none;
      transition: opacity .25s ease;
    }

    .scrim.is-open {
      opacity: 1;
      pointer-events: auto;
    }

    .mobile-menu {
      position: fixed;
      inset: 0 0 0 auto;
      z-index: 80;
      width: min(370px, 88vw);
      padding: 24px;
      background: var(--navy);
      color: var(--white);
      transform: translateX(100%);
      transition: transform .28s ease;
      display: grid;
      grid-template-rows: auto 1fr auto;
      gap: 28px;
      box-shadow: -28px 0 70px rgba(0, 0, 0, .28);
    }

    .mobile-menu.is-open {
      transform: translateX(0);
    }

    .mobile-menu-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .mobile-links {
      display: grid;
      align-content: start;
    }

    .mobile-links a {
      padding: 20px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .14);
      font-size: 28px;
      font-weight: 800;
    }

    .hero {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      color: var(--white);
      background:
        radial-gradient(circle at 76% 42%, rgba(255, 250, 243, .16) 0 16%, transparent 38%),
        radial-gradient(circle at 92% 78%, rgba(214, 134, 44, .2), transparent 32%),
        linear-gradient(118deg, #061a3f 0%, #0b2e5d 54%, #0f6267 100%),
        var(--navy);
    }

    .hero-logo {
      position: absolute;
      z-index: 1;
      pointer-events: none;
      right: clamp(18px, 4vw, 76px);
      top: 51%;
      width: min(47vw, 740px);
      height: auto;
      padding: clamp(10px, 1.2vw, 22px);
      object-fit: contain;
      background: radial-gradient(ellipse at center, rgba(255, 250, 243, .26), rgba(255, 250, 243, .08) 52%, transparent 73%);
      opacity: .96;
      transform: translateY(-50%);
      filter: drop-shadow(0 30px 62px rgba(0, 0, 0, .26));
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
      background-size: 84px 84px;
      opacity: .13;
      transform: skewY(-5deg) translateY(-12%);
      transform-origin: left top;
      pointer-events: none;
      z-index: 0;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(6, 26, 63, .14), transparent 48%, rgba(255, 250, 243, .08)),
        linear-gradient(180deg, rgba(6, 26, 63, .2), transparent 34%, rgba(6, 26, 63, .34));
      pointer-events: none;
      z-index: 0;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      min-height: 100svh;
      padding: 128px 0 72px;
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 44px;
      align-items: center;
    }

    .hero-copy {
      max-width: 760px;
      display: grid;
      gap: 26px;
    }

    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      width: fit-content;
      padding: 9px 11px;
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .09);
      color: rgba(255, 255, 255, .92);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 18px 42px rgba(0, 0, 0, .12);
      backdrop-filter: blur(14px);
    }

    .kicker svg {
      color: var(--gold);
    }

    .hero h1 {
      margin: 0;
      max-width: 760px;
      font-size: 48px;
      line-height: .98;
      font-weight: 900;
      text-shadow: 0 18px 38px rgba(0, 0, 0, .22);
    }

    .hero p {
      margin: 0;
      max-width: 650px;
      color: rgba(255, 255, 255, .82);
      font-size: 18px;
      line-height: 1.65;
    }

    .hero-actions {
      margin-top: 2px;
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .hero-actions .btn {
      min-width: 228px;
    }

    .hero-points {
      margin: 2px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 12px;
      color: rgba(255, 255, 255, .9);
      font-weight: 700;
    }

    .hero-points li {
      display: grid;
      grid-template-columns: 24px 1fr;
      gap: 12px;
      align-items: start;
      max-width: 620px;
    }

    .hero-points span {
      width: 24px;
      height: 24px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--navy);
      background: var(--gold);
      font-size: 14px;
      font-weight: 900;
    }

    .essentials-panel {
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: var(--radius);
      background: rgba(255, 250, 243, .95);
      color: var(--navy);
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
      transform-style: preserve-3d;
      will-change: transform;
      transition: transform .28s ease, box-shadow .28s ease;
      backdrop-filter: blur(18px);
      margin-top: 34px;
    }

    .essentials-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      padding: 1px;
      border-radius: inherit;
      background: linear-gradient(135deg, rgba(214, 134, 44, .72), rgba(255, 255, 255, .35), rgba(15, 118, 110, .55));
      mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
      mask-composite: exclude;
      pointer-events: none;
      opacity: .85;
    }

    .essentials-panel::after {
      content: "";
      position: absolute;
      inset: -40% -20% auto;
      height: 160px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .56), transparent);
      transform: rotate(8deg) translateX(-130%);
      animation: cardSweep 7s ease-in-out infinite;
      pointer-events: none;
    }

    @keyframes cardSweep {
      0%, 42% { transform: rotate(8deg) translateX(-130%); }
      60%, 100% { transform: rotate(8deg) translateX(130%); }
    }

    .essentials-panel-head {
      display: grid;
      grid-template-columns: 84px 1fr;
      gap: 16px;
      padding: 20px;
      align-items: center;
      border-bottom: 1px solid var(--line);
    }

    .essentials-panel-head img {
      width: 84px;
      height: 62px;
      object-fit: contain;
      padding: 8px;
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: inset 0 0 0 1px rgba(16, 42, 96, .08);
    }

    .essentials-panel-head b {
      display: block;
      font-size: 18px;
      line-height: 1.25;
    }

    .essentials-panel-head span {
      display: block;
      margin-top: 6px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.45;
    }

    .quick-list {
      display: grid;
      padding: 8px 20px 20px;
      gap: 10px;
    }

    .quick-item {
      display: grid;
      grid-template-columns: 40px 1fr;
      gap: 12px;
      align-items: center;
      padding: 12px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    }

    .quick-item:hover {
      transform: translateX(5px);
      border-color: rgba(214, 134, 44, .34);
      box-shadow: 0 14px 34px rgba(6, 26, 63, .08);
    }

    .quick-item svg {
      width: 40px;
      height: 40px;
      padding: 10px;
      border-radius: var(--radius);
      color: var(--teal);
      background: var(--mint);
    }

    .quick-item:nth-child(2) svg {
      color: var(--gold);
      background: var(--gold-soft);
    }

    .quick-item b {
      display: block;
      font-size: 15px;
    }

    .quick-item span {
      display: block;
      margin-top: 2px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.4;
    }

    .intro-grid {
      display: grid;
      gap: 32px;
      align-items: end;
    }

    .intro-grid .lead {
      max-width: 610px;
    }

    .audience-grid,
    .service-grid,
    .steps-grid {
      display: grid;
      gap: 16px;
      margin-top: 34px;
    }

    #publico .intro-grid {
      gap: 42px;
      align-items: center;
    }

    #publico .audience-grid {
      gap: 24px;
      margin-top: 54px;
    }

    #publico .audience-card {
      min-height: 230px;
      padding: 32px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .audience-card,
    .service-card,
    .step-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      padding: 24px;
      position: relative;
      transform-style: preserve-3d;
      will-change: transform;
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    }

    .audience-card::after,
    .service-card::after,
    .step-card::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: radial-gradient(420px circle at var(--card-x, 50%) var(--card-y, 20%), rgba(214, 134, 44, .16), transparent 38%);
      opacity: 0;
      pointer-events: none;
      transition: opacity .22s ease;
    }

    .audience-card:hover,
    .service-card:hover,
    .step-card:hover {
      transform: translateY(-4px);
      border-color: rgba(214, 134, 44, .42);
      box-shadow: 0 18px 45px rgba(6, 26, 63, .08);
    }

    .audience-card:hover::after,
    .service-card:hover::after,
    .step-card:hover::after {
      opacity: 1;
    }

    .audience-card strong,
    .service-card h3,
    .step-card h3 {
      display: block;
      margin: 0;
      color: var(--navy);
      font-size: 20px;
      line-height: 1.25;
    }

    .audience-card p,
    .service-card p,
    .step-card p {
      margin: 10px 0 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
    }

    .service-card {
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: "";
      position: absolute;
      left: 0;
      top: 24px;
      bottom: 24px;
      width: 3px;
      background: var(--gold);
      box-shadow: 0 0 18px rgba(214, 134, 44, .55);
    }

    .service-icon {
      width: 48px;
      height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      border-radius: var(--radius);
      color: var(--teal);
      background: var(--mint);
      transition: transform .28s ease;
    }

    .service-card:hover .service-icon {
      transform: translateZ(22px) rotate(-4deg) scale(1.05);
    }

    .service-card:nth-child(2) .service-icon,
    .service-card:nth-child(4) .service-icon {
      color: var(--gold);
      background: var(--gold-soft);
    }

    .step-number {
      display: inline-flex;
      width: 38px;
      height: 38px;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      border-radius: var(--radius);
      color: var(--navy);
      background: var(--gold);
      font-weight: 900;
    }

    .compact-band {
      margin-top: 34px;
      padding: 22px;
      border-radius: var(--radius);
      color: var(--navy);
      background: linear-gradient(135deg, var(--mint), #fff7eb);
      border: 1px solid var(--line);
      display: grid;
      gap: 14px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .compact-band::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, transparent, rgba(255, 255, 255, .55), transparent),
        radial-gradient(280px circle at 15% 30%, rgba(15, 118, 110, .16), transparent 55%);
      transform: translateX(-100%);
      animation: bandSweep 8s ease-in-out infinite;
      pointer-events: none;
    }

    @keyframes bandSweep {
      0%, 48% { transform: translateX(-100%); }
      70%, 100% { transform: translateX(100%); }
    }

    .compact-band p {
      margin: 0;
      color: var(--text);
      line-height: 1.65;
    }

    .contact-grid {
      display: grid;
      gap: 22px;
      align-items: stretch;
    }

    .contact-card {
      align-self: start;
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .07);
      padding: 26px;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(16px);
      isolation: isolate;
      transform: translateZ(0);
    }

    .contact-card::before {
      content: "";
      position: absolute;
      inset: -1px;
      z-index: 0;
      background: radial-gradient(420px circle at 12% 8%, rgba(214, 134, 44, .22), transparent 58%);
      pointer-events: none;
    }

    .contact-card > * {
      position: relative;
      z-index: 1;
    }

    .contact-links {
      display: grid;
      gap: 12px;
      margin-top: 24px;
    }

    .contact-link {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 14px;
      align-items: center;
      padding: 14px;
      border: 1px solid rgba(255, 255, 255, .13);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .08);
      backface-visibility: hidden;
      transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
    }

    .contact-link:hover {
      transform: translateX(5px);
      background: rgba(255, 255, 255, .12);
      border-color: rgba(214, 134, 44, .36);
      box-shadow: inset 3px 0 0 rgba(214, 134, 44, .78);
    }

    .contact-link svg {
      width: 44px;
      height: 44px;
      padding: 11px;
      border-radius: var(--radius);
      color: var(--gold);
      background: rgba(214, 134, 44, .14);
    }

    .contact-link b {
      display: block;
      color: var(--white);
      line-height: 1.25;
    }

    .contact-link span {
      display: block;
      margin-top: 4px;
      color: rgba(255, 255, 255, .68);
      font-size: 14px;
      line-height: 1.35;
      overflow-wrap: anywhere;
    }

    .partners-carousel {
      min-height: 100%;
      padding: 22px;
      border-radius: var(--radius);
      background: var(--paper);
      color: var(--navy);
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-rows: auto auto auto;
      gap: 18px;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .74);
    }

    .partners-carousel::before {
      content: "";
      position: absolute;
      inset: auto -80px -100px auto;
      width: 360px;
      height: 260px;
      background: url("../img/amarilis-logo-mark.png") center / contain no-repeat;
      opacity: .07;
      pointer-events: none;
    }

    .partners-head,
    .partner-controls {
      position: relative;
      z-index: 2;
    }

    .partners-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 16px;
    }

    .partners-head p {
      margin: 0;
      color: var(--teal);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .partners-head h2 {
      margin: 6px 0 0;
      max-width: 420px;
      color: var(--navy);
      font-size: 27px;
      line-height: 1.12;
      font-weight: 900;
    }

    .partner-viewport {
      position: relative;
      z-index: 1;
      min-height: 455px;
      aspect-ratio: 6 / 7;
      border-radius: var(--radius);
      overflow: hidden;
      background:
        linear-gradient(145deg, rgba(6, 26, 63, .96), rgba(16, 42, 96, .82)),
        var(--navy);
      box-shadow: 0 24px 70px rgba(6, 26, 63, .22);
    }

    .partner-slide {
      position: absolute;
      inset: 0;
      display: grid;
      align-items: end;
      opacity: 0;
      transform: translateX(28px) scale(.98);
      transition: opacity .45s ease, transform .45s ease;
      pointer-events: none;
    }

    .partner-slide.is-active {
      opacity: 1;
      transform: none;
      pointer-events: auto;
      z-index: 2;
    }

    .partner-photo {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      overflow: hidden;
      background:
        radial-gradient(320px circle at 50% 32%, rgba(214, 134, 44, .22), transparent 58%),
        linear-gradient(155deg, rgba(255, 250, 243, .9), rgba(6, 26, 63, .82));
    }

    .partner-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      opacity: 1;
      filter: none;
      image-rendering: auto;
    }

    .partner-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 42%, rgba(6, 26, 63, .14) 64%, rgba(6, 26, 63, .9));
      pointer-events: none;
    }

    .partner-summary {
      position: relative;
      z-index: 3;
      padding: 24px;
      color: var(--white);
    }

    .partner-summary h3 {
      margin: 0;
      font-size: 30px;
      line-height: 1.08;
      font-weight: 900;
    }

    .partner-details {
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 18px;
      z-index: 4;
      padding: 18px;
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: var(--radius);
      background: rgba(6, 26, 63, .9);
      color: var(--white);
      opacity: 0;
      transform: translateY(14px);
      transition: opacity .24s ease, transform .24s ease;
      backdrop-filter: blur(14px);
    }

    .partners-carousel:hover .partner-slide.is-active .partner-details,
    .partner-viewport:hover .partner-slide.is-active .partner-details,
    .partner-slide:hover .partner-details,
    .partner-slide:focus .partner-details,
    .partner-slide:focus-within .partner-details {
      opacity: 1;
      transform: none;
    }

    .partner-details b {
      display: block;
      margin-bottom: 8px;
      color: var(--gold);
      font-size: 14px;
      text-transform: uppercase;
    }

    .partner-details ul {
      margin: 0;
      padding-left: 18px;
      display: grid;
      gap: 6px;
      color: rgba(255, 255, 255, .84);
      font-size: 14px;
      line-height: 1.45;
    }

    .partner-controls {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    }

    .partner-arrows {
      display: flex;
      gap: 8px;
    }

    .partner-control {
      width: 42px;
      height: 42px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--navy);
      background: var(--white);
      transition: transform .2s ease, border-color .2s ease;
    }

    .partner-control:hover {
      transform: translateY(-2px);
      border-color: rgba(214, 134, 44, .5);
    }

    .partner-control svg {
      width: 18px;
      height: 18px;
    }

    .partner-dots {
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .partner-dot {
      width: 28px;
      height: 4px;
      border: 0;
      border-radius: 999px;
      background: rgba(16, 42, 96, .2);
      padding: 0;
    }

    .partner-dot.is-active {
      background: var(--gold);
    }

    .footer {
      padding: 34px 0;
      background: #061633;
      color: rgba(255, 255, 255, .68);
      font-size: 14px;
    }

    .footer-inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 16px;
      align-items: center;
    }

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

    .wa-fab {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 45;
      width: 58px;
      height: 58px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #25d366;
      color: var(--white);
      box-shadow: 0 18px 34px rgba(0, 0, 0, .25);
      transition: transform .22s ease;
    }

    .wa-fab::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      border: 1px solid rgba(37, 211, 102, .54);
      animation: waPulse 2s ease-out infinite;
    }

    .wa-fab:hover {
      transform: translateY(-3px) scale(1.03);
    }

    @keyframes waPulse {
      from { transform: scale(1); opacity: .8; }
      to { transform: scale(1.45); opacity: 0; }
    }

    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity .65s ease, transform .65s ease;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: none;
    }

    @media (min-width: 720px) {
      .display {
        font-size: 52px;
      }

      .hero h1 {
        font-size: 68px;
      }

      .audience-grid,
      .steps-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .essentials-panel .quick-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .compact-band {
        grid-template-columns: 1fr auto;
      }

      .contact-grid {
        grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
      }
    }

    @media (min-width: 980px) {
      .desktop-nav {
        display: flex;
      }

      .menu-button {
        display: none;
      }

      .hero-inner {
        grid-template-columns: minmax(0, 1fr);
      }

    }

    @media (max-width: 560px) {
      .container {
        width: min(100% - 28px, 1120px);
      }

      .section {
        padding: 64px 0;
      }

      .brand img {
        width: 44px;
        height: 44px;
      }

      .brand-name {
        font-size: 15px;
        letter-spacing: .18em;
      }

      .brand-sub {
        font-size: 9px;
        letter-spacing: .08em;
      }

      .hero {
        background:
          radial-gradient(circle at 54% 22%, rgba(255, 250, 243, .16) 0 14%, transparent 42%),
          radial-gradient(circle at 96% 88%, rgba(214, 134, 44, .18), transparent 36%),
          linear-gradient(155deg, #061a3f 0%, #0b2e5d 66%, #0f6267 100%);
        background-repeat: no-repeat;
      }

      .hero-logo {
        right: 50%;
        top: 28%;
        width: min(88vw, 410px);
        padding: 12px;
        background: radial-gradient(ellipse at center, rgba(255, 255, 255, .28), rgba(255, 255, 255, .1) 52%, transparent 74%);
        opacity: .56;
        transform: translate(50%, -50%);
      }

      .hero-inner {
        min-height: 100svh;
        padding: 120px 0 58px;
      }

      .hero-copy {
        gap: 22px;
      }

      .kicker {
        font-size: 11px;
      }

      .hero h1 {
        font-size: 40px;
      }

      .hero p {
        font-size: 16px;
      }

      .btn {
        width: 100%;
        min-width: 0;
        min-height: 52px;
        white-space: normal;
      }

      .hero-points {
        display: none;
      }

      #publico {
        min-height: 100svh;
        padding-top: 76px;
        padding-bottom: 78px;
      }

      #publico .audience-grid {
        margin-top: 36px;
      }

      #publico .audience-card {
        min-height: auto;
        padding: 24px;
      }

      .contact-card,
      .partners-carousel {
        padding: 22px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
      }
    }
