    :root {
      --azul: #0677c9;
      --azul-oscuro: #06365f;
      --azul-claro: #eaf6ff;
      --amarillo: #f6c247;
      --texto: #172033;
      --gris: #6b7280;
      --blanco: #ffffff;
      --fondo: #f7fbff;
      --borde: #dbeafe;
      --sombra: 0 20px 50px rgba(6, 54, 95, 0.12);
      --radio: 28px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--texto);
      background: var(--fondo);
      line-height: 1.6;
    }

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

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

    .container {
      width: min(1120px, 92%);
      margin: 0 auto;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 24px;
      border-radius: 999px;
      background: var(--azul);
      color: var(--blanco);
      font-weight: 700;
      border: 0;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      box-shadow: 0 12px 25px rgba(6, 119, 201, 0.25);
    }

    .btn:hover {
      transform: translateY(-2px);
      background: var(--azul-oscuro);
    }

    .btn.secondary {
      background: var(--blanco);
      color: var(--azul-oscuro);
      border: 1px solid var(--borde);
      box-shadow: none;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: linear-gradient(
        315deg,
        #0677c9 0%,
        #078ce3 52%,
        #06365f 100%
      ) !important;
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.18);
      box-shadow: 0 12px 30px rgba(6, 54, 95, 0.18);
    }

    .nav {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .brand strong {
      font-size: 1.25rem;
      color: var(--blanco);
      letter-spacing: -0.03em;
    }

    .brand span {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.82);
      margin-top: 4px;
    }

    .menu {
      display: flex;
      align-items: center;
      gap: 28px;
      font-size: 0.95rem;
      color: #ffffff !important;
      font-weight: 700;
    }

    .menu a {
      position: relative;
      padding: 8px 0;
      transition: color 0.25s ease;
    }

    .menu a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 2px;
      width: 0;
      height: 2px;
      background: var(--amarillo);
      border-radius: 999px;
      transition: width 0.25s ease;
    }

    .menu a:hover {
      color: var(--amarillo) !important;
    }

    .menu a:hover::after {
      width: 100%;
    }

    .menu-toggle {
      display: none;
      border: 1px solid rgba(255, 255, 255, 0.34);
      background: rgba(255, 255, 255, 0.16);
      color: #ffffff;
      padding: 10px 14px;
      border-radius: 12px;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 8px 18px rgba(6, 54, 95, 0.12);
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .menu-toggle:hover {
      transform: translateY(-1px);
      background: rgba(255, 255, 255, 0.24);
    }

    .hero {
      padding: 82px 0 72px;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      align-items: center;
      gap: 52px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--azul-claro);
      color: var(--azul-oscuro);
      padding: 8px 14px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 0.88rem;
      margin-bottom: 22px;
    }

    .hero h1 {
      font-size: clamp(2.4rem, 6vw, 5rem);
      line-height: 0.98;
      letter-spacing: -0.06em;
      color: var(--azul-oscuro);
      margin-bottom: 24px;
    }

    .hero p {
      font-size: 1.16rem;
      color: #334155;
      max-width: 620px;
      margin-bottom: 28px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 34px;
    }

    .checks {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
      color: var(--azul-oscuro);
      font-weight: 700;
    }

    .check {
      background: var(--blanco);
      border: 1px solid var(--borde);
      padding: 12px 16px;
      border-radius: 16px;
      box-shadow: 0 8px 18px rgba(6, 54, 95, 0.06);
    }

    .hero-visual {
      position: relative;
      background: linear-gradient(145deg, #ffffff, #eaf6ff);
      border: 1px solid var(--borde);
      border-radius: 42px;
      padding: 30px;
      box-shadow: var(--sombra);
    }

    .hero-visual::before {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      right: -35px;
      top: -35px;
      background: var(--amarillo);
      border-radius: 50%;
      opacity: 0.28;
      z-index: -1;
    }


    .hero-copy > * {
      opacity: 0;
      transform: translateY(24px);
      animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    .hero-copy .eyebrow { animation-delay: 0.06s; }
    .hero-copy h1 { animation-delay: 0.16s; }
    .hero-copy p { animation-delay: 0.28s; }
    .hero-copy .hero-actions { animation-delay: 0.4s; }
    .hero-copy .checks { animation-delay: 0.52s; }

    @keyframes heroFadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-visual {
      overflow: hidden;
      isolation: isolate;
      transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
    }

    .hero-visual:hover {
      transform: translateY(-6px);
      box-shadow: 0 28px 60px rgba(6, 54, 95, 0.18);
    }

    .hero-visual img,
    .split img,
    .service-card img,
    .card img,
    .benefit img,
    .cta-grid img,
    .founder img {
      transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
    }

    .hero-visual:hover img,
    .split:hover img,
    .service-card:hover img,
    .card:hover img,
    .benefit:hover img,
    .cta-grid:hover img,
    .founder:hover img {
      transform: scale(1.035) translateY(-2px);
      filter: saturate(1.06);
    }

    .floating-badge {
      position: absolute;
      left: 22px;
      bottom: 22px;
      z-index: 2;
      padding: 14px 18px;
      border-radius: 18px;
      background: rgba(6, 54, 95, 0.88);
      color: var(--blanco);
      border: 1px solid rgba(255, 255, 255, 0.18);
      backdrop-filter: blur(10px);
      box-shadow: 0 18px 35px rgba(6, 54, 95, 0.22);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.02em;
      animation: badgeBounce 2.8s ease-in-out infinite;
      transform-origin: center bottom;
    }

    .floating-badge span {
      display: block;
      margin-top: 6px;
      font-size: 0.85rem;
      font-weight: 600;
      color: #dff2ff;
    }

    @keyframes badgeBounce {
      0%, 100% { transform: translateY(0); }
      20% { transform: translateY(-8px); }
      32% { transform: translateY(0); }
      42% { transform: translateY(-4px); }
      52% { transform: translateY(0); }
    }

    .section {
      padding: 88px 0;
    }

    .section.white {
      background: var(--blanco);
    }

    .reveal {
      opacity: 0;
      transform: translateY(34px);
      transition:
        opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
      will-change: opacity, transform;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .delay-1 { transition-delay: 0.08s; }
    .delay-2 { transition-delay: 0.16s; }
    .delay-3 { transition-delay: 0.24s; }
    .delay-4 { transition-delay: 0.32s; }

    .panel,
    .service-card,
    .card,
    .feature-item,
    .benefit,
    .founder,
    .outsource,
    form,
    .check {
      transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
    }

    .panel:hover,
    .feature-item:hover,
    .benefit:hover,
    form:hover,
    .check:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 36px rgba(6, 54, 95, 0.12);
      border-color: rgba(6, 119, 201, 0.25);
    }

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

    .section-title h2 {
      font-size: clamp(2rem, 4vw, 3.3rem);
      line-height: 1.05;
      color: var(--azul-oscuro);
      letter-spacing: -0.04em;
      margin-bottom: 18px;
    }

    .section-title p {
      color: #475569;
      font-size: 1.08rem;
    }

    .split {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 48px;
      align-items: center;
    }

    .panel {
      background: var(--blanco);
      border: 1px solid var(--borde);
      border-radius: var(--radio);
      padding: 34px;
      box-shadow: var(--sombra);
    }

    .panel h3 {
      font-size: 1.65rem;
      color: var(--azul-oscuro);
      margin-bottom: 14px;
      letter-spacing: -0.03em;
    }

    .panel p {
      color: #475569;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .service-card {
      background: var(--blanco);
      border: 1px solid var(--borde);
      border-radius: 26px;
      padding: 26px;
      min-height: 100%;
      box-shadow: 0 14px 35px rgba(6, 54, 95, 0.08);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--sombra);
    }

    .service-card img {
      height: 120px;
      object-fit: contain;
      margin: 0 auto 22px;
    }

    .service-card h3 {
      font-size: 1.2rem;
      color: var(--azul-oscuro);
      line-height: 1.25;
      margin-bottom: 12px;
      letter-spacing: -0.02em;
    }

    .service-card p {
      color: #475569;
      font-size: 0.98rem;
    }

    .outsource {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 44px;
      align-items: center;
      margin-top: 70px;
      background: linear-gradient(145deg, var(--azul-oscuro), var(--azul));
      color: var(--blanco);
      border-radius: 34px;
      padding: 44px;
      box-shadow: var(--sombra);
      overflow: hidden;
    }

    .outsource h2 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: 1.05;
      letter-spacing: -0.05em;
      margin-bottom: 16px;
    }

    .outsource p {
      color: #f0f9ff;
      margin-bottom: 24px;
    }

    .outsource img {
      max-height: 340px;
      object-fit: contain;
      margin: 0 auto;
    }

    .benefits {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 24px;
    }

    .benefit {
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 20px;
      padding: 18px;
      text-align: center;
    }

    .benefit img {
      height: 58px;
      margin-bottom: 12px;
    }

    .benefit h3 {
      font-size: 1rem;
      color: #ffffff;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .card {
      background: var(--blanco);
      border: 1px solid var(--borde);
      border-radius: 24px;
      padding: 22px;
      box-shadow: 0 12px 30px rgba(6, 54, 95, 0.08);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: var(--sombra);
    }

    .card img {
      height: 190px;
      object-fit: contain;
      margin: 0 auto 18px;
    }

    .card h3 {
      font-size: 1.08rem;
      line-height: 1.25;
      color: var(--azul-oscuro);
      margin-bottom: 10px;
    }

    .card p {
      color: #475569;
      font-size: 0.95rem;
    }

    .founder {
      display: grid;
      grid-template-columns: 180px 1fr;
      gap: 34px;
      align-items: center;
      background: linear-gradient(145deg, var(--azul-oscuro), var(--azul));
      color: var(--blanco);
      border-radius: 34px;
      padding: 42px;
      box-shadow: var(--sombra);
    }

    .founder img {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      object-fit: cover;
      border: 6px solid rgba(255, 255, 255, 0.22);
    }

    .founder h2 {
      font-size: 2rem;
      line-height: 1.1;
      margin-bottom: 10px;
    }

    .founder h3 {
      font-size: 1.2rem;
      color: #dff2ff;
      margin-bottom: 16px;
    }

    .founder p {
      color: #f0f9ff;
      font-size: 1.05rem;
    }

    .cta {
      background: linear-gradient(135deg, #eaf6ff, #ffffff);
      border-top: 1px solid var(--borde);
      border-bottom: 1px solid var(--borde);
    }

    .cta-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 50px;
      align-items: center;
    }

    .cta h2 {
      font-size: clamp(2rem, 4vw, 3.5rem);
      line-height: 1.05;
      color: var(--azul-oscuro);
      letter-spacing: -0.05em;
      margin-bottom: 18px;
    }

    form {
      background: var(--blanco);
      border: 1px solid var(--borde);
      border-radius: 28px;
      padding: 28px;
      box-shadow: var(--sombra);
    }

    .field {
      margin-bottom: 16px;
    }

    label {
      display: block;
      font-weight: 700;
      color: var(--azul-oscuro);
      margin-bottom: 7px;
      font-size: 0.92rem;
    }

    input,
    textarea {
      width: 100%;
      padding: 14px 15px;
      border-radius: 14px;
      border: 1px solid #cbd5e1;
      font: inherit;
      outline: none;
      background: #fbfdff;
    }

    input:focus,
    textarea:focus {
      border-color: var(--azul);
      box-shadow: 0 0 0 4px rgba(6, 119, 201, 0.12);
    }

    textarea {
      min-height: 110px;
      resize: vertical;
    }

    .form-message {
      display: none;
      margin-top: 14px;
      color: #0f766e;
      font-weight: 700;
    }

    .features {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 36px;
      align-items: start;
    }

    .feature-list {
      display: grid;
      gap: 16px;
    }

    .feature-item {
      display: flex;
      gap: 14px;
      background: var(--blanco);
      border: 1px solid var(--borde);
      padding: 18px;
      border-radius: 20px;
    }

    .icon {
      width: 40px;
      height: 40px;
      flex: 0 0 40px;
      border-radius: 12px;
      background: var(--azul-claro);
      color: var(--azul);
      display: grid;
      place-items: center;
      font-weight: 900;
    }

    footer {
      background: var(--azul-oscuro);
      color: var(--blanco);
      padding: 36px 0 20px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 1.1fr 0.7fr;
      gap: 32px;
      margin-bottom: 24px;
      align-items: start;
      justify-items: start;
    }

    .footer-grid > div {
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
      margin-top: 0;
      padding-top: 0;
    }

    .footer-grid > div:last-child {
      justify-self: end;
      text-align: left;
    }

    .footer-grid > div h3 {
      margin-top: 0;
    }

    .footer-map {
      margin: 16px 0;
      overflow: hidden;
      border-radius: 18px;
      box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
      border: 1px solid rgba(255, 255, 255, 0.08);
      min-height: 220px;
    }

    .footer-map iframe {
      width: 100%;
      height: 220px;
      border: 0;
      display: block;
    }

    footer h3 {
      margin: 0 0 10px;
      color: #dff2ff;
    }

    footer p,
    footer a {
      color: #cbd5e1;
      font-size: 0.95rem;
    }

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

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.14);
      padding-top: 22px;
      color: #cbd5e1;
      font-size: 0.9rem;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }



    /* =========================================================
       Capa visual extra: más vida con los colores de Albanea
       Mantiene la paleta azul/amarilla original, pero reduce
       las zonas demasiado blancas con degradados y acentos suaves.
    ========================================================= */
    :root {
      --azul-tinta: #042847;
      --azul-brillante: #0ea5e9;
      --azul-suave-2: #dff2ff;
      --amarillo-suave: #fff4d6;
      --amarillo-medio: #ffd977;
      --gradiente-marca: linear-gradient(135deg, var(--azul-oscuro) 0%, var(--azul) 58%, var(--azul-brillante) 100%);
      --gradiente-claro: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(234, 246, 255, 0.86) 50%, rgba(255, 244, 214, 0.72) 100%);
      --sombra-viva: 0 24px 70px rgba(6, 54, 95, 0.16);
    }

    body {
      background:
        radial-gradient(circle at 8% 7%, rgba(246, 194, 71, 0.22) 0 180px, transparent 181px),
        radial-gradient(circle at 90% 12%, rgba(6, 119, 201, 0.16) 0 230px, transparent 231px),
        radial-gradient(circle at 12% 92%, rgba(14, 165, 233, 0.12) 0 260px, transparent 261px),
        linear-gradient(180deg, #f7fbff 0%, #edf8ff 42%, #fff9ea 100%);
    }

    header {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(234, 246, 255, 0.9));
      border-bottom: 1px solid rgba(6, 119, 201, 0.14);
      box-shadow: 0 12px 30px rgba(6, 54, 95, 0.06);
    }

    .brand strong {
      background: var(--gradiente-marca);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .menu a {
      position: relative;
    }

    .menu a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -8px;
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--azul), var(--amarillo));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.2s ease;
    }

    .menu a:hover::after {
      transform: scaleX(1);
    }

    .btn {
      background: var(--gradiente-marca);
      box-shadow: 0 16px 32px rgba(6, 119, 201, 0.26);
    }

    .btn:hover {
      background: linear-gradient(135deg, var(--azul-tinta), var(--azul));
      box-shadow: 0 20px 40px rgba(6, 54, 95, 0.22);
    }

    .btn.secondary {
      background: linear-gradient(135deg, #ffffff, var(--azul-claro));
      border: 1px solid rgba(6, 119, 201, 0.18);
      box-shadow: 0 10px 24px rgba(6, 54, 95, 0.08);
    }

    .hero,
    .section {
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }

    .hero::before,
    .hero::after,
    .section::before {
      content: "";
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      z-index: -1;
    }

    .hero::before {
      width: 460px;
      height: 460px;
      left: -180px;
      top: -170px;
      background: radial-gradient(circle, rgba(246, 194, 71, 0.34), transparent 68%);
    }

    .hero::after {
      width: 520px;
      height: 520px;
      right: -190px;
      bottom: -260px;
      background: radial-gradient(circle, rgba(6, 119, 201, 0.18), transparent 70%);
    }

    .section::before {
      width: 360px;
      height: 360px;
      right: -165px;
      top: 12%;
      background: radial-gradient(circle, rgba(246, 194, 71, 0.16), transparent 70%);
    }

    .hero .container,
    .section .container {
      position: relative;
      z-index: 1;
    }

    .eyebrow {
      background: linear-gradient(90deg, rgba(234, 246, 255, 0.96), rgba(255, 244, 214, 0.96));
      border: 1px solid rgba(6, 119, 201, 0.16);
      box-shadow: 0 10px 22px rgba(6, 54, 95, 0.07);
    }

    .hero h1 {
      background: linear-gradient(135deg, var(--azul-oscuro) 0%, var(--azul) 52%, #03558f 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero p,
    .section-title p,
    .panel p,
    .service-card p,
    .card p,
    .feature-item p {
      color: #39536f;
    }

    .check {
      background: linear-gradient(135deg, #ffffff, var(--azul-claro));
      border-color: rgba(6, 119, 201, 0.16);
      box-shadow: 0 12px 26px rgba(6, 54, 95, 0.08);
    }

    .check:nth-child(2) {
      background: linear-gradient(135deg, #ffffff, var(--amarillo-suave));
    }

    .hero-visual {
      background:
        radial-gradient(circle at 18% 18%, rgba(246, 194, 71, 0.22), transparent 34%),
        linear-gradient(145deg, #ffffff, #eaf6ff 62%, #fff4d6);
      border-color: rgba(6, 119, 201, 0.18);
      box-shadow: var(--sombra-viva);
    }

    .section.white {
      background: var(--gradiente-claro);
    }

    main > .section:nth-of-type(2) {
      background:
        radial-gradient(circle at 0% 100%, rgba(6, 119, 201, 0.10), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #eaf6ff 56%, #fff4d6 100%);
    }

    #servicios {
      background:
        radial-gradient(circle at 90% 10%, rgba(246, 194, 71, 0.18), transparent 24%),
        radial-gradient(circle at 4% 80%, rgba(6, 119, 201, 0.12), transparent 28%),
        linear-gradient(180deg, #f7fbff 0%, #eaf6ff 46%, #fff8e7 100%);
    }

    #trabajamos {
      background:
        radial-gradient(circle at 10% 0%, rgba(246, 194, 71, 0.14), transparent 25%),
        linear-gradient(135deg, #ffffff 0%, #eef8ff 55%, #fff7df 100%);
    }

    main > .section:nth-of-type(5) {
      background:
        radial-gradient(circle at 84% 14%, rgba(6, 119, 201, 0.13), transparent 25%),
        linear-gradient(180deg, #fff7df 0%, #eaf6ff 100%);
    }

    main > .section:nth-of-type(7) {
      background:
        radial-gradient(circle at 15% 18%, rgba(246, 194, 71, 0.17), transparent 27%),
        linear-gradient(135deg, #eaf6ff 0%, #ffffff 50%, #fff4d6 100%);
    }

    .section-title h2,
    .panel h3,
    .service-card h3,
    .card h3,
    .feature-item h3,
    .cta h2 {
      background: linear-gradient(135deg, var(--azul-oscuro), var(--azul));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .panel,
    .service-card,
    .card,
    .feature-item,
    form {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(234, 246, 255, 0.72));
      border-color: rgba(6, 119, 201, 0.16);
      box-shadow: 0 18px 45px rgba(6, 54, 95, 0.10);
    }

    .panel,
    .service-card,
    .card,
    .feature-item {
      position: relative;
      overflow: hidden;
    }

    .panel::before,
    .service-card::before,
    .card::before,
    .feature-item::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 6px;
      background: linear-gradient(90deg, var(--azul), var(--amarillo));
    }

    .service-card::after,
    .card::after {
      content: "";
      position: absolute;
      width: 115px;
      height: 115px;
      right: -48px;
      bottom: -48px;
      border-radius: 50%;
      background: rgba(246, 194, 71, 0.14);
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .service-card:hover,
    .card:hover {
      box-shadow: var(--sombra-viva);
    }

    .service-card:hover::after,
    .card:hover::after {
      transform: scale(1.18);
      opacity: 0.9;
    }

    .service-card:nth-child(even),
    .card:nth-child(even) {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 244, 214, 0.74));
    }

    .service-card img,
    .card img,
    .panel img,
    .cta img {
      filter: drop-shadow(0 15px 18px rgba(6, 54, 95, 0.10));
    }

    .outsource,
    .founder {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 8% 10%, rgba(246, 194, 71, 0.30), transparent 28%),
        radial-gradient(circle at 95% 80%, rgba(255, 255, 255, 0.18), transparent 26%),
        var(--gradiente-marca);
      box-shadow: 0 26px 70px rgba(6, 54, 95, 0.20);
    }

    .outsource::before,
    .founder::before {
      content: "";
      position: absolute;
      inset: 14px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 26px;
      pointer-events: none;
    }

    .benefit {
      background: rgba(255, 255, 255, 0.16);
      border-color: rgba(255, 255, 255, 0.24);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    }

    .cta {
      background:
        radial-gradient(circle at 12% 18%, rgba(246, 194, 71, 0.22), transparent 30%),
        linear-gradient(135deg, #eaf6ff 0%, #ffffff 48%, #fff4d6 100%);
      border-top-color: rgba(6, 119, 201, 0.12);
      border-bottom-color: rgba(6, 119, 201, 0.12);
    }

    input,
    textarea {
      background: linear-gradient(180deg, #ffffff, #f4fbff);
      border-color: rgba(6, 119, 201, 0.18);
    }

    input:focus,
    textarea:focus {
      background: #ffffff;
    }

    .icon {
      background: linear-gradient(135deg, var(--azul), var(--azul-brillante));
      color: #ffffff;
      box-shadow: 0 10px 20px rgba(6, 119, 201, 0.20);
    }

    footer {
      background:
        radial-gradient(circle at 12% 0%, rgba(246, 194, 71, 0.16), transparent 28%),
        linear-gradient(135deg, var(--azul-tinta), var(--azul-oscuro));
    }



    /* Fondos más impactantes y corporativos */
    body {
      background:
        radial-gradient(circle at 8% 8%, rgba(6, 119, 201, 0.16), transparent 28%),
        radial-gradient(circle at 92% 18%, rgba(246, 194, 71, 0.12), transparent 24%),
        radial-gradient(circle at 50% 96%, rgba(6, 54, 95, 0.13), transparent 32%),
        linear-gradient(180deg, #f7fbff 0%, #eef7ff 42%, #f7fbff 100%);
    }

    .hero {
      background:
        radial-gradient(circle at 76% 22%, rgba(6, 119, 201, 0.20), transparent 30%),
        radial-gradient(circle at 92% 68%, rgba(246, 194, 71, 0.16), transparent 26%),
        linear-gradient(135deg, #f7fbff 0%, #eaf6ff 52%, #ffffff 100%);
    }

    .section.white {
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(234, 246, 255, 0.72)),
        radial-gradient(circle at 8% 18%, rgba(6, 119, 201, 0.10), transparent 26%);
    }

    #servicios {
      background:
        radial-gradient(circle at 8% 18%, rgba(6, 119, 201, 0.16), transparent 28%),
        radial-gradient(circle at 92% 72%, rgba(6, 54, 95, 0.12), transparent 30%),
        linear-gradient(135deg, #eef7ff 0%, #f7fbff 48%, #eaf6ff 100%);
    }

    .cta {
      background:
        radial-gradient(circle at 12% 28%, rgba(255, 255, 255, 0.18), transparent 22%),
        radial-gradient(circle at 86% 24%, rgba(246, 194, 71, 0.18), transparent 24%),
        linear-gradient(135deg, #06365f 0%, #0677c9 52%, #078ce3 100%) !important;
      color: var(--blanco);
      overflow: hidden;
    }

    .cta h2,
    .cta label {
      color: var(--blanco);
    }

    .cta p {
      color: rgba(255, 255, 255, 0.86) !important;
    }

    .cta form {
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(16px);
      border-color: rgba(255, 255, 255, 0.36);
    }

    .cta form label {
      color: var(--azul-oscuro);
    }

    .cta::after {
      content: "";
      position: absolute;
      width: 420px;
      height: 420px;
      right: -150px;
      bottom: -180px;
      background: radial-gradient(circle, rgba(246, 194, 71, 0.26), transparent 66%);
      pointer-events: none;
    }

    /* Separadores profesionales entre secciones */
    main > section {
      position: relative;
    }

    main > section + section {
      border-top: 1px solid rgba(6, 119, 201, 0.12);
    }

    main > section + section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      width: min(1120px, 92%);
      height: 2px;
      transform: translateX(-50%);
      background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(6, 119, 201, 0.18) 18%,
        rgba(6, 119, 201, 0.55) 42%,
        rgba(246, 194, 71, 0.85) 50%,
        rgba(6, 119, 201, 0.55) 58%,
        rgba(6, 119, 201, 0.18) 82%,
        transparent 100%
      );
      border-radius: 999px;
      z-index: 2;
    }

    main > section + section::after {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      width: 86px;
      height: 8px;
      transform: translate(-50%, -50%);
      background: linear-gradient(90deg, var(--azul), var(--amarillo));
      border-radius: 999px;
      box-shadow: 0 10px 24px rgba(6, 119, 201, 0.20);
      z-index: 3;
    }

    .section.white {
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    }

    .section.cta {
      border-top: 0;
    }

    .section.cta::before {
      height: 3px;
      background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.38),
        rgba(120, 213, 255, 0.95),
        rgba(246, 194, 71, 0.82),
        rgba(120, 213, 255, 0.95),
        rgba(255, 255, 255, 0.38),
        transparent
      );
      box-shadow: 0 0 24px rgba(120, 213, 255, 0.35);
    }

    .outsource {
      position: relative;
    }

    .outsource::before {
      content: "";
      position: absolute;
      top: -28px;
      left: 50%;
      width: min(720px, 84%);
      height: 2px;
      transform: translateX(-50%);
      background: linear-gradient(90deg, transparent, rgba(6, 119, 201, 0.38), rgba(246, 194, 71, 0.80), transparent);
      border-radius: 999px;
    }

    @media (max-width: 560px) {
      main > section + section::after {
        width: 64px;
        height: 7px;
      }

      main > section + section::before {
        width: 88%;
      }
    }

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

      *, *::before, *::after {
        animation: none !important;
        transition: none !important;
      }

      .reveal,
      .hero-copy > * {
        opacity: 1 !important;
        transform: none !important;
      }
    }

    @media (max-width: 1000px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .benefits {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 900px) {
      .menu-toggle {
        display: inline-flex;
      }

      .menu {
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: linear-gradient(
        315deg,
        #0677c9 0%,
        #078ce3 52%,
        #06365f 100%
      ) !important;
        background-image: linear-gradient(
        315deg,
        #0677c9 0%,
        #078ce3 52%,
        #06365f 100%
      ) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        padding: 18px 4%;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        box-shadow: 0 18px 34px rgba(6, 54, 95, 0.18);
      }

      .menu.open {
        display: flex;
      }

      .hero-grid,
      .split,
      .outsource,
      .cta-grid,
      .features,
      .footer-grid {
        grid-template-columns: 1fr;
      }

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

      .founder {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .founder img {
        margin: 0 auto;
      }
    }

    @media (max-width: 560px) {
      .hero {
        padding-top: 52px;
      }

      .services-grid,
      .cards {
        grid-template-columns: 1fr;
      }

      .panel,
      .founder,
      .outsource,
      form {
        padding: 24px;
      }

      .hero-actions {
        flex-direction: column;
      }

      .floating-badge {
        left: 14px;
        right: 14px;
        bottom: 14px;
        font-size: 0.95rem;
      }

      .btn {
        width: 100%;
      }
    }

    /* Refuerzo final: header azul degradado igual al botón principal */
    body > header {
      background: linear-gradient(
        315deg,
        #0677c9 0%,
        #078ce3 52%,
        #06365f 100%
      ) !important;
      background-image: linear-gradient(
        315deg,
        #0677c9 0%,
        #078ce3 52%,
        #06365f 100%
      ) !important;
    }

    body > header .brand strong,
    body > header .menu a {
      color: #ffffff !important;
    }

    body > header .brand span {
      color: rgba(255, 255, 255, 0.84) !important;
    }

    body > header .menu a:hover {
      color: var(--amarillo) !important;
    }

    @media (max-width: 900px) {
      body > header .menu {
        background: linear-gradient(
        315deg,
        #0677c9 0%,
        #078ce3 52%,
        #06365f 100%
      ) !important;
        background-image: linear-gradient(
        315deg,
        #0677c9 0%,
        #078ce3 52%,
        #06365f 100%
      ) !important;
      }
    }


    /* Versión con fondo blanco y elementos reforzados */
    body {
      background: #ffffff !important;
    }

    .hero,
    .section,
    .section.white,
    #servicios,
    .cta {
      background: #ffffff !important;
      background-image: none !important;
    }

    .hero {
      position: relative;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 82% 18%, rgba(6, 119, 201, 0.10), transparent 26%),
        radial-gradient(circle at 12% 76%, rgba(246, 194, 71, 0.10), transparent 24%);
      pointer-events: none;
      z-index: 0;
    }

    .hero .container {
      position: relative;
      z-index: 1;
    }

    .section-title {
      background: #ffffff;
      border: 1px solid rgba(6, 119, 201, 0.12);
      border-radius: 28px;
      padding: 26px 30px;
      box-shadow: 0 14px 34px rgba(6, 54, 95, 0.06);
    }

    .section-title[style*="text-align:left"] {
      border-left: 5px solid var(--azul);
    }

    .panel,
    .service-card,
    .card,
    .feature-item,
    form,
    .hero-visual,
    .check {
      background:
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
      border: 1px solid rgba(6, 119, 201, 0.16) !important;
      box-shadow: 0 16px 38px rgba(6, 54, 95, 0.08) !important;
    }

    .panel,
    .service-card,
    .card,
    .feature-item {
      position: relative;
      overflow: hidden;
    }

    .panel::before,
    .service-card::before,
    .card::before,
    .feature-item::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--azul), var(--amarillo));
      opacity: 0.88;
    }

    .service-card:hover,
    .card:hover,
    .feature-item:hover,
    .panel:hover,
    form:hover {
      border-color: rgba(6, 119, 201, 0.32) !important;
      box-shadow: 0 24px 54px rgba(6, 54, 95, 0.13) !important;
    }

    .hero-visual {
      background:
        radial-gradient(circle at 80% 18%, rgba(246, 194, 71, 0.18), transparent 26%),
        linear-gradient(145deg, #ffffff, #eef8ff) !important;
    }

    .floating-badge {
      border: 1px solid rgba(255, 255, 255, 0.24);
      box-shadow: 0 18px 36px rgba(6, 54, 95, 0.24);
    }

    .cta {
      color: var(--texto) !important;
      border-top: 1px solid rgba(6, 119, 201, 0.12);
      border-bottom: 1px solid rgba(6, 119, 201, 0.12);
    }

    .cta::after {
      display: none !important;
    }

    .cta h2 {
      color: var(--azul-oscuro) !important;
    }

    .cta p {
      color: #475569 !important;
    }

    .cta form {
      background:
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
      border: 1px solid rgba(6, 119, 201, 0.18) !important;
      box-shadow: 0 22px 52px rgba(6, 54, 95, 0.12) !important;
    }

    .cta form label,
    .cta label {
      color: var(--azul-oscuro) !important;
    }

    .cta-grid > div:first-child {
      background:
        radial-gradient(circle at 50% 45%, rgba(6, 119, 201, 0.10), transparent 36%),
        #ffffff;
      border: 1px solid rgba(6, 119, 201, 0.12);
      border-radius: 34px;
      padding: 24px;
      box-shadow: 0 16px 38px rgba(6, 54, 95, 0.07);
    }

    .founder,
    .outsource {
      border: 1px solid rgba(255, 255, 255, 0.22);
      box-shadow: 0 24px 58px rgba(6, 54, 95, 0.16);
    }

    .benefit {
      background: rgba(255, 255, 255, 0.14);
      border: 1px solid rgba(255, 255, 255, 0.24);
    }

    input,
    textarea {
      background: #ffffff;
      border: 1px solid rgba(6, 119, 201, 0.20);
    }

    main > section + section {
      border-top: 1px solid rgba(6, 119, 201, 0.10);
    }

    main > section + section::before {
      background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(6, 119, 201, 0.16) 18%,
        rgba(6, 119, 201, 0.52) 42%,
        rgba(246, 194, 71, 0.80) 50%,
        rgba(6, 119, 201, 0.52) 58%,
        rgba(6, 119, 201, 0.16) 82%,
        transparent 100%
      );
    }

    @media (max-width: 560px) {
      .section-title {
        padding: 22px;
      }

      .cta-grid > div:first-child {
        padding: 18px;
      }
    }


    /* Logo en el header */
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 13px;
      line-height: 1.1;
    }

    .brand-logo-wrap {
      width: 48px;
      height: 48px;
      flex: 0 0 48px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid rgba(255, 255, 255, 0.42);
      box-shadow: 0 10px 24px rgba(6, 54, 95, 0.18);
      overflow: hidden;
    }

    .brand-logo {
      width: 38px;
      height: 38px;
      object-fit: contain;
      display: block;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .brand-text strong {
      color: #ffffff !important;
      font-size: 1.25rem;
      letter-spacing: -0.03em;
    }

    .brand-text span {
      color: rgba(255, 255, 255, 0.84) !important;
      font-size: 0.82rem;
      margin-top: 0;
    }

    @media (max-width: 560px) {
      .brand {
        gap: 10px;
      }

      .brand-logo-wrap {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        border-radius: 14px;
      }

      .brand-logo {
        width: 33px;
        height: 33px;
      }

      .brand-text strong {
        font-size: 1.08rem;
      }

      .brand-text span {
        font-size: 0.72rem;
      }
    }


    /* Refuerzo visual del logo y textos del header */
    body > header .brand {
      display: inline-flex !important;
      align-items: center !important;
      gap: 13px !important;
    }

    body > header .brand-logo-wrap {
      display: grid !important;
    }

    body > header .brand-text strong {
      color: #ffffff !important;
    }

    body > header .brand-text span {
      color: rgba(255, 255, 255, 0.84) !important;
    }


    /* Corrección: logo realmente a la izquierda del texto */
    body > header .brand {
      display: flex !important;
      flex-direction: row !important;
      align-items: center !important;
      justify-content: flex-start !important;
      gap: 13px !important;
      line-height: 1.1 !important;
    }

    body > header .brand-logo-wrap {
      width: 48px !important;
      height: 48px !important;
      flex: 0 0 48px !important;
      display: grid !important;
      place-items: center !important;
      border-radius: 16px !important;
      background: rgba(255, 255, 255, 0.95) !important;
      border: 1px solid rgba(255, 255, 255, 0.42) !important;
      box-shadow: 0 10px 24px rgba(6, 54, 95, 0.18) !important;
      overflow: hidden !important;
      margin: 0 !important;
    }

    body > header .brand-logo {
      width: 38px !important;
      height: 38px !important;
      object-fit: contain !important;
      display: block !important;
      margin: 0 !important;
    }

    body > header .brand-text {
      display: flex !important;
      flex-direction: column !important;
      align-items: flex-start !important;
      justify-content: center !important;
      gap: 4px !important;
      margin: 0 !important;
    }

    body > header .brand-text strong {
      display: block !important;
      color: #ffffff !important;
      font-size: 1.25rem !important;
      letter-spacing: -0.03em !important;
      line-height: 1.05 !important;
      margin: 0 !important;
    }

    body > header .brand-text > span {
      display: block !important;
      color: rgba(255, 255, 255, 0.84) !important;
      font-size: 0.82rem !important;
      line-height: 1.15 !important;
      margin: 0 !important;
    }

    @media (max-width: 560px) {
      body > header .brand {
        gap: 10px !important;
      }

      body > header .brand-logo-wrap {
        width: 42px !important;
        height: 42px !important;
        flex-basis: 42px !important;
        border-radius: 14px !important;
      }

      body > header .brand-logo {
        width: 33px !important;
        height: 33px !important;
      }

      body > header .brand-text strong {
        font-size: 1.08rem !important;
      }

      body > header .brand-text > span {
        font-size: 0.72rem !important;
      }
    }


    /* Transiciones más lentas y profesionales */
    .btn {
      transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.55s ease,
        background 0.55s ease,
        color 0.55s ease !important;
    }

    .menu a,
    .menu a::after,
    .menu-toggle,
    .brand,
    .brand-logo-wrap,
    .brand-logo {
      transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.55s ease,
        background 0.55s ease,
        width 0.55s ease,
        box-shadow 0.55s ease !important;
    }

    .hero-copy > * {
      animation-duration: 1.35s !important;
      animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
    }

    .hero-copy .eyebrow { animation-delay: 0.10s !important; }
    .hero-copy h1 { animation-delay: 0.28s !important; }
    .hero-copy p { animation-delay: 0.46s !important; }
    .hero-copy .hero-actions { animation-delay: 0.64s !important; }
    .hero-copy .checks { animation-delay: 0.82s !important; }

    .reveal {
      transition:
        opacity 1.45s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.45s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.75s ease,
        border-color 0.75s ease,
        background 0.75s ease !important;
    }

    .delay-1 { transition-delay: 0.14s !important; }
    .delay-2 { transition-delay: 0.28s !important; }
    .delay-3 { transition-delay: 0.42s !important; }
    .delay-4 { transition-delay: 0.56s !important; }

    .hero-visual,
    .panel,
    .service-card,
    .card,
    .feature-item,
    .benefit,
    .founder,
    .outsource,
    form,
    .check {
      transition:
        transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.85s ease,
        border-color 0.85s ease,
        background 0.85s ease,
        filter 0.85s ease !important;
    }

    .hero-visual img,
    .split img,
    .service-card img,
    .card img,
    .benefit img,
    .cta-grid img,
    .founder img {
      transition:
        transform 1.15s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.95s ease !important;
    }

    input,
    textarea {
      transition:
        border-color 0.55s ease,
        box-shadow 0.55s ease,
        background 0.55s ease !important;
    }

    .floating-badge {
      animation-duration: 4.6s !important;
      transition:
        transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.85s ease,
        background 0.85s ease !important;
    }


    /* Transiciones más fluidas: movimiento lento, suave y elegante */
    :root {
      --ease-fluid: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
    }

    .hero-copy > * {
      animation-duration: 2.15s !important;
      animation-timing-function: var(--ease-fluid) !important;
    }

    .hero-copy .eyebrow { animation-delay: 0.18s !important; }
    .hero-copy h1 { animation-delay: 0.48s !important; }
    .hero-copy p { animation-delay: 0.78s !important; }
    .hero-copy .hero-actions { animation-delay: 1.08s !important; }
    .hero-copy .checks { animation-delay: 1.38s !important; }

    @keyframes heroFadeUp {
      from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
        filter: blur(6px);
      }

      to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        filter: blur(0);
      }
    }

    .reveal {
      opacity: 0 !important;
      transform: translate3d(0, 42px, 0) scale(0.985) !important;
      filter: blur(8px);
      transition:
        opacity 2.35s var(--ease-fluid),
        transform 2.35s var(--ease-fluid),
        filter 2.1s ease,
        box-shadow 1.35s ease,
        border-color 1.35s ease,
        background 1.35s ease !important;
      will-change: opacity, transform, filter;
      backface-visibility: hidden;
    }

    .reveal.visible {
      opacity: 1 !important;
      transform: translate3d(0, 0, 0) scale(1) !important;
      filter: blur(0);
    }

    .delay-1 { transition-delay: 0.24s !important; }
    .delay-2 { transition-delay: 0.48s !important; }
    .delay-3 { transition-delay: 0.72s !important; }
    .delay-4 { transition-delay: 0.96s !important; }

    .btn,
    .menu a,
    .menu a::after,
    .menu-toggle,
    .brand,
    .brand-logo-wrap,
    .brand-logo,
    input,
    textarea {
      transition-duration: 0.95s !important;
      transition-timing-function: var(--ease-fluid) !important;
    }

    .hero-visual,
    .panel,
    .service-card,
    .card,
    .feature-item,
    .benefit,
    .founder,
    .outsource,
    form,
    .check {
      transition:
        transform 1.55s var(--ease-fluid),
        box-shadow 1.55s ease,
        border-color 1.35s ease,
        background 1.35s ease,
        filter 1.35s ease !important;
      will-change: transform;
      backface-visibility: hidden;
    }

    .hero-visual img,
    .split img,
    .service-card img,
    .card img,
    .benefit img,
    .cta-grid img,
    .founder img {
      transition:
        transform 2.05s var(--ease-fluid),
        filter 1.6s ease !important;
      will-change: transform, filter;
      backface-visibility: hidden;
    }

    .hero-visual:hover,
    .panel:hover,
    .service-card:hover,
    .card:hover,
    .feature-item:hover,
    .benefit:hover,
    .founder:hover,
    .outsource:hover,
    form:hover,
    .check:hover {
      transform: translate3d(0, -6px, 0) !important;
    }

    .hero-visual:hover img,
    .split:hover img,
    .service-card:hover img,
    .card:hover img,
    .benefit:hover img,
    .cta-grid:hover img,
    .founder:hover img {
      transform: scale(1.025) translate3d(0, -2px, 0) !important;
    }

    .floating-badge {
      animation-name: badgeFloat !important;
      animation-duration: 7.5s !important;
      animation-timing-function: ease-in-out !important;
      animation-iteration-count: infinite !important;
      transition:
        transform 1.55s var(--ease-fluid),
        box-shadow 1.35s ease,
        background 1.35s ease !important;
    }

    @keyframes badgeFloat {
      0%, 100% {
        transform: translate3d(0, 0, 0);
      }

      35% {
        transform: translate3d(0, -10px, 0);
      }

      55% {
        transform: translate3d(0, -4px, 0);
      }

      75% {
        transform: translate3d(0, -8px, 0);
      }
    }

    main > section + section::before,
    main > section + section::after {
      transition:
        opacity 1.6s ease,
        transform 1.6s var(--ease-fluid),
        box-shadow 1.6s ease !important;
    }

    @media (prefers-reduced-motion: reduce) {
      .reveal {
        filter: none !important;
      }
    }


    /* Ajuste final: header con entrada suave y menos blur en animaciones */
    body > header {
      opacity: 0;
      transform: translate3d(0, -18px, 0);
      animation: headerReveal 1.35s cubic-bezier(0.16, 1, 0.3, 1) 0.08s forwards;
      will-change: opacity, transform;
    }

    body > header .brand,
    body > header .menu,
    body > header .menu-toggle {
      opacity: 0;
      transform: translate3d(0, -8px, 0);
      animation: headerItemReveal 1.15s cubic-bezier(0.16, 1, 0.3, 1) forwards;
      will-change: opacity, transform;
    }

    body > header .brand {
      animation-delay: 0.34s;
    }

    body > header .menu,
    body > header .menu-toggle {
      animation-delay: 0.52s;
    }

    @keyframes headerReveal {
      from {
        opacity: 0;
        transform: translate3d(0, -18px, 0);
      }

      to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
      }
    }

    @keyframes headerItemReveal {
      from {
        opacity: 0;
        transform: translate3d(0, -8px, 0);
      }

      to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
      }
    }

    @keyframes heroFadeUp {
      from {
        opacity: 0;
        transform: translate3d(0, 28px, 0);
        filter: blur(2px);
      }

      42% {
        filter: blur(0);
      }

      to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        filter: blur(0);
      }
    }

    .hero-copy > * {
      animation-duration: 1.85s !important;
      animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
    }

    .hero-copy .eyebrow { animation-delay: 0.18s !important; }
    .hero-copy h1 { animation-delay: 0.42s !important; }
    .hero-copy p { animation-delay: 0.66s !important; }
    .hero-copy .hero-actions { animation-delay: 0.90s !important; }
    .hero-copy .checks { animation-delay: 1.14s !important; }

    .reveal {
      opacity: 0 !important;
      transform: translate3d(0, 34px, 0) scale(0.992) !important;
      filter: blur(2px) !important;
      transition:
        opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.95s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.22s ease,
        box-shadow 0.75s ease,
        border-color 0.75s ease,
        background 0.75s ease !important;
      will-change: opacity, transform, filter;
      backface-visibility: hidden;
    }

    .reveal.visible {
      opacity: 1 !important;
      transform: translate3d(0, 0, 0) scale(1) !important;
      filter: blur(0) !important;
    }

    .delay-1 { transition-delay: 0.08s !important; }
    .delay-2 { transition-delay: 0.16s !important; }
    .delay-3 { transition-delay: 0.24s !important; }
    .delay-4 { transition-delay: 0.32s !important; }

    .hero-visual,
    .panel,
    .service-card,
    .card,
    .feature-item,
    .benefit,
    .founder,
    .outsource,
    form,
    .check {
      transition:
        transform 1.25s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 1.25s ease,
        border-color 1.05s ease,
        background 1.05s ease,
        filter 0.75s ease !important;
    }

    .hero-visual img,
    .split img,
    .service-card img,
    .card img,
    .benefit img,
    .cta-grid img,
    .founder img {
      transition:
        transform 1.65s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.85s ease !important;
    }

    .floating-badge {
      animation-duration: 6.4s !important;
    }

    @media (prefers-reduced-motion: reduce) {
      body > header,
      body > header .brand,
      body > header .menu,
      body > header .menu-toggle {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
      }

      .reveal,
      .hero-copy > * {
        filter: none !important;
      }
    }


    /* Ajuste: primera sección más corta para pantallas estándar */
    .hero {
      padding: 44px 0 46px !important;
      min-height: auto !important;
    }

    .hero-grid {
      gap: 34px !important;
      align-items: center !important;
    }

    .hero h1 {
      font-size: clamp(2.15rem, 5vw, 4.25rem) !important;
      line-height: 1 !important;
      margin-bottom: 18px !important;
    }

    .hero p {
      font-size: 1.06rem !important;
      margin-bottom: 22px !important;
    }

    .eyebrow {
      margin-bottom: 16px !important;
      padding: 7px 13px !important;
      font-size: 0.84rem !important;
    }

    .hero-actions {
      margin-bottom: 22px !important;
    }

    .checks {
      gap: 12px !important;
    }

    .check {
      padding: 10px 14px !important;
      border-radius: 14px !important;
      font-size: 0.94rem !important;
    }

    .hero-visual {
      padding: 22px !important;
      border-radius: 34px !important;
    }

    .hero-visual img {
      max-height: 330px !important;
      width: 100%;
      object-fit: contain;
    }

    .floating-badge {
      bottom: 16px !important;
      left: 16px !important;
      padding: 11px 15px !important;
      font-size: 0.92rem !important;
    }

    .floating-badge span {
      font-size: 0.78rem !important;
    }

    @media (max-width: 900px) {
      .hero {
        padding: 36px 0 42px !important;
      }

      .hero-grid {
        gap: 28px !important;
      }

      .hero-visual img {
        max-height: 280px !important;
      }
    }

    @media (max-width: 560px) {
      .hero {
        padding: 28px 0 36px !important;
      }

      .hero h1 {
        font-size: clamp(2rem, 12vw, 3rem) !important;
      }

      .hero p {
        font-size: 1rem !important;
      }

      .hero-visual {
        padding: 18px !important;
      }

      .hero-visual img {
        max-height: 240px !important;
      }
    }


        /* Corrección del título principal para que no se corte la "g" */
    .hero h1 {
      line-height: 1.12 !important;
      margin-bottom: 34px !important;
      padding-bottom: 0.08em;
      overflow: visible;
    }
  

    /* Ajuste específico: la imagen principal de Back Office entra más despacio */
    .hero .hero-visual > img[alt="Centro de Back Office Automatizado"] {
      opacity: 0;
      transform: scale(0.94) translate3d(0, 28px, 0);
      filter: blur(3px) saturate(0.96);
      animation: backOfficeImageSlowReveal 5.2s cubic-bezier(0.16, 1, 0.3, 1) 1.35s both !important;
      transition:
        transform 3.4s cubic-bezier(0.16, 1, 0.3, 1),
        filter 2.6s ease,
        opacity 2.6s ease !important;
      will-change: opacity, transform, filter;
      backface-visibility: hidden;
    }

    .hero .hero-visual:hover > img[alt="Centro de Back Office Automatizado"] {
      transform: scale(1.018) translate3d(0, -2px, 0) !important;
      filter: saturate(1.04) !important;
    }

    @keyframes backOfficeImageSlowReveal {
      0% {
        opacity: 0;
        transform: scale(0.94) translate3d(0, 28px, 0);
        filter: blur(3px) saturate(0.96);
      }

      45% {
        opacity: 0.72;
        filter: blur(1px) saturate(0.99);
      }

      100% {
        opacity: 1;
        transform: scale(1) translate3d(0, 0, 0);
        filter: blur(0) saturate(1);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero .hero-visual > img[alt="Centro de Back Office Automatizado"] {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        animation: none !important;
      }
    }

    /* Cuadrados de beneficios en blanco */
    .benefits {
      gap: 18px !important;
    }

    .benefit {
      background: #ffffff !important;
      border: 1px solid rgba(6, 119, 201, 0.18) !important;
      border-radius: 22px !important;
      padding: 22px 18px !important;
      text-align: center !important;
      box-shadow: 0 16px 34px rgba(6, 54, 95, 0.14) !important;
      position: relative !important;
      overflow: hidden !important;
    }

    .benefit::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--azul), var(--amarillo));
    }

    .benefit img {
      width: 58px !important;
      height: 58px !important;
      object-fit: contain !important;
      margin: 0 auto 14px !important;
      padding: 10px !important;
      border-radius: 16px !important;
      background: var(--azul-claro) !important;
      box-shadow: 0 10px 22px rgba(6, 54, 95, 0.10) !important;
    }

    .benefit h3 {
      color: var(--azul-oscuro) !important;
      font-size: 1rem !important;
      line-height: 1.25 !important;
      margin: 0 !important;
    }

    .benefit:hover {
      transform: translateY(-6px) !important;
      border-color: rgba(6, 119, 201, 0.32) !important;
      box-shadow: 0 24px 48px rgba(6, 54, 95, 0.18) !important;
    }

  

    /* Fundador a la izquierda del formulario de contacto */
    .cta-grid {
      grid-template-columns: 0.9fr 1.1fr !important;
      align-items: stretch !important;
    }

    .cta .cta-founder {
      display: flex !important;
      flex-direction: column !important;
      justify-content: center !important;
      align-items: flex-start !important;
      gap: 16px !important;
      height: 100% !important;
      padding: 30px !important;
      border-radius: 28px !important;
      background:
        radial-gradient(circle at 12% 10%, rgba(246, 194, 71, 0.22), transparent 34%),
        linear-gradient(145deg, var(--azul-oscuro), var(--azul)) !important;
      color: var(--blanco) !important;
      box-shadow: 0 22px 52px rgba(6, 54, 95, 0.16) !important;
      border: 1px solid rgba(255, 255, 255, 0.22) !important;
      text-align: left !important;
    }

    .cta .cta-founder img {
      width: 92px !important;
      height: 92px !important;
      flex: 0 0 92px !important;
      border-radius: 50% !important;
      object-fit: cover !important;
      border: 4px solid rgba(255, 255, 255, 0.24) !important;
      margin: 0 0 4px 0 !important;
      box-shadow: 0 14px 28px rgba(6, 54, 95, 0.24) !important;
    }

    .cta .cta-founder h2 {
      color: #ffffff !important;
      background: none !important;
      -webkit-background-clip: initial !important;
      background-clip: initial !important;
      font-size: clamp(1.55rem, 2.4vw, 2.15rem) !important;
      line-height: 1.08 !important;
      letter-spacing: -0.04em !important;
      margin: 0 0 8px !important;
    }

    .cta .cta-founder h3 {
      color: #dff2ff !important;
      font-size: 1.05rem !important;
      margin: 0 0 12px !important;
    }

    .cta .cta-founder p {
      color: rgba(255, 255, 255, 0.88) !important;
      font-size: 0.98rem !important;
      line-height: 1.65 !important;
      margin: 0 !important;
    }

    @media (max-width: 900px) {
      .cta .cta-founder {
        align-items: center !important;
        text-align: center !important;
      }
    }


    /* Corrección: mostrar el cohete junto al fundador en contacto */
    .cta-side {
      display: flex !important;
      flex-direction: column !important;
      gap: 22px !important;
      align-self: stretch !important;
    }

    .cta-rocket {
      display: block !important;
      opacity: 1 !important;
      transform: none !important;
      filter: none !important;
      visibility: visible !important;
      background:
        radial-gradient(circle at 82% 18%, rgba(246, 194, 71, 0.16), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f4fbff 100%) !important;
      border: 1px solid rgba(6, 119, 201, 0.16) !important;
      border-radius: 28px !important;
      padding: 22px !important;
      box-shadow: 0 16px 38px rgba(6, 54, 95, 0.08) !important;
      overflow: hidden !important;
    }

    .cta-rocket img {
      display: block !important;
      width: min(100%, 360px) !important;
      max-height: 260px !important;
      height: auto !important;
      object-fit: contain !important;
      margin: 0 auto !important;
      opacity: 1 !important;
      transform: none !important;
      visibility: visible !important;
      filter: drop-shadow(0 15px 18px rgba(6, 54, 95, 0.10)) !important;
    }

    @media (max-width: 900px) {
      .cta-side {
        gap: 18px !important;
      }

      .cta-rocket {
        padding: 18px !important;
      }

      .cta-rocket img {
        width: min(100%, 300px) !important;
        max-height: 220px !important;
      }
    }



    /* Contacto: fundador compacto sin cohete */
    .cta-grid {
      grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr) !important;
      align-items: start !important;
    }

    .cta .cta-grid > .cta-side {
      display: block !important;
      align-self: start !important;
      background: transparent !important;
      border: 0 !important;
      box-shadow: none !important;
      padding: 0 !important;
    }

    .cta .cta-founder {
      height: auto !important;
      min-height: 0 !important;
      max-width: 430px !important;
      margin: 0 !important;
      align-self: start !important;
      justify-content: flex-start !important;
      padding: 26px !important;
      border-radius: 28px !important;
    }

    .cta .cta-founder img {
      width: 78px !important;
      height: 78px !important;
      flex: 0 0 78px !important;
      margin-bottom: 4px !important;
    }

    .cta .cta-founder h2 {
      font-size: clamp(1.35rem, 2vw, 1.8rem) !important;
      margin-bottom: 8px !important;
    }

    .cta .cta-founder h3 {
      font-size: 1rem !important;
      margin-bottom: 10px !important;
    }

    .cta .cta-founder p {
      font-size: 0.95rem !important;
      line-height: 1.6 !important;
    }

    .cta .cta-grid > div:last-child,
    .cta form {
      align-self: start !important;
      height: auto !important;
      min-height: 0 !important;
    }

    @media (max-width: 900px) {
      .cta-grid {
        grid-template-columns: 1fr !important;
      }

      .cta .cta-founder {
        max-width: 100% !important;
        margin: 0 auto !important;
      }
    }


    /* =========================================================
       Mejora estética final: sección de contacto diferenciada
       y formulario más compacto/profesional
    ========================================================= */
    .section.cta#contacto {
      padding: 78px 0 !important;
      background:
        radial-gradient(circle at 14% 12%, rgba(246, 194, 71, 0.12), transparent 30%),
        radial-gradient(circle at 88% 72%, rgba(120, 213, 255, 0.10), transparent 32%),
        linear-gradient(180deg, #eef5ff 0%, #fdfdff 100%) !important;
      border-top: 0 !important;
      border-bottom: 0 !important;
      color: var(--texto) !important;
      position: relative !important;
      overflow: hidden !important;
      isolation: isolate !important;
    }

    .section.cta#contacto::before {
      content: "" !important;
      position: absolute !important;
      top: 0 !important;
      left: 0 !important;
      right: 0 !important;
      height: 7px !important;
      width: 100% !important;
      transform: none !important;
      background: linear-gradient(90deg, var(--azul), var(--amarillo), var(--azul-brillante)) !important;
      border-radius: 0 !important;
      box-shadow: 0 0 22px rgba(120, 213, 255, 0.28) !important;
      z-index: 0 !important;
    }

    .section.cta#contacto::after {
      content: "" !important;
      position: absolute !important;
      width: 520px !important;
      height: 520px !important;
      right: -210px !important;
      bottom: -260px !important;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.32), transparent 68%) !important;
      display: block !important;
      pointer-events: none !important;
      z-index: 0 !important;
    }

    .section.cta#contacto .container.cta-grid {
      position: relative !important;
      z-index: 1 !important;
      width: min(1080px, 92%) !important;
      display: grid !important;
      grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 0.88fr) !important;
      gap: 32px !important;
      align-items: center !important;
      padding: 30px !important;
      border-radius: 38px !important;
      background: rgba(255, 255, 255, 0.96) !important;
      border: 1px solid rgba(255, 255, 255, 0.55) !important;
      box-shadow: 0 34px 90px rgba(3, 22, 42, 0.30) !important;
      backdrop-filter: blur(14px) !important;
    }

    .section.cta#contacto .cta-grid > .cta-side {
      display: flex !important;
      align-self: stretch !important;
    }

    .section.cta#contacto .cta-founder {
      width: 100% !important;
      max-width: none !important;
      height: 100% !important;
      padding: 28px !important;
      border-radius: 30px !important;
      background:
        radial-gradient(circle at 18% 12%, rgba(246, 194, 71, 0.26), transparent 34%),
        linear-gradient(145deg, #06365f 0%, #0677c9 100%) !important;
      box-shadow: 0 22px 52px rgba(6, 54, 95, 0.20) !important;
    }

    .section.cta#contacto .cta-founder img {
      width: 72px !important;
      height: 72px !important;
      flex: 0 0 72px !important;
    }

    .section.cta#contacto .cta-founder h2 {
      font-size: clamp(1.3rem, 2vw, 1.75rem) !important;
      letter-spacing: -0.035em !important;
    }

    .section.cta#contacto .cta-founder p {
      font-size: 0.93rem !important;
      line-height: 1.55 !important;
    }

    .section.cta#contacto .cta-content {
      width: 100% !important;
      max-width: 520px !important;
      margin: 0 0 0 auto !important;
      padding: 4px 4px 4px 0 !important;
    }

    .section.cta#contacto .cta-content::before {
      display: none !important;
    }

    .section.cta#contacto .cta-content h2 {
      background: none !important;
      -webkit-background-clip: initial !important;
      background-clip: initial !important;
      color: var(--azul-oscuro) !important;
      font-size: clamp(1.9rem, 3vw, 2.55rem) !important;
      line-height: 1.04 !important;
      letter-spacing: -0.045em !important;
      margin-bottom: 10px !important;
    }

    .section.cta#contacto .cta-content > p {
      max-width: 440px !important;
      margin-bottom: 18px !important;
      color: #52677f !important;
      font-size: 0.98rem !important;
      line-height: 1.55 !important;
    }

    .section.cta#contacto form#contactForm {
      width: 100% !important;
      max-width: 500px !important;
      height: auto !important;
      min-height: 0 !important;
      padding: 20px !important;
      border-radius: 24px !important;
      background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
      border: 1px solid rgba(6, 119, 201, 0.16) !important;
      box-shadow: 0 18px 45px rgba(6, 54, 95, 0.12) !important;
    }

    .section.cta#contacto form#contactForm:hover {
      transform: none !important;
    }

    .section.cta#contacto form#contactForm .field {
      margin-bottom: 11px !important;
    }

    .section.cta#contacto form#contactForm label {
      margin-bottom: 5px !important;
      font-size: 0.82rem !important;
      line-height: 1.2 !important;
    }

    .section.cta#contacto form#contactForm input,
    .section.cta#contacto form#contactForm textarea {
      padding: 10px 12px !important;
      border-radius: 12px !important;
      font-size: 0.94rem !important;
      line-height: 1.35 !important;
      background: #ffffff !important;
      border-color: rgba(6, 119, 201, 0.20) !important;
    }

    .section.cta#contacto form#contactForm textarea {
      min-height: 78px !important;
    }

    .section.cta#contacto form#contactForm .btn {
      width: 100% !important;
      min-height: 44px !important;
      padding: 11px 18px !important;
      margin-top: 2px !important;
      font-size: 0.95rem !important;
    }

    .section.cta#contacto .form-message {
      margin-top: 12px !important;
      padding: 10px 12px !important;
      border-radius: 12px !important;
      background: #ecfdf5 !important;
      color: #0f766e !important;
      font-size: 0.9rem !important;
    }

    @media (max-width: 900px) {
      .section.cta#contacto {
        padding: 58px 0 !important;
      }

      .section.cta#contacto .container.cta-grid {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
        padding: 22px !important;
        border-radius: 30px !important;
      }

      .section.cta#contacto .cta-content {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
      }

      .section.cta#contacto form#contactForm {
        max-width: 100% !important;
      }
    }

    @media (max-width: 560px) {
      .section.cta#contacto {
        padding: 46px 0 !important;
      }

      .section.cta#contacto .container.cta-grid {
        width: min(94%, 1120px) !important;
        padding: 16px !important;
        border-radius: 24px !important;
      }

      .section.cta#contacto .cta-founder,
      .section.cta#contacto form#contactForm {
        padding: 18px !important;
        border-radius: 20px !important;
      }

      .section.cta#contacto .cta-content h2 {
        font-size: 1.85rem !important;
      }
    }


    /* =========================================================
       Ajuste final: fundador compacto y sección extra eliminada
       El cuadro del fundador se adapta al contenido real y no
       se estira para igualar la altura del formulario.
    ========================================================= */
    .section.cta#contacto .container.cta-grid {
      align-items: start !important;
      grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1fr) !important;
    }

    .section.cta#contacto .cta-grid > .cta-side,
    .section.cta#contacto .cta-side {
      display: block !important;
      align-self: start !important;
      height: auto !important;
      min-height: 0 !important;
    }

    .section.cta#contacto .founder.cta-founder,
    .section.cta#contacto .cta-founder {
      display: grid !important;
      grid-template-columns: 72px minmax(0, 1fr) !important;
      align-items: start !important;
      gap: 16px !important;
      width: 100% !important;
      max-width: 430px !important;
      height: auto !important;
      min-height: 0 !important;
      align-self: start !important;
      justify-content: initial !important;
      padding: 22px 24px !important;
      border-radius: 26px !important;
      box-shadow: 0 18px 42px rgba(6, 54, 95, 0.18) !important;
    }

    .section.cta#contacto .founder.cta-founder img,
    .section.cta#contacto .cta-founder img {
      width: 72px !important;
      height: 72px !important;
      flex: 0 0 72px !important;
      margin: 2px 0 0 0 !important;
    }

    .section.cta#contacto .cta-founder > div {
      min-width: 0 !important;
    }

    .section.cta#contacto .cta-founder h2 {
      font-size: clamp(1.18rem, 1.65vw, 1.48rem) !important;
      line-height: 1.08 !important;
      margin: 0 0 6px 0 !important;
    }

    .section.cta#contacto .cta-founder h3 {
      font-size: 0.96rem !important;
      line-height: 1.2 !important;
      margin: 0 0 9px 0 !important;
    }

    .section.cta#contacto .cta-founder p {
      font-size: 0.91rem !important;
      line-height: 1.5 !important;
      margin: 0 !important;
    }

    @media (max-width: 900px) {
      .section.cta#contacto .container.cta-grid {
        grid-template-columns: 1fr !important;
      }

      .section.cta#contacto .founder.cta-founder,
      .section.cta#contacto .cta-founder {
        max-width: 100% !important;
      }
    }

    @media (max-width: 560px) {
      .section.cta#contacto .founder.cta-founder,
      .section.cta#contacto .cta-founder {
        grid-template-columns: 1fr !important;
        justify-items: center !important;
        text-align: center !important;
        padding: 20px !important;
      }

      .section.cta#contacto .founder.cta-founder img,
      .section.cta#contacto .cta-founder img {
        margin: 0 0 2px 0 !important;
      }
    }



    /* Secciones legales: términos y política de privacidad */
    .legal-section {
      padding: 72px 0 !important;
      background: #ffffff !important;
      color: var(--texto) !important;
    }

    .legal-section + .legal-section {
      padding-top: 0 !important;
    }

    .legal-wrap {
      width: min(980px, 92%);
      margin: 0 auto;
      background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
      border: 1px solid rgba(6, 119, 201, 0.16);
      border-radius: 30px;
      padding: clamp(24px, 4vw, 42px);
      box-shadow: 0 18px 45px rgba(6, 54, 95, 0.08);
      position: relative;
      overflow: hidden;
    }

    .legal-wrap::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--azul), var(--amarillo));
    }

    .legal-kicker {
      display: inline-flex;
      align-items: center;
      padding: 7px 12px;
      margin-bottom: 14px;
      border-radius: 999px;
      background: var(--azul-claro);
      color: var(--azul-oscuro);
      font-size: 0.8rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.03em;
      border: 1px solid rgba(6, 119, 201, 0.14);
    }

    .legal-wrap h2 {
      color: var(--azul-oscuro);
      font-size: clamp(1.9rem, 3.6vw, 2.8rem);
      line-height: 1.08;
      letter-spacing: -0.045em;
      margin-bottom: 24px;
    }

    .legal-block {
      display: grid;
      gap: 18px;
    }

    .legal-block article {
      padding: 18px 0;
      border-top: 1px solid rgba(6, 119, 201, 0.10);
    }

    .legal-block article:first-child {
      border-top: 0;
      padding-top: 0;
    }

    .legal-block h3 {
      color: var(--azul-oscuro);
      font-size: 1.08rem;
      line-height: 1.25;
      margin-bottom: 8px;
    }

    .legal-block p,
    .legal-block li {
      color: #475569;
      font-size: 0.98rem;
      line-height: 1.7;
    }

    .legal-block ul {
      margin: 10px 0 0 20px;
      padding: 0;
    }

    .legal-block a {
      color: var(--azul);
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .legal-data {
      display: grid;
      gap: 6px;
      margin-top: 8px;
      padding: 14px 16px;
      border-radius: 18px;
      background: #f7fbff;
      border: 1px solid rgba(6, 119, 201, 0.12);
    }

    .legal-links a {
      color: #cbd5e1;
      font-weight: 700;
    }

    .legal-links a:hover {
      color: #ffffff;
    }

    .consent-field {
      margin-top: 2px !important;
      margin-bottom: 13px !important;
    }

    .consent-check {
      display: flex !important;
      align-items: flex-start !important;
      gap: 9px !important;
      margin: 0 !important;
      color: #475569 !important;
      font-size: 0.82rem !important;
      font-weight: 600 !important;
      line-height: 1.4 !important;
    }

    .consent-check input {
      width: 16px !important;
      height: 16px !important;
      flex: 0 0 16px !important;
      margin-top: 2px !important;
      padding: 0 !important;
      border-radius: 4px !important;
      box-shadow: none !important;
    }

    .consent-check a {
      color: var(--azul) !important;
      text-decoration: underline !important;
      text-underline-offset: 2px !important;
    }

    @media (max-width: 560px) {
      .legal-section {
        padding: 48px 0 !important;
      }

      .legal-section + .legal-section {
        padding-top: 0 !important;
      }

      .legal-wrap {
        border-radius: 24px;
      }
    }



    .legal-page-section {
      min-height: 70vh;
    }

    /* Burbujas lentas, solo en la sección hero */
    .hero-bubbles {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }

    .hero-bubbles .bubble {
      position: absolute;
      bottom: -15%;
      display: block;
      border-radius: 50%;
      background: radial-gradient(
        circle at 30% 30%,
        rgba(6, 119, 201, 0.22),
        rgba(6, 119, 201, 0.06) 60%,
        rgba(6, 119, 201, 0) 70%
      );
      animation: hero-burbuja-subir linear infinite;
    }

    .hero-bubbles .bubble.naranja {
      background: radial-gradient(
        circle at 30% 30%,
        rgba(237, 124, 44, 0.26),
        rgba(237, 124, 44, 0.07) 60%,
        rgba(237, 124, 44, 0) 70%
      );
    }

    @keyframes hero-burbuja-subir {
      0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
        filter: blur(8px);
      }
      12% {
        opacity: 1;
        filter: blur(0);
      }
      88% {
        opacity: 1;
        filter: blur(0);
      }
      100% {
        transform: translateY(-120vh) translateX(var(--deriva, 30px));
        opacity: 0;
        filter: blur(8px);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-bubbles .bubble {
        animation: none;
        display: none;
      }
    }

    /* Aviso de cookies */
    .cookie-banner[hidden] {
      display: none !important;
    }

    .cookie-banner {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 60;
      background: var(--blanco);
      border-top: 1px solid var(--borde);
      box-shadow: var(--sombra);
      padding: 20px;
    }

    .cookie-banner__inner {
      width: min(1120px, 92%);
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }

    .cookie-banner__text {
      flex: 1 1 380px;
      font-size: 0.92rem;
      color: var(--texto);
    }

    .cookie-banner__text a {
      color: var(--azul);
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .cookie-banner__actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .cookie-banner__actions .btn {
      padding: 12px 22px;
    }

    @media (max-width: 640px) {
      .cookie-banner__actions {
        width: 100%;
      }

      .cookie-banner__actions .btn {
        flex: 1 1 auto;
      }
    }
