    @import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,300;0,400;0,500;1,300&family=DM+Sans:wght@300;400;500&display=swap');

    :root {
      --navy: #0b1f38;
      --navy-2: #14304f;
      --blue: #2e4d77;
      --accent: #c8a25a;
      --gold: #b08a45;
      --mint: #e9edf4;
      --amber: #e9edf4;
      --ink: #14202e;
      --muted: #5f6b7a;
      --line: #e2e5ea;
      --paper: #f6f5f1;
      --white: #ffffff;
      --shadow: 0 4px 15px rgba(11, 31, 56, .08);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    html {
      overflow-x: hidden;
    }

    body {
      margin: 0;
      overflow-x: hidden;
      color: var(--ink);
      font-family: 'DM Sans', 'Segoe UI', Arial, sans-serif;
      background-color: var(--paper);
      font-weight: 400;
      line-height: 1.6;
    }

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

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(11, 31, 56, .96);
      border-bottom: 1px solid rgba(255, 255, 255, .08);
      backdrop-filter: blur(16px);
      transition: box-shadow .35s ease, background-color .35s ease, border-color .35s ease;
    }

    .site-header.is-scrolled {
      background: rgba(9, 26, 47, .98);
      border-bottom-color: rgba(255, 255, 255, .14);
      box-shadow: 0 12px 30px rgba(0, 0, 0, .30);
    }

    .nav {
      width: min(1160px, calc(100% - 40px));
      min-height: 126px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      position: relative;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 500;
      color: var(--navy);
      letter-spacing: 0;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      color: var(--white);
      background: var(--navy);
      border-radius: 8px;
      transition: transform .45s ease, background-color .45s ease;
    }

    .brand:hover .brand-mark {
      transform: rotate(-3deg) scale(1.04);
    }

    .brand-mark svg {
      width: 24px;
      height: 24px;
    }

    .brand small {
      display: block;
      color: var(--muted);
      font-size: 12px;
      font-weight: 400;
      margin-top: -2px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      color: rgba(255, 255, 255, .82);
      font-size: 14px;
      font-weight: 400;
    }

    .nav-links a:not(.button):hover {
      color: var(--accent);
    }

    .site-header .button.primary {
      color: var(--navy);
      background: var(--accent);
      border-color: var(--accent);
    }

    .site-header .button.primary:hover {
      background: var(--gold);
      box-shadow: 0 12px 26px rgba(0, 0, 0, .3);
    }

    .menu-toggle {
      width: 44px;
      height: 44px;
      display: none;
      place-items: center;
      gap: 5px;
      padding: 10px;
      border: 1px solid rgba(255, 255, 255, .3);
      border-radius: 8px;
      color: var(--white);
      background: transparent;
      cursor: pointer;
    }

    .menu-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      background: currentColor;
      transition: transform .3s ease, opacity .3s ease;
    }

    .site-header.is-menu-open .menu-toggle span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .site-header.is-menu-open .menu-toggle span:nth-child(2) {
      opacity: 0;
    }

    .site-header.is-menu-open .menu-toggle span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .button {
      display: inline-flex;
      min-height: 44px;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 0 18px;
      border: 1px solid transparent;
      border-radius: 8px;
      font-weight: 500;
      white-space: nowrap;
      transition: transform .6s ease, box-shadow .3s ease, background-color .7s ease, color .3s ease;
    }

    .button:hover {
      transform: translateY(-1px);
    }

    .button.primary:hover {
      background: var(--navy-2);
      box-shadow: 0 18px 38px rgba(11, 31, 56, .28);
    }

    .button.secondary:hover {
      border-color: rgba(46, 77, 119, .40);
      box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
    }

    .button.primary {
      color: var(--white);
      background: var(--blue);
    }

    .button.secondary {
      color: var(--navy);
      background: var(--white);
      border-color: rgba(0, 0, 0, .12);
    }

    .hero {
      position: relative;
      overflow: hidden;
      color: var(--white);
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image: url("https://images.pexels.com/photos/3184418/pexels-photo-3184418.jpeg?auto=compress&cs=tinysrgb&w=1600");
      background-size: cover;
      background-position: center top;
      filter: blur(7px) saturate(.5);
      transform: scale(1.06);
      z-index: 0;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(11, 31, 56, .92) 0%, rgba(14, 36, 62, .82) 55%, rgba(200, 162, 90, .14) 100%),
        rgba(8, 20, 36, .68);
      z-index: 1;
    }

    .hero .hero-inner {
      position: relative;
      z-index: 2;
    }

    .home-hero,
    .page-hero {
      position: relative;
      overflow: hidden;
      color: var(--white);
      background: linear-gradient(135deg, var(--navy) 0%, #0e2745 58%, var(--navy-2) 100%);
    }

    .home-hero {
      min-height: auto;
      display: grid;
      align-items: center;
      isolation: isolate;
    }

    .home-background-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -3;
      filter: saturate(.82) contrast(1.04);
      transform: scale(1.02);
      animation: subtleVideoScale 22s ease-in-out infinite alternate;
    }

    .home-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background:
        linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .52) 44%, rgba(0, 0, 0, .18) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .28), rgba(0, 0, 0, .62));
      pointer-events: none;
    }

    .home-hero::before,
    .page-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(120deg, rgba(255, 255, 255, .07), transparent 36%),
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px);
      background-size: 100% 100%, 100% 88px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,.78), transparent 92%);
      pointer-events: none;
    }

    .home-hero-inner {
      position: relative;
      width: min(1160px, calc(100% - 40px));
      min-height: auto;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, .55fr);
      align-items: center;
      gap: 54px;
      padding: 44px 0 56px;
    }

    .home-hero-copy {
      max-width: 760px;
    }

    .hero-form-compact {
      background: rgba(249, 250, 251, .96);
      backdrop-filter: blur(16px);
    }

    .hero-form-compact .form-head {
      padding: 22px 22px 18px;
    }

    .hero-form-compact .form-head h2 {
      font-size: 24px;
    }

    .hero-form-compact .contact-form {
      padding: 22px;
      gap: 12px;
    }

    .hero-form-compact .field input,
    .hero-form-compact .field select {
      min-height: 44px;
    }

    .page-hero {
      padding: 52px 0 56px;
    }

    .page-hero .section-inner {
      position: relative;
    }

    .page-hero h1 {
      max-width: 920px;
    }

    /* trama sutil heredada del hero genérico — absorbida en el nuevo ::before de .hero */

    .hero-inner {
      position: relative;
      width: min(1160px, calc(100% - 40px));
      min-height: auto;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
      align-items: center;
      gap: 54px;
      padding: 40px 0 56px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--blue);
      font-size: 13px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    .eyebrow::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 99px;
      background: var(--accent);
      box-shadow: 0 0 0 6px rgba(200, 162, 90, .16);
    }

    h1 {
      max-width: 780px;
      margin: 20px 0 18px;
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: clamp(42px, 5.8vw, 68px);
      line-height: 1.05;
      letter-spacing: -.01em;
      font-weight: 300;
    }

    h1 em { font-style: italic; color: var(--accent); }

    .hero-copy {
      max-width: 660px;
      margin: 0;
      color: rgba(255, 255, 255, .9);
      font-size: 20px;
      line-height: 1.4;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 32px;
    }

    .contact-section-inner {
      position: relative;
      z-index: 2;
      width: min(1000px, calc(100% - 40px));
      margin: 0 auto;
      padding: 64px 0 72px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;
      text-align: center;
    }

    .contact-header {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .contact-form-horizontal {
      display: grid;
      grid-template-columns: 1fr 1fr 1.4fr auto;
      gap: 12px;
      align-items: end;
      width: 100%;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 12px;
      padding: 20px 24px;
    }

    .contact-form-horizontal .field {
      display: grid;
      gap: 6px;
    }

    .contact-form-horizontal .field label {
      color: rgba(255,255,255,.65);
      font-size: 12px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: .05em;
    }

    .contact-form-horizontal .field input,
    .contact-form-horizontal .field select {
      width: 100%;
      height: 46px;
      padding: 0 13px;
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 8px;
      color: var(--white);
      background: rgba(255,255,255,.1);
      font: inherit;
      font-size: 14px;
      outline: none;
      transition: border-color .3s ease, box-shadow .3s ease;
    }

    .contact-form-horizontal .field input::placeholder {
      color: rgba(255,255,255,.38);
    }

    .contact-form-horizontal .field select option {
      background: var(--navy-2);
      color: var(--white);
    }

    .contact-form-horizontal .field input:focus,
    .contact-form-horizontal .field select:focus {
      border-color: rgba(200, 162, 90, .7);
      box-shadow: 0 0 0 3px rgba(46, 77, 119, .2);
    }

    .contact-form-horizontal .form-submit {
      height: 46px;
      white-space: nowrap;
      align-self: end;
      margin-top: 22px;
    }

    .contact-form-horizontal .form-status {
      grid-column: 1 / -1;
      font-size: 13px;
      min-height: 0;
    }

    .contact-footnote {
      color: rgba(255,255,255,.45);
      font-size: 13px;
      display: flex;
      gap: 10px;
      align-items: center;
      flex-wrap: wrap;
      justify-content: center;
    }

    .contact-footnote a {
      color: rgba(255,255,255,.62);
      text-decoration: none;
      transition: color .2s ease;
    }

    .contact-footnote a:hover {
      color: var(--white);
    }

    .trust-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      max-width: 670px;
      margin-top: 46px;
    }

    .trust-row-centered {
      margin-top: 0;
      width: 100%;
      max-width: 700px;
    }

    .trust-item {
      min-height: 88px;
      padding: 16px;
      border: 1px solid rgba(255, 255, 255, .15);
      border-radius: 8px;
      background: rgba(255, 255, 255, .07);
      transition: transform .55s ease, border-color .35s ease, background-color .35s ease;
    }

    .trust-item:hover {
      transform: translateY(-3px);
      border-color: rgba(46, 77, 119, .40);
      background: rgba(255, 255, 255, .1);
    }

    .trust-item strong {
      display: block;
      color: var(--white);
      font-size: 22px;
      line-height: 1.18;
      font-weight: 500;
    }

    .trust-item span {
      display: block;
      color: rgba(255, 255, 255, .62);
      font-size: 13px;
      margin-top: 6px;
    }

    .contact-wrap {
      position: relative;
      display: grid;
      place-items: center;
    }

    .hero-form {
      width: min(100%, 530px);
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: 8px;
      overflow: hidden;
      background: var(--paper);
      box-shadow: var(--shadow);
    }

    .form-head {
      height: auto;
      padding: 24px 24px 20px;
      border-bottom: 1px solid var(--line);
      color: var(--navy);
      background: var(--white);
    }

    .form-head h2 {
      margin: 0;
      color: var(--navy);
      font-size: 28px;
      line-height: 1.2;
      font-weight: 500;
    }

    .form-head p {
      margin: 10px 0 0;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.45;
    }

    .contact-form {
      display: grid;
      gap: 14px;
      padding: 24px;
    }

    .field-group {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .field {
      display: grid;
      gap: 7px;
    }

    .field label {
      color: var(--navy);
      font-size: 13px;
      font-weight: 500;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      min-height: 46px;
      padding: 0 13px;
      border: 1px solid #c6cedb;
      border-radius: 8px;
      color: var(--navy);
      background: var(--white);
      font: inherit;
      font-size: 14px;
      outline: none;
      transition: border-color .3s ease, box-shadow .3s ease, transform .6s ease;
    }

    .field textarea {
      min-height: 104px;
      resize: vertical;
      padding-top: 12px;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 4px rgba(46, 77, 119, .14);
      transform: translateY(-1px);
    }

    .form-note {
      margin: 0;
      color: var(--muted);
      font-size: 12px;
    }

    .field-hidden {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }

    .form-submit {
      width: 100%;
      border: 0;
      cursor: pointer;
    }

    .form-submit:disabled {
      cursor: wait;
      opacity: .72;
      transform: none;
    }

    .form-status {
      min-height: 20px;
      margin: 0;
      color: var(--navy);
      font-size: 13px;
      line-height: 1.4;
    }

    .form-status.is-success {
      color: #126343;
    }

    .form-status.is-error {
      color: #9a2435;
    }

    .tag {
      padding: 5px 9px;
      border-radius: 999px;
      color: var(--navy);
      background: var(--amber);
      font-size: 11px;
      font-weight: 500;
    }

    .floating-badge {
      position: absolute;
      right: 0;
      bottom: 50px;
      max-width: 250px;
      padding: 18px;
      border-radius: 8px;
      color: var(--navy);
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: 0 8px 24px rgba(0, 0, 0, .10);
    }

    .floating-badge b {
      display: block;
      font-size: 15px;
      font-weight: 500;
    }

    .floating-badge span {
      display: block;
      margin-top: 5px;
      color: var(--muted);
      font-size: 13px;
    }

    section {
      padding: 52px 0;
    }

    .section-inner {
      width: min(1160px, calc(100% - 40px));
      margin: 0 auto;
    }

    .section-head {
      max-width: 760px;
      margin: 0 auto 36px;
      text-align: center;
    }

    .section-head .section-lead {
      margin-left: auto;
      margin-right: auto;
    }

    .section-kicker {
      color: var(--blue);
      font-size: 13px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    h2 {
      margin: 10px 0 0;
      color: var(--navy);
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.12;
      letter-spacing: -.01em;
      font-weight: 300;
    }

    h2 em { font-style: italic; color: var(--blue); }

    .section-lead {
      margin: 16px 0 0;
      color: var(--muted);
      font-size: 19px;
      font-weight: 400;
      line-height: 1.55;
    }

    .problem-grid {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 28px;
      align-items: stretch;
    }

    .risk-panel {
      padding: 32px;
      border-radius: 8px;
      color: var(--white);
      background: var(--navy);
      min-height: 100%;
    }

    .risk-panel h3 {
      margin: 0;
      font-size: 28px;
      line-height: 1.25;
      font-weight: 500;
    }

    .risk-panel p {
      color: #9aafc8;
      margin: 18px 0 0;
      font-size: 18px;
      line-height: 1.55;
    }

    .risk-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .risk-card,
    .service-card,
    .step-card,
    .feature-card {
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--white);
      transition: background-color .7s ease, border-color .3s ease, transform .6s ease, box-shadow .3s ease;
    }

    .risk-card:hover,
    .service-card:not(.highlight):hover,
    .step-card:hover,
    .feature-card:hover {
      background: var(--paper);
      border-color: rgba(46, 77, 119, .45);
      transform: translateY(-4px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
    }

    .audience-card:hover {
      background: rgba(46, 77, 119, .22);
      border-color: rgba(200, 162, 90, .55);
      transform: translateY(-4px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, .32);
    }

    .risk-card {
      min-height: 140px;
      padding: 22px;
    }

    .icon {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: var(--blue);
      background: var(--amber);
      margin-bottom: 18px;
      transition: transform .45s ease, background-color .45s ease;
    }

    .risk-card:hover .icon,
    .service-card:hover .icon,
    .step-card:hover .icon,
    .feature-card:hover .icon {
      transform: translateY(-2px) scale(1.04);
      background: #dbe3ee;
    }

    .icon svg {
      width: 22px;
      height: 22px;
    }

    .risk-card h3,
    .service-card h3,
    .step-card h3,
    .feature-card h3 {
      margin: 0;
      color: var(--navy);
      font-size: 19px;
      line-height: 1.35;
      font-weight: 500;
    }

    .risk-card p,
    .service-card p,
    .step-card p,
    .feature-card p {
      margin: 10px 0 0;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.45;
    }

    .package {
      background: var(--paper);
    }

    .package-layout {
      display: block;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .service-card {
      min-height: 230px;
      padding: 26px;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .feature-card {
      min-height: 300px;
      padding: 30px;
      text-align: center;
    }

    .feature-card .feature-icon {
      margin-left: auto;
      margin-right: auto;
    }

    .feature-image-card {
      padding: 0;
      overflow: hidden;
      background: var(--navy);
    }

    .feature-image-card img {
      width: 100%;
      height: 100%;
      min-height: 300px;
      display: block;
      object-fit: cover;
      filter: saturate(.88) contrast(1.02);
      transition: transform .7s ease, filter .7s ease;
    }

    .feature-image-card:hover img {
      transform: scale(1.04);
      filter: saturate(.95) contrast(1.04);
    }

    .feature-number {
      display: block;
      color: var(--blue);
      font-size: 16px;
      font-weight: 500;
      margin-bottom: 88px;
    }

    .feature-icon {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      margin-bottom: 24px;
      border-radius: 8px;
      color: var(--blue);
      background: var(--amber);
      transition: transform .45s ease, background-color .45s ease;
    }

    .feature-icon svg {
      width: 23px;
      height: 23px;
    }

    .feature-card:hover .feature-icon {
      transform: translateY(-2px) scale(1.04);
      background: #dbe3ee;
    }

    .service-card.highlight {
      color: var(--white);
      background: linear-gradient(135deg, var(--navy), var(--navy-2));
      border-color: rgba(255, 255, 255, .1);
    }

    .service-card.highlight:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, .14);
    }

    .service-card.highlight h3,
    .service-card.highlight p {
      color: var(--white);
    }

    .service-card.highlight p {
      color: #c7d8ee;
    }

    .side-cta {
      position: sticky;
      top: 96px;
      padding: 28px;
      border-radius: 8px;
      color: var(--white);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 42%),
        var(--navy);
      box-shadow: var(--shadow);
    }

    .side-cta h3 {
      margin: 0;
      font-size: 28px;
      line-height: 1.2;
      font-weight: 500;
    }

    .side-cta p {
      color: #9aafc8;
      margin: 16px 0 22px;
      font-size: 17px;
      line-height: 1.48;
    }

    .check-list {
      display: grid;
      gap: 12px;
      margin: 0 0 24px;
      padding: 0;
      list-style: none;
    }

    .check-list li {
      display: grid;
      grid-template-columns: 22px 1fr;
      gap: 10px;
      color: #e8f2ff;
      font-size: 14px;
      line-height: 1.45;
    }

    .check-list li::before {
      content: "";
      width: 18px;
      height: 18px;
      margin-top: 2px;
      border-radius: 99px;
      background: var(--blue);
      box-shadow: inset 0 0 0 5px rgba(0, 0, 0, .18);
    }

    .steps {
      background: var(--white);
    }

    .step-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .step-card {
      min-height: 230px;
      padding: 24px;
      text-align: center;
    }

    .step-number {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      margin: 0 auto 18px;
      border-radius: 8px;
      color: var(--white);
      background: var(--navy);
      font-weight: 500;
    }

    .audience {
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .audience::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: url("https://images.pexels.com/photos/3182812/pexels-photo-3182812.jpeg?auto=compress&cs=tinysrgb&w=1600");
      background-size: cover;
      background-position: center;
      filter: blur(6px) saturate(.6);
      transform: scale(1.06);
      z-index: 0;
    }

    .audience::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(46, 77, 119, .38) 0%, transparent 48%),
        rgba(10, 10, 10, .72);
      z-index: 1;
    }

    .audience .section-inner {
      position: relative;
      z-index: 2;
    }

    .audience h2 {
      color: var(--white);
    }

    .audience .section-lead {
      color: rgba(255, 255, 255, .82);
    }

    .audience-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-top: 34px;
    }

    .audience-card {
      min-height: 150px;
      padding: 24px;
      border: 1px solid rgba(255, 255, 255, .14);
      border-radius: 8px;
      background: rgba(255, 255, 255, .07);
      text-align: center;
      transition: background-color .7s ease, border-color .3s ease, transform .6s ease, box-shadow .3s ease;
    }

    .audience-card b {
      display: block;
      color: var(--white);
      font-size: 18px;
      font-weight: 500;
    }

    .audience-card span {
      display: block;
      margin-top: 10px;
      color: rgba(255, 255, 255, .78);
      font-size: 16px;
      line-height: 1.45;
    }

    .final-cta {
      padding: 78px 0;
      background: var(--paper);
    }

    .cta-box {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 28px;
      padding: 36px;
      border-radius: 8px;
      color: var(--white);
      background: linear-gradient(135deg, var(--navy), var(--navy-2));
      box-shadow: var(--shadow);
    }

    .cta-box h2 {
      color: var(--white);
      margin: 0;
      font-size: clamp(30px, 4vw, 46px);
    }

    .cta-box p {
      max-width: 680px;
      margin: 12px 0 0;
      color: #9aafc8;
    }

    html.js .motion-ready .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .85s ease, transform .85s ease;
      will-change: opacity, transform;
    }

    html.js .motion-ready .reveal.is-visible,
    html.js .motion-ready .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .motion-ready .reveal-delay {
      transition-delay: .12s;
    }

    .motion-ready .reveal-delay-2 {
      transition-delay: .22s;
    }

    @keyframes subtleVideoScale {
      from {
        transform: scale(1.02);
      }
      to {
        transform: scale(1.075);
      }
    }

    @keyframes backgroundDrift {
      from {
        background-position: 0 0, 0 0;
      }
      to {
        background-position: 0 0, 0 44px;
      }
    }

    .split-section {
      background: var(--white);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .split-layout {
      display: grid;
      grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
      gap: 56px;
      align-items: start;
    }

    .split-copy {
      display: grid;
      gap: 18px;
      color: var(--muted);
      font-size: 22px;
      line-height: 1.36;
    }

    .split-copy p {
      margin: 0;
    }

    .service-list {
      display: grid;
      border-top: 1px solid var(--line);
    }

    .service-row {
      display: grid;
      grid-template-columns: 80px 1fr;
      gap: 32px;
      padding: 34px 0;
      border-bottom: 1px solid var(--line);
    }

    .service-row > span {
      color: var(--blue);
      font-size: 18px;
      font-weight: 500;
    }

    .service-badge {
      width: 72px;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding-top: 2px;
    }

    .service-num-icon {
      width: 64px;
      height: 64px;
      color: var(--blue);
      transition: transform .45s ease, color .3s ease;
      flex-shrink: 0;
    }

    .service-row:hover .service-num-icon {
      transform: translateY(-3px) scale(1.06);
      color: var(--accent);
    }

    .service-row h2 {
      margin: 0;
      font-size: clamp(28px, 3vw, 42px);
    }

    .service-row p {
      max-width: 820px;
      margin: 12px 0 0;
      color: var(--muted);
      font-size: 19px;
      line-height: 1.45;
    }

    .contact-page-hero {
      padding-bottom: 110px;
    }

    .contact-layout {
      display: grid;
      grid-template-columns: minmax(0, .95fr) minmax(0, .85fr);
      gap: 54px;
      align-items: center;
    }

    .visual-break {
      background: var(--white);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .visual-grid {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
      gap: 44px;
      align-items: center;
    }

    .visual-grid-reverse {
      grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    }

    .visual-grid-reverse img {
      order: 2;
    }

    .visual-grid img {
      width: 100%;
      aspect-ratio: 16 / 10;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: var(--shadow);
      filter: saturate(.88) contrast(1.02);
    }

    .visual-grid p {
      margin: 16px 0 0;
      color: var(--muted);
      font-size: 20px;
      line-height: 1.42;
    }

    .contact-mini-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 34px;
      max-width: 520px;
    }

    .contact-mini-grid > div {
      min-height: 132px;
      padding: 18px;
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: 8px;
      background: rgba(255, 255, 255, .08);
      transition: transform .45s ease, border-color .35s ease, background-color .35s ease;
    }

    .contact-mini-grid > div:hover {
      transform: translateY(-3px);
      border-color: rgba(46, 77, 119, .40);
      background: rgba(255, 255, 255, .12);
    }

    .mini-icon {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      border-radius: 8px;
      color: var(--navy);
      background: var(--blue);
    }

    .mini-icon svg {
      width: 20px;
      height: 20px;
    }

    .contact-mini-grid b,
    .contact-mini-grid small {
      display: block;
    }

    .contact-mini-grid b {
      color: var(--white);
      font-size: 17px;
      font-weight: 500;
    }

    .contact-mini-grid small {
      margin-top: 4px;
      color: rgba(255, 255, 255, .76);
      font-size: 13px;
    }

    .legal-hero {
      padding-bottom: 76px;
    }

    .legal-layout {
      display: grid;
      justify-items: center;
    }

    .legal-content {
      width: min(100%, 860px);
      padding: 40px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--white);
      box-shadow: var(--shadow);
    }

    .legal-content h2 {
      margin: 32px 0 12px;
      color: var(--navy);
      font-size: 26px;
      line-height: 1.25;
      font-weight: 500;
    }

    .legal-content p,
    .legal-content li {
      color: var(--muted);
      font-size: 17px;
      line-height: 1.7;
    }

    .legal-content p {
      margin: 0 0 18px;
    }

    .legal-content ul {
      margin: 0 0 20px;
      padding-left: 22px;
    }

    .legal-content a {
      color: var(--navy);
      text-decoration: underline;
      text-decoration-color: var(--blue);
      text-underline-offset: 3px;
    }

    footer {
      padding: 64px 0 0;
      color: #9aafc8;
      background: var(--navy);
      border-top: 1px solid rgba(255,255,255,.08);
      font-size: 14px;
    }

    .footer-inner {
      width: min(1160px, calc(100% - 40px));
      margin: 0 auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
      gap: 36px;
      align-items: start;
      padding-bottom: 44px;
    }

    .footer-brand .brand {
      color: var(--white);
    }

    .footer-brand .brand small {
      color: rgba(255, 255, 255, .65);
    }

    .footer-brand .brand-mark {
      background: var(--blue);
      color: var(--white);
      box-shadow: none;
    }

    .footer-brand p {
      max-width: 380px;
      margin: 22px 0 0;
      color: rgba(255, 255, 255, .72);
      font-size: 16px;
      line-height: 1.55;
    }

    .footer-column {
      display: grid;
      gap: 10px;
    }

    .footer-column h3 {
      margin: 0 0 10px;
      color: var(--white);
      font-size: 15px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    .footer-column a {
      color: rgba(255, 255, 255, .72);
      line-height: 1.35;
      transition: color .25s ease, transform .25s ease;
    }

    .footer-column a:hover {
      color: var(--blue);
      transform: translateX(2px);
      text-decoration: none;
    }

    .footer-links {
      display: inline-flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .footer-bottom {
      width: min(1160px, calc(100% - 40px));
      min-height: 58px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      border-top: 1px solid rgba(255, 255, 255, .12);
      color: rgba(255, 255, 255, .6);
      flex-wrap: wrap;
    }

    .footer-links a:hover {
      color: var(--navy);
      text-decoration: underline;
      text-decoration-color: var(--blue);
      text-underline-offset: 3px;
    }

    @media (max-width: 960px) {
      .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .menu-toggle {
        display: grid;
      }

      .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 12px;
        color: var(--ink);
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(255, 255, 255, .98);
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity .25s ease, transform .25s ease;
      }

      .site-header.is-menu-open .nav-links {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }

      .nav-links a {
        min-height: 48px;
        display: flex;
        align-items: center;
        padding: 0 12px;
        border-radius: 8px;
      }

      .nav-links a:hover {
        background: var(--paper);
        text-decoration: none;
      }

      .nav-links .button {
        margin-top: 8px;
        width: 100%;
      }

      .hero-inner,
      .home-hero-inner,
      .problem-grid,
      .package-layout,
      .cta-box,
      .split-layout,
      .contact-layout,
      .visual-grid,
      .visual-grid-reverse {
        grid-template-columns: 1fr;
      }

      .visual-grid-reverse img {
        order: 0;
      }

      .hero-inner {
        min-height: auto;
        padding-top: 62px;
      }

      .home-hero-inner {
        min-height: auto;
        padding-top: 62px;
      }

      .contact-wrap {
        min-height: auto;
      }

      .floating-badge {
        right: 18px;
        bottom: -18px;
      }

      .side-cta {
        position: static;
      }

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

    @media (max-width: 640px) {
      .nav {
        width: min(100% - 28px, 1160px);
        min-height: 66px;
      }

      .brand small {
        display: none;
      }

      .hero-inner,
      .home-hero-inner,
      .section-inner,
      .footer-inner,
      .footer-bottom {
        width: min(100% - 28px, 1160px);
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .hero-inner {
        gap: 36px;
        padding-bottom: 66px;
      }

      .hero-copy,
      .section-lead {
        font-size: 16px;
      }

      .trust-row,
      .risk-list,
      .service-grid,
      .step-grid,
      .audience-grid,
      .feature-grid,
      .hero-form {
        width: 100%;
      }

      .trust-row,
      .risk-list,
      .service-grid,
      .step-grid,
      .audience-grid,
      .feature-grid,
      .field-group {
        grid-template-columns: 1fr;
      }

      .contact-form-horizontal {
        grid-template-columns: 1fr;
      }

      .contact-form-horizontal .form-submit {
        margin-top: 4px;
        width: 100%;
      }

      .hero-form-compact {
        padding: 12px;
      }

      .feature-number {
        margin-bottom: 52px;
      }

      .service-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 28px 0;
      }

      .service-badge {
        width: auto;
        min-height: auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
      }

      .contact-mini-grid {
        grid-template-columns: 1fr;
      }

      .legal-content {
        padding: 26px;
      }

      section {
        padding: 36px 0;
      }

      .cta-box {
        padding: 28px;
      }

      .button {
        width: 100%;
      }
    }

    /* ─── Dashboard screenshot sections ─── */
    .dashboard-section {
      background: var(--paper);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .dashboard-section.dark {
      background: var(--navy);
      border-top-color: rgba(255,255,255,.1);
      border-bottom-color: rgba(255,255,255,.1);
    }

    .dashboard-section.dark .section-kicker {
      color: var(--blue);
    }

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

    .dashboard-section.dark .section-lead {
      color: #9aafc8;
    }

    .dashboard-section.dark p {
      color: #9aafc8;
    }

    /* Single hero screenshot */
    .screenshot-hero {
      margin-top: 36px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 32px 80px rgba(20,27,56,.22);
      border: 1px solid rgba(20,27,56,.12);
      position: relative;
    }

    .screenshot-hero img {
      width: 100%;
      display: block;
      object-fit: cover;
      filter: saturate(.92) contrast(1.02);
      transition: transform .8s ease, filter .8s ease;
    }

    .screenshot-hero:hover img {
      transform: scale(1.01);
      filter: saturate(1) contrast(1.03);
    }

    /* Browser frame mockup */
    .browser-frame {
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 28px 72px rgba(20,27,56,.2);
      border: 1px solid rgba(20,27,56,.14);
    }

    .browser-bar {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 10px 14px;
      background: #e8ecf0;
      border-bottom: 1px solid rgba(20,27,56,.1);
    }

    .browser-bar .dot {
      width: 11px;
      height: 11px;
      border-radius: 50%;
    }

    .browser-bar .dot:nth-child(1) { background: #ff5f57; }
    .browser-bar .dot:nth-child(2) { background: #febc2e; }
    .browser-bar .dot:nth-child(3) { background: #28c840; }

    .browser-bar .url-bar {
      flex: 1;
      margin: 0 12px;
      height: 22px;
      background: rgba(255,255,255,.85);
      border-radius: 4px;
      border: 1px solid rgba(20,27,56,.1);
    }

    .browser-frame img {
      width: 100%;
      display: block;
      object-fit: cover;
      transition: transform .8s ease;
    }

    .browser-frame:hover img {
      transform: scale(1.015);
    }

    /* Two-col screenshot layout */
    .screenshot-pair {
      display: grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 20px;
      margin-top: 36px;
    }

    .screenshot-pair .browser-frame img {
      aspect-ratio: 16/9;
    }

    /* Split: text + single screenshot */
    .screenshot-split {
      display: grid;
      grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
      gap: 48px;
      align-items: center;
    }

    .screenshot-split.reverse {
      grid-template-columns: minmax(0,1.1fr) minmax(0,.9fr);
    }

    .screenshot-split.reverse .screenshot-split-img {
      order: -1;
    }

    .screenshot-split-text h2 {
      margin-top: 10px;
    }

    .screenshot-split-text p {
      margin: 14px 0 0;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.48;
    }

    /* Three screenshots strip */
    .screenshot-trio {
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 16px;
      margin-top: 36px;
    }

    .screenshot-trio .browser-frame img {
      aspect-ratio: 4/3;
    }

    /* Caption badge under a screenshot */
    .screenshot-caption {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 14px;
      color: var(--muted);
      font-size: 13px;
    }

    .screenshot-caption::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--blue);
      flex-shrink: 0;
    }

    /* Wazuh dark frame */
    .wazuh-frame {
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 28px 72px rgba(4,197,254,.12), 0 12px 32px rgba(20,27,56,.3);
      border: 1px solid rgba(4,197,254,.2);
    }

    .wazuh-bar {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 10px 14px;
      background: #0f1a2e;
      border-bottom: 1px solid rgba(4,197,254,.15);
    }

    .wazuh-bar .dot {
      width: 11px;
      height: 11px;
      border-radius: 50%;
    }

    .wazuh-bar .dot:nth-child(1) { background: #ff5f57; }
    .wazuh-bar .dot:nth-child(2) { background: #febc2e; }
    .wazuh-bar .dot:nth-child(3) { background: #28c840; }

    .wazuh-bar .url-bar {
      flex: 1;
      margin: 0 12px;
      height: 22px;
      background: rgba(4,197,254,.08);
      border-radius: 4px;
      border: 1px solid rgba(4,197,254,.18);
    }

    .wazuh-frame img {
      width: 100%;
      display: block;
      object-fit: cover;
      transition: transform .8s ease;
    }

    .wazuh-frame:hover img {
      transform: scale(1.015);
    }

    /* Wazuh screenshot grid 2x2 */
    .wazuh-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 20px;
      margin-top: 36px;
    }

    .wazuh-grid .wazuh-frame img {
      aspect-ratio: 16/9;
    }

    .wazuh-card {
      display: grid;
      gap: 12px;
    }

    .wazuh-card-label {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--blue);
      font-size: 13px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    .wazuh-card-label::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--blue);
      box-shadow: 0 0 0 4px rgba(4,197,254,.18);
    }

    .wazuh-card p {
      margin: 0;
      color: #9aafc8;
      font-size: 14px;
      line-height: 1.5;
    }

    @media (max-width: 960px) {
      .screenshot-pair,
      .screenshot-trio,
      .wazuh-grid {
        grid-template-columns: 1fr;
      }

      .screenshot-split,
      .screenshot-split.reverse {
        grid-template-columns: 1fr;
      }

      .screenshot-split.reverse .screenshot-split-img {
        order: 0;
      }
    }

    /* ─── end dashboard screenshot sections ─── */

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
      }
    }

/* ═══════════════════════════════════════════════════════
   ANIMATIONS & INTERACTIONS
   ═══════════════════════════════════════════════════════ */

/* ── Keyframes ──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.5); }
}

/* ── Scroll-reveal base states (solo si el JS está activo) ── */
html.js .reveal-up,
html.js .reveal-left,
html.js .reveal-right {
  opacity: 0;
  transition: opacity 0.65s cubic-bezier(.22,1,.36,1),
              transform 0.65s cubic-bezier(.22,1,.36,1);
}
html.js .reveal-up    { transform: translateY(28px); }
html.js .reveal-left  { transform: translateX(-32px); }
html.js .reveal-right { transform: translateX(32px); }

html.js .reveal-up.visible,
html.js .reveal-left.visible,
html.js .reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* Legacy .reveal alias */
html.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
html.js .reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Stagger children ─────────────────────────────── */
html.js .reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.00s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.40s; }
html.js .reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ── Card hover lift ──────────────────────────────── */
.feature-card,
.service-card,
.risk-card,
.step-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.feature-card:hover,
.service-card:hover,
.risk-card:hover,
.step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,.07);
  border-color: #9aafc8;
}
.audience-card {
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.audience-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

/* ── Floating mockup ──────────────────────────────── */
.mockup-float {
  animation: float 5.5s ease-in-out infinite;
}

/* ── Scrolled header glass ────────────────────────── */
.site-header.scrolled {
  background: rgba(9, 26, 47, .98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,.07);
}

/* ── Security dashboard wrapper ───────────────────── */
.sec-mockup-outer {
  background: #0d1117;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.06);
}

/* ── Photo cards (consulting / capacitación) ──────── */
.photo-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.photo-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ── Service row with visual ──────────────────────── */
.service-row-with-img {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}
.service-row-with-img.flip {
  grid-template-columns: 380px 1fr;
}
.service-row-with-img.flip .srv-img { order: -1; }
.srv-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.srv-img img {
  width: 100%;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
}

@media (max-width: 900px) {
  .service-row-with-img,
  .service-row-with-img.flip {
    grid-template-columns: 1fr;
  }
  .service-row-with-img.flip .srv-img { order: 0; }
}

    /* ===== Botón flotante WhatsApp ===== */
    .wa-float {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 60;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 54px;
      padding: 0 20px 0 14px;
      border-radius: 99px;
      background: #25d366;
      color: #fff;
      font-weight: 500;
      font-size: 15px;
      box-shadow: 0 10px 28px rgba(11, 31, 56, .30);
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .wa-float:hover {
      transform: translateY(-2px) scale(1.03);
      box-shadow: 0 16px 34px rgba(11, 31, 56, .36);
    }

    .wa-float svg {
      width: 28px;
      height: 28px;
      flex: none;
    }

    @media (max-width: 640px) {
      .wa-float span { display: none; }
      .wa-float { padding: 0 13px; }
    }

    /* ===== Sección "dos mundos" (landing) ===== */
    .dual-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 26px;
      margin-top: 40px;
    }

    .dual-card {
      position: relative;
      display: flex;
      flex-direction: column;
      border-radius: 14px;
      overflow: hidden;
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      transition: transform .35s ease, box-shadow .35s ease;
    }

    .dual-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 44px rgba(11, 31, 56, .14);
    }

    .dual-card-media {
      position: relative;
      aspect-ratio: 16 / 8;
      overflow: hidden;
    }

    .dual-card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .dual-card-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(11, 31, 56, .05), rgba(11, 31, 56, .35));
    }

    .dual-card-tag {
      position: absolute;
      left: 16px;
      bottom: 14px;
      z-index: 2;
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 6px 12px;
      border-radius: 6px;
      background: rgba(11, 31, 56, .78);
      border: 1px solid rgba(200, 162, 90, .5);
    }

    .dual-card-body {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding: 26px 26px 28px;
      flex: 1;
    }

    .dual-card-body h3 {
      margin: 0;
      font-family: 'Crimson Pro', Georgia, serif;
      font-weight: 400;
      font-size: 27px;
      line-height: 1.15;
      color: var(--navy);
    }

    .dual-card-body p {
      margin: 0;
      color: var(--muted);
      font-size: 15.5px;
    }

    .dual-card-list {
      margin: 4px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 8px;
      color: var(--ink);
      font-size: 14.5px;
    }

    .dual-card-list li {
      display: flex;
      gap: 10px;
      align-items: baseline;
    }

    .dual-card-list li::before {
      content: "";
      flex: none;
      width: 7px;
      height: 7px;
      border-radius: 99px;
      background: var(--accent);
      transform: translateY(-1px);
    }

    .dual-card-cta {
      margin-top: auto;
      padding-top: 10px;
      color: var(--blue);
      font-weight: 500;
      font-size: 15px;
    }

    .dual-card-cta:hover { color: var(--navy); }

    .dual-card.dark {
      background: var(--navy);
      border-color: rgba(200, 162, 90, .28);
      color: #e8ecf2;
    }

    .dual-card.dark .dual-card-body h3 { color: #fff; }
    .dual-card.dark .dual-card-body p { color: rgba(232, 236, 242, .78); }
    .dual-card.dark .dual-card-list { color: rgba(232, 236, 242, .92); }
    .dual-card.dark .dual-card-cta { color: var(--accent); }
    .dual-card.dark .dual-card-cta:hover { color: #fff; }

    @media (max-width: 860px) {
      .dual-grid { grid-template-columns: 1fr; }
    }

    /* ===== Logo tipográfico (wordmark) ===== */
    .brand-word {
      display: flex;
      flex-direction: column;
      gap: 6px;
      font-family: 'Crimson Pro', Georgia, serif;
      font-size: 30px;
      font-weight: 400;
      letter-spacing: .24em;
      line-height: 1;
      text-transform: uppercase;
      color: var(--white);
      transition: color .3s ease;
    }

    .brand-word small {
      font-family: 'DM Sans', 'Segoe UI', Arial, sans-serif;
      font-size: 9px;
      font-weight: 500;
      letter-spacing: .30em;
      text-transform: uppercase;
      color: var(--gold);
        margin: 0;
    }

    .brand:hover .brand-word {
      color: var(--accent);
    }

    .footer-brand .brand-word {
      color: var(--white);
    }

    .footer-brand .brand-word small {
      color: var(--accent);
    }

    @media (max-width: 640px) {
      .brand-word { font-size: 23px; letter-spacing: .2em; }
      .brand-word small { font-size: 8px; letter-spacing: .24em; }
      .nav { min-height: 96px; }
    }

    /* ===== Banner de clientes ===== */
    .clients {
      background: var(--navy);
      padding: 56px 0 60px;
      border-top: 1px solid rgba(255, 255, 255, .06);
    }

    .clients-title {
      margin: 0;
      text-align: center;
      color: rgba(255, 255, 255, .55);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: .22em;
      text-transform: uppercase;
    }

    .clients-strip {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 38px;
      margin-top: 34px;
    }

    .client-logo {
      display: block;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      overflow: hidden;
      background: var(--white);
      box-shadow: 0 10px 26px rgba(0, 0, 0, .30);
      transition: transform .3s ease, box-shadow .3s ease;
    }

    .client-logo img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: grayscale(1);
      opacity: .88;
      transition: filter .35s ease, opacity .35s ease;
    }

    .client-logo:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 34px rgba(0, 0, 0, .38);
    }

    .client-logo:hover img {
      filter: none;
      opacity: 1;
    }

    @media (max-width: 640px) {
      .clients-strip { gap: 22px; }
      .client-logo { width: 88px; height: 88px; }
    }
