    :root {
      --font-display: "Inter", Helvetica, sans-serif;
      --font-text: "Inter", Helvetica, sans-serif;
      --blue-base: #114C8F;
      --gradient-yellow: rgba(255,213,79,0.25);
      --gradient-red: rgba(244,67,54,0.25);
      --gradient-cyan: rgba(3,169,244,0.25);
      --primary: #003e5c;
      --accent: #ff7a00;
      --bg: #f5f5f5;
      --light: #e6e6e6;
    }

    @import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
    *, *::before, *::after { box-sizing: border-box; }
    body { margin: 0 !important; font-family: var(--font-text); color: #222; }
    .page { width: 100%; margin: 0 auto; }
    
    header {
      display: flex;
      flex-direction: column;
      width: 100%;
    }

    .top-bar {
      background: var(--blue-base);
      padding: 12px 40px;
      box-shadow: 0 4px 4px rgba(0,0,0,0.25);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .top-bar .contact-group {
      display: flex;
      gap: 39px;
      align-items: center;
    }

    .top-bar p { margin: 0; font-size: 14px; color: #fff; }

    .top-bar .time,
    .top-bar .email,
    .top-bar .phone {
        display: flex;
        gap: 17px;
        flex-direction: row;
        align-items: center;
    }

    .top-bar .icon-circle {
      width: 63px;
      height: 63px;
      background: #0a4589;
      border: 2px solid var(--blue-base);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    nav {
      background: rgb(20 38 129 / 25%);
      display: flex;
      height: 64px;
      z-index: 2;
      padding: 0 40px;
      justify-content: space-between;
      align-items: center;
    }

    nav .nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    
    nav .nav-links a {
      color: #fff;
      font-weight: 600;
      text-decoration: none;
      font-size: 16px;
    }

    .actions {
      display: flex;
      align-items: center;
      gap: 24px;
      align-self: stretch;
    }

    .actions button {
      height: 100%;
      box-sizing: border-box;
      padding: 12px 24px;
      background: #fff;
      color: #222;
      border: none;
      cursor: pointer;
    }

    .hero {
      position: relative;
      width: 100%;
      height: 670px;
      margin-top: -64px;
      background: url('https://compracuba.com/wp-content/uploads/2025/05/image.jpg') center/cover no-repeat;
      display: flex;
      justify-content: center;
      align-items: flex-end;
    }
    
    .hero .search {
      display: flex;
      gap: 16px;
      margin-bottom: 24px;
    }
    
    .hero input {
      padding: 16px;
      width: 400px;
      font-size: 18px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    .hero button {
      padding: 16px 32px;
      font-size: 18px;
      border: none;
      background: #000;
      color: #fff;
      cursor: pointer;
      border-radius: 4px;
    }

    .tracking-section.hidden {
      display: none;
    }

    .tracking-section {
      display: flex;
      justify-content: center;
      padding-top: 20px;
      padding-bottom: 20px;
    }

    .card {
      background: white;
      border: 1px solid var(--light);
      border-radius: 12px;
      padding: 16px;
      width: 90%;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .card-left {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .separator {
      width: 1px;
      background: var(--light);
      align-self: stretch;
    }

    .card-right {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .card-right .packages {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .card-right .packages .package-item:nth-last-child(1):nth-child(odd) {
      grid-column: 1 / -1;
      justify-self: center;
    }

    .card-right .package-item {
      background: var(--bg);
      border: 1px solid var(--light);
      border-radius: 8px;
      padding: 8px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .card-right .package-icon {
      width: 24px;
      height: 24px;
      background: var(--accent);
      border-radius: 4px;
      flex-shrink: 0;
    }

    .card-right .package-info {
      display: flex;
      flex-direction: column;
      font-size: 0.9rem;
      gap: 5px;
      color: #333;
    }

    .card-right .package-info span {
      white-space: nowrap;
    }

    .card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .order-id {
      font-weight: bold;
      color: var(--primary);
    }

    .status-badge {
      background: var(--primary);
      color: white;
      padding: 4px 12px;
      border-radius: 12px;
      font-size: 0.9rem;
    }

    .progress {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .progress-bar {
      height: 4px;
      background: var(--light);
      border-radius: 2px;
      overflow: hidden;
    }

    .progress-fill {
      height: 100%;
      width: 0%;
      background: var(--accent);
      transition: width 0.3s ease;
    }

    .steps {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .step {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .step-left {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .step-left .date {
      font-size: 0.9rem;
      color: #666;
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--light);
      border: 2px solid var(--light);
    }

    .step-desc {
      flex: 1;
      text-align: center;
      font-size: 0.9rem;
      color: #333;
    }

    .step.past .dot,
    .step.active .dot {
      background: var(--primary);
      border-color: var(--primary);
    }

    .step.past .step-desc {
      color: #666;
    }

    .step.active .step-desc {
      color: var(--primary);
      font-weight: bold;
    }

    .selector-testimonials {
      display: flex;
      flex-direction: row;
      gap: 10px;
      bottom: 0 !important;
      padding: 0px 0 20px;
      justify-content: center;
      text-align: center;
    }

    .selector-testimonials .option {
      width: 48px;
      height: 12px;
      background: #D9D9D9;
      border-radius: 9999px;
      cursor: pointer;
      transition: width 0.3s ease;
    }

    .selector-testimonials .selected {
      background: #4A5FC8;
      border-radius: 6px;
    }
    
    .testimonials-section {
      background: #f0faf7;
      padding: 96px 32px;
      text-align: center;
    }

    .testimonials-section .testimonials {
      font-family: var(--font-display);
      font-size: 48px;
      margin-bottom: 90px;
    }

    .testimonials-section .author {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      max-width: 400px;
    }

    .testimonials-section .author .avatar {
      width: 64px;
      border-radius: 40%;
    }
    
    .testimonials-section .author .info {
        margin-top: 15px;
        gap: 9px;
        display: flex;
        flex-direction: column;
    }
    
    .testimonials-section .author .info p {
      margin: 0;
    }
    
    .features {
      padding: 80px 32px;
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .features .content {
      display: flex;
      align-self: stretch;
      gap: 12px;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
    }

    .features .title {
      word-wrap: break-word;
      font-size: 16px;
      font-weight: 600;
      line-height: 24px;
      align-self: stretch;
      text-align: center;
      color: #0B4689;
    }

    .features .subtitle {
      word-wrap: break-word;
      color: #101828;
      font-size: 36px;
      font-weight: 600;
      line-height: 44px;
      align-self: stretch;
      text-align: center;
    }
    
    .feature-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.05);
      padding: 30px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: auto;
      gap: 20px;
    }

    .selector-features {
      display: flex;
      flex-direction: row;
      gap: 10px;
      bottom: 0 !important;
      justify-content: center;
      text-align: center;
    }

    .selector-features .option {
      width: 12px;
      height: 12px;
      background: #D9D9D9;
      border-radius: 9999px;
      cursor: pointer;
      transition: width 0.3s ease;
    }

    .selector-features .selected {
      width: 48px;
      background: #4A5FC8;
      border-radius: 6px;
    }

    .feature-card .header {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    
    .feature-card h1 {
      text-align: center;
      margin-bottom: 1rem;
    }

    .feature-card .icon,
    .feature-card .icon-2,
    .feature-card .icon-3 {
      background: #E0EAFF;
      min-width: 24px;
      padding: 11px 12px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .feature-card h3 {
      margin: 0;
      white-space: nowrap;
      font-size: 1.25rem;
    }

    .feature-card p {
      margin: 0;
      font-size: 0.9rem;
      color: #555;
      text-align: left;
    }

    .swiper {
      width: 100%;
      padding-bottom: 3rem;
    }

    .swiper-wrapper {
      justify-content: flex-start;
      height: unset !important;
    }

    .swiper-slide {
      width: auto !important;
      min-width: 100%;
      display: flex;
      justify-content: center;
    }

    .testimonials-section .swiper-slide {
      width: 100% !important;
      min-width: unset !important;
    }

    #loading-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255,255,255,0.6); /* semitransparente */
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }

    #loading-overlay.hidden {
      display: none;
    }

    #loading-overlay dotlottie-player {
      width: 150px;
      height: 150px;
    }

    @media (min-width: 640px) {
      .swiper-slide {
        min-width: calc((100% - 20px) / 2);
      }
    }
    
    @media (max-width: 768px) {
      .top-bar {
        flex-direction: column;
        padding: 12px 16px;
        gap: 12px;
      }

      .top-bar .contact-group {
        flex-direction: column;
      }
      nav {
        flex-direction: column;
        height: auto;
        padding: 12px 16px;
        gap: 12px;
      }
      nav .nav-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
      }
      .actions {
        width: 100%;
        justify-content: center;
      }
      .actions button {
        width: 100%;
        box-sizing: border-box;
      }

      .hero .search {
        flex-direction: column;
        width: 90%;
        max-width: 400px;
        margin-bottom: 16px;
      }
      .hero input,
      .hero button {
        width: 100%;
      }
      .hero button {
        margin-top: 8px;
      }

      .tracking-section {
        padding: 16px;
      }
      .card {
        flex-direction: column;
        width: 100%;
        gap: 16px;
      }
      .separator {
        display: none;
      }
      .card-left, .card-right {
        width: 100%;
      }
      .card-right .packages {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
    }

    @media (min-width: 1024px) {
      .swiper-slide {
        min-width: calc((100% - 2*30px) / 3);
      }
    }