  /* ============================================================
      1. VARIABLES Y RESET
  ============================================================ */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  :root {
    --blue-dark: #001D3D;
    --blue-mid: #1565A8;
    --blue-light: #00A3E0;
    --yellow: #F39C12;
    --yellow-pale: #FEF9E7;
    --white: #FFFFFF;
    --off-white: #F9FAFB;
    --dark: #1A1A23;
    --blue-pale: #EAF3FB;
    --blue-tint: #D6E8F7;
    --text-body: #606060;
    --text-muted: #000000;
    --border: #E2E8F0;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--white);
    color: var(--text-body);
    overflow-x: hidden;
    line-height: 1.6;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  /* ============================================================
      2. ANIMACIONES GLOBALES
  ============================================================ */
  .fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .fade-in-up.delay-1 {
    transition-delay: 0.15s;
  }

  .scale-up {
    transform: translateY(30px) scale(0.96);
  }

  .show-anim {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
  }

  /* ============================================================
      3. UTILIDADES Y COMPONENTES GENÉRICOS
  ============================================================ */
  .section-eyebrow {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue-mid);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
  }

  .section-eyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--yellow);
    border-radius: 2px;
  }

  .section-eyebrow.center {
    justify-content: center;
  }

  .section-eyebrow.center::before,
  .section-eyebrow.center::after {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--yellow);
  }

  .section-h {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: clamp(2rem, 3vw, 2.20rem);
    color: var(--blue-dark);
    margin-bottom: 1rem;
    line-height: 1.1;
  }

  .section-h.center {
    text-align: center;
  }

  .section-h.text-white {
    color: white;
  }

  .section-sub {
    color: var(--text-muted);
    font-size: 1.25rem;
    max-width: 650px;
    line-height: 1.6;
    margin-bottom: 2.5rem;
  }

  .section-sub.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  /* BOTONES */
  .btn-primary {
    background: var(--yellow);
    color: var(--blue-dark);
    font-weight: 700;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    border: 2px solid var(--blue-dark);
  }

  .btn-primary:hover {
    background: var(--blue-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
  }

  .btn-primary.btn-white {
    background: #fff;
    color: var(--blue-dark);
  }

  .btn-secondary {
    background: transparent;
    color: white;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    border: 2px solid rgba(255, 255, 255, 0.4);
  }

  .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
  }

  /* ============================================================
      4. HEADER
  ============================================================ */
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 75px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 2.5rem;
    justify-content: space-between;
  }

  .logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
  }

  .logo-wrap img {
    width: 55px;
    height: 65px;
    object-fit: contain;
    margin-left: 10px;
  }

  .logo-name {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--blue-dark);
    letter-spacing: -0.01em;
    margin-left: -5px;
    line-height: 1;
  }

  .logo-name span {
    color: var(--yellow);
  }

  .brand-lockup,
  .footer-brand {
    display: flex;
    flex-direction: column;
  }

  .logo-tagline {
    margin-top: 0.15rem;
    color: var(--text-muted);
    font-size: 0.70rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.15;
    text-transform: uppercase;
    white-space: nowrap;
  }

  nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  nav a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  nav a:hover {
    color: var(--blue-mid);
  }

  .btn-nav {
    background: var(--blue-mid);
    color: white !important;
    padding: 0.55rem 1.5rem;
    border-radius: 50px;
    font-weight: 600 !important;
    font-size: 0.99rem !important;
    transition: background 0.2s, transform 0.15s !important;
  }

  .btn-nav:hover {
    background: var(--blue-dark) !important;
    transform: translateY(-1px);
  }


  /* ============================================================
      5. HERO DINÁMICO (HERO SPLIT)
  ============================================================ */
  .hero-split {
    margin-top: 45px;
    background: var(--blue-dark);
    position: relative;
    padding: 5rem 4rem 5rem;
    overflow: hidden;
  }

  .hero-bg-elements .glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
  }

  .glow-1 {
    top: -10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: var(--blue-mid);
  }

  .glow-2 {
    bottom: 0;
    right: 5%;
    width: 200px;
    height: 200px;
    background: var(--yellow);
    opacity: 0.1;
  }

  .hero-split-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
  }

  .hero-content h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
  }

  .hero-content h1 em {
    font-style: italic;
    color: #7EC8E3;
  }

  .hero-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 90%;
  }

  .hero-benefits {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .hero-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
  }

  .hero-benefits li i {
    color: var(--yellow);
    font-size: 1.25rem;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .custom-shape-divider-bottom-1681788223 {
    position: absolute;
    bottom: -0.5px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
  }

  .custom-shape-divider-bottom-1681788223 svg {
    position: relative;
    display: block;
    width: 100%;
    height: 75px;
  }

  .custom-shape-divider-bottom-1681788223 .shape-fill {
    fill: var(--white);
  }

  /* ============================================================
      7. TABS (SERVICIOS Y REQUISITOS)
  ============================================================ */
  .services-tabs-section {
    padding: 0rem 0;
    background: var(--white);
  }

  .tabs-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
  }

  .tabs-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .tab-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: transparent;
    border: 1px solid var(--dark);
    border-radius: var(--radius-sm);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .tab-btn i {
    font-size: 2rem;
    color: var(--text-body);
    transition: color 0.3s;
  }

  .tab-btn strong {
    display: block;
    font-size: 1.25rem;
    color: var(--text-body);
    font-family: 'Fraunces', serif;
    margin-bottom: 3px;
    transition: color 0.3s;
  }

  .tab-btn span {
    display: block;
    font-size: 0.999rem;
    color: var(--text-muted);
    line-height: 1.3;
  }

  .tab-btn:hover {
    background: var(--off-white);
  }

  .tab-btn.active {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    box-shadow: 0 10px 20px #0a3d6b33;
    transform: translateX(10px);
  }

  .tab-btn.active i {
    color: var(--yellow);
  }

  .tab-btn.active strong {
    color: white;
  }

  .tab-btn.active span {
    color: #ffffffb3;
  }

  .tabs-content-area {
    background: var(--off-white);
    margin-top: 3%;
    position: relative;
    display: flex;
    align-items: stretch;
    text-align: center;
    border: 2px solid var(--blue-tint);
    border-radius: 16px;
  }

  .tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s, transform 0.4s;
    width: 100%;
  }

  .tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    padding: 0.1rem 1rem 1rem;
  }

  .tab-pane h3 {
    font-family: 'Fraunces', serif;
    font-size: 2.2rem;
    color: var(--blue-dark);
    margin-top: 10px;
  }

  .pane-desc {
    font-size: 1.35rem;
    color: var(--text-muted);
    margin-top: 5px;
    margin-bottom: 0.5rem;
  }

  .pane-reqs {
    list-style: none;
    margin-bottom: 2rem;
    margin-top: 0.5rem;
    display: inline-block;
    text-align: left;
  }

  .pane-reqs li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.6;
  }

  .pane-reqs li i {
    color: var(--blue-light);
    margin-top: 6.1px;
    font-size: 1.25rem;
  }

  .pane-image-dl {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    margin-top: 1.5rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
  }

  .pane-image-dl {
    display: flex;
    width: fit-content;
    margin: 0 auto;
    border-color: var(--blue-dark);
  }

  .drive-big-icon {
    font-size: 55px;
    color: var(--blue-mid);
    margin-bottom: 2px;
  }

  .btn-dl {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 0.7rem 1.2rem;
    background: var(--blue-dark);
    border-radius: 50px;
    transition: background 0.2s;
  }

  .btn-dl:hover {
    background: var(--blue-mid);
  }


  /* ============================================================
      11. FAQ
  ============================================================ */
  .faq-cta-wrapper {
    background: white;
    padding: 2rem 0;
  }

  .faq-container {
    max-width: 750px;
    margin: 5px auto;
  }

  .faq-list {
    margin-top: 1.25rem;
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .faq-item {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .faq-item:hover {
    border-color: var(--blue-tint);
    box-shadow: 0 4px 12px rgba(21, 101, 168, 0.05);
  }

  .faq-header {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 1rem 1rem;
    font-size: 1.1rem;
    font-family: inherit;
    font-weight: 600;
    color: var(--blue-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: background 0.2s;
  }

  .faq-header:hover {
    background: var(--off-white);
  }

  .faq-header i {
    width: 32px;
    height: 32px;
    background: var(--blue-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-mid);
    font-size: 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .faq-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .faq-body p {
    padding: 0 1rem 1rem 1rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
  }

  .faq-item.open {
    border-color: var(--blue-mid);
    box-shadow: 0 10px 30px rgba(21, 101, 168, 0.1);
  }

  .faq-item.open .faq-header {
    background: transparent;
  }

  .faq-item.open .faq-body {
    max-height: 400px;
  }

  .faq-item.open .faq-header i {
    background: var(--blue-mid);
    color: white;
    transform: rotate(180deg);
  }


  /* ============================================================
    12. FOOTER
============================================================ */
  footer {
    background: var(--blue-dark);
    padding: 1rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-inner .logo-name {
    color: white;
    font-size: 2rem;
    text-decoration: none;
  }

  .footer-brand {
    text-decoration: none;
  }

  .footer-logo .logo-tagline {
    color: rgba(255, 255, 255, 0.72);
    font-size: .70rem;
  }

  .footer-links {
    display: flex;
    gap: 2rem;
  }

  .footer-links a {
    font-size: 0.90rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover {
    color: white;
  }

  .footer-bottom {
    max-width: 1200px;
    margin: 1rem auto 0;
    text-align: center;
    font-size: 0.90rem;
    color: rgba(255, 255, 255, 0.3);
  }

  .social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
  }

  .social-links a:hover {
    background: var(--blue-mid);
    transform: translateY(-3px);
  }

  .social-links img {
    width: 35px;
    height: 35px;
    object-fit: contain;
  }

  .footer-copy {
    font-size: 0.90rem;
    color: rgba(255, 255, 255, 0.3);
  }

  /*============================================================
RESPONSIVE
============================================================*/

  /* ----------------------- 1024px ----------------------- */

  @media (max-width:1024px) {

    .container {
      padding: 0 1.8rem;
    }

    header {
      padding: 0 1.5rem;
    }

    .hero-split {
      padding: 6rem 2rem 4rem;
    }

    .hero-split-inner {
      text-align: center;
    }

    .hero-desc {
      max-width: 100%;
      margin: auto;
    }

    .hero-benefits {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
      max-width: 600px;
      margin: 2rem auto 0;
    }

    .hero-benefits li {
      display: flex;
      align-items: flex-start;
      width: 100%;
      gap: 12px;
      margin: 0;
    }

    .hero-benefits li i {
      flex-shrink: 0;
      margin-top: 4px;
      margin-bottom: 25px;
    }

    .tabs-wrapper {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .tabs-content-area {
      margin-top: 0;
    }

    .tab-btn.active {
      transform: none;
    }

  }

  /* ----------------------- 768px ----------------------- */

  @media (max-width:768px) {

    header {
      height: auto;
      padding: 1rem;
      flex-direction: column;
      gap: 1rem;
    }

    .logo-wrap {
      justify-content: center;
    }

    .logo-name {
      font-size: 1.6rem;
    }

    .logo-tagline {
      font-size: .6rem;
    }

    nav {
      width: 100%;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    nav a {
      font-size: .95rem;
    }

    .hero-split {
      margin-top: 120px;
      padding: 3rem 1.5rem;
    }

    .hero-content h1 {
      font-size: 2rem;
    }

    .hero-desc {
      font-size: 1rem;
      line-height: 1.7;
    }

    .hero-benefits {
      width: 100%;
      max-width: 100%;
      margin-top: 2rem;
    }

    .hero-benefits li {
      font-size: 1rem;
      line-height: 1.5;
    }

    .hero-benefits li i {
      font-size: 1.1rem;
    }

    .section-h {
      font-size: 2rem;
    }

    .section-sub {
      font-size: 1rem;
    }

    .tab-btn {
      padding: 1rem;
    }

    .tab-btn strong {
      font-size: 1.05rem;
    }

    .tab-btn span {
      font-size: .9rem;
    }

    .tab-pane {
      padding: 1.5rem;
    }

    .tab-pane h3 {
      font-size: 1.7rem;
    }

    .pane-desc {
      font-size: 1rem;
    }

    .pane-reqs li {
      font-size: .95rem;
    }

    .pane-image-dl {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }

    .drive-big-icon {
      font-size: 42px;
    }

    .btn-dl {
      width: 100%;
      justify-content: center;
    }

    .footer-inner {
      flex-direction: column;
      text-align: center;
    }

    .social-links {
      justify-content: center;
    }

  }


  /* ----------------------- 480px ----------------------- */

  @media (max-width:480px) {

    .container {
      padding: 0 1rem;
    }

    header {
      padding: .8rem;
    }

    .logo-wrap img {
      width: 45px;
      height: 55px;
    }

    .logo-name {
      font-size: 1.35rem;
    }

    .logo-tagline {
      font-size: .52rem;
    }

    nav {
      gap: .7rem;
    }

    nav a {
      font-size: .88rem;
    }

    .hero-split {
      margin-top: 118px;
      padding: 2.5rem 1rem;
    }

    .hero-content h1 {
      font-size: 1.75rem;
      line-height: 1.2;
    }

    .hero-desc {
      font-size: .95rem;
    }

    .hero-benefits {
      gap: .9rem;
    }

    .hero-benefits li {
      font-size: .95rem;
    }

    .hero-benefits li i {
      font-size: 1rem;
      margin-top: 3px;
    }

    .section-eyebrow {
      font-size: .8rem;
    }

    .section-h {
      font-size: 1.8rem;
    }

    .section-sub {
      font-size: .95rem;
    }

    .tabs-controls {
      gap: .8rem;
    }

    .tab-btn {
      flex-direction: column;
      text-align: center;
      align-items: center;
    }

    .tab-btn i {
      font-size: 1.8rem;
    }

    .tab-pane {
      padding: 1.2rem;
    }

    .tab-pane h3 {
      font-size: 1.4rem;
    }

    .pane-desc {
      font-size: .92rem;
    }

    .pane-reqs {
      width: 100%;
    }

    .pane-reqs li {
      font-size: .9rem;
      line-height: 1.5;
    }

    .drive-big-icon {
      font-size: 36px;
    }

    .btn-dl {
      width: 100%;
    }

    .faq-header {
      font-size: .95rem;
      padding: 1rem;
    }

    .faq-body p {
      font-size: .9rem;
    }

    .footer-inner {
      gap: 1rem;
    }

    .footer-copy {
      font-size: .8rem;
    }

    .social-links img {
      width: 30px;
      height: 30px;
    }

  }
