  /* =====================
    BASE
  ===================== */
  html {
    scroll-behavior: smooth;
  }

  /* Header fijo */
  .header-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: white;
    z-index: 1000;
  }

  .header-main.scrolled {
    height: 56px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.9);
  }

  /* Logo flotante */
  .logo-float {
    position: absolute;
    top: 2px;
    left: 0;
    z-index: 1001;
    background: white;
    /* Fondo blanco */
    padding: 10px;
    /* Espacio para que no se corte */
    border-radius: 60%;
    /* Circular */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    display: inline-block;
    /* Para que el padding funcione */
  }

  .logo-float {
    position: absolute;
    top: 2px;
    left: 0;
    z-index: 1001;
    width: 130px;
    /* tamaño total del círculo */
    height: AUTO;
    /* tamaño total del círculo */
    border-radius: 50%;
    /* círculo perfecto */
    overflow: hidden;
    /* recorta cualquier exceso */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    background: white;
    /* fondo del círculo */
  }

  .logo-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* hace que la imagen ocupe todo el círculo */
    display: block;
  }

  .icon-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    /* importante para que no se deforme */
    border-radius: 50%;
    /* hace el círculo */
    display: block;
  }



  /* =====================
    HERO
  ===================== */
  #hero {
    position: relative;
    min-height: calc(100vh - 70px);
    /* resta altura del header sticky */
    display: flex;
    align-items: center;
    background: url("img/hero.jpg") center center / cover no-repeat;
    overflow: hidden;
    background-color: #000;
  }

  #hero .lang-block {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  /* Mobile fix */
  @media (max-width: 768px) {
    #hero {
      min-height: calc(100vh - 60px);
      background-position: center center;
    }
  }

  /* Hero overlay - Premium Gradient */
  #hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
  }

  /* Hero content above overlay */
  #hero .container {
    position: relative;
    z-index: 2;
  }

  /* =====================
    HERO ANIMATIONS
  ===================== */
  /* Estilos generales ya existentes */
  .hero-title,
  .hero-subtitle,
  .hero-btn {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards;
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    animation-delay: 0.5s;
    margin-bottom: 1.6rem;
  }

  .hero-subtitle {
    animation-delay: 1s;
    margin-top: 1rem;
    margin-bottom: 2.75rem;
  }

  .hero-btn {
    animation-delay: 1.5s;
  }

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

  .hero-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
  }

  /* Media query para teléfonos */
  @media (max-width: 767px) {
    .hero-title {
      font-size: 2.2rem !important;
      line-height: 1.2;
      margin-bottom: 1.1rem;
      padding-top: 14vh;
      text-align: center;
    }

    .hero-subtitle {
      font-size: 1.2rem !important;
      line-height: 1.5;
      margin-top: 0.9rem;
      margin-bottom: 1.8rem;
      text-align: center;
    }

    .hero-btn {
      font-size: 1rem;
      padding: 0.6rem 1rem;
      display: flex;
      margin-left: auto;
      margin-right: auto;
      justify-content: center;
    }
  }


  /* =====================
    SECTIONS (NO HERO)
  ===================== */
  .services-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1f2933;
    margin-bottom: 3rem;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .services-title {
      font-size: 2.1rem;
    }
  }

  #services {
    padding-top: 4rem;
    padding-bottom: 3rem;
    background: #f8f9fa;
    min-height: calc(100vh - 50px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }


  section {
    width: 100%;
  }

  /* =====================
    BUTTONS
  ===================== */

  /* Image Dynamics */
  .floating-img {
    animation: floating 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
  }

  @keyframes floating {
    0% {
      transform: translateY(0px);
    }

    50% {
      transform: translateY(-20px);
    }

    100% {
      transform: translateY(0px);
    }
  }

  .btn-success {
    background: linear-gradient(135deg, #28a745, #00c851);
    border: none;
    transition:
      transform 0.3s,
      box-shadow 0.3s;
  }

  .btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }

  .btn-whatsapp {
    background: #25D366 !important;
    border: none !important;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-weight: 600;
  }

  .btn-whatsapp:hover {
    background: #1EBE5D !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  }

  .btn-premium {
    background: linear-gradient(135deg, #bd3a2e 0%, #8f231a 100%) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(189, 58, 46, 0.3);
  }

  .btn-premium:hover {
    background: linear-gradient(135deg, #a83126 0%, #781c15 100%) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(189, 58, 46, 0.5);
  }

  /* =====================
    CARDS & ICONS
  ===================== */
  .card {
    transition:
      transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
      box-shadow 0.3s ease-in-out;
  }

  .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  }

  .icon-container {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  /* Desktop */
  @media (min-width: 1024px) {
    .icon-container {
      padding: 30px 20px;
    }
  }

  .icon-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  }

  .icon-circle {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  /* Subtle shimmer ring on hover */
  .icon-circle::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.18);
    transition: border-color 0.3s ease;
  }

  .icon-container:hover .icon-circle {
    transform: scale(1.12) rotate(5deg);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  }

  .icon-container:hover .icon-circle::after {
    border-color: rgba(255, 255, 255, 0.45);
  }

  /* Ensure the icon images remain crisp and visible */
  .icon-circle img.icon-image {
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
    opacity: 1;
    width: 64px;
    height: 64px;
    object-fit: contain;
    transition: transform 0.4s ease;
    mix-blend-mode: normal;
  }

  .icon-container:hover .icon-image {
    transform: scale(1.08);
  }

  /* Mexican Cultural Identity Gradients (Premium & Serious) */
  /* Talavera Blue */
  .bg-grad-1 {
    background: linear-gradient(135deg, #10375c 0%, #0a243e 100%) !important;
  }

  /* Deep Terracotta */
  .bg-grad-2 {
    background: linear-gradient(135deg, #bd3a2e 0%, #8f231a 100%) !important;
  }

  /* Agave Green */
  .bg-grad-3 {
    background: linear-gradient(135deg, #2b583f 0%, #1c3d2a 100%) !important;
  }

  /* Cempasúchil Gold */
  .bg-grad-4 {
    background: linear-gradient(135deg, #d48b11 0%, #b36e09 100%) !important;
  }

  .title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .subtitle {
    font-size: 14px;
    color: #555;
  }

  /* =====================
    DROPDOWN
  ===================== */
  .dropdown-item {
    font-size: 0.95rem;
  }

  .dropdown-item.active {
    background-color: #f0f0f0;
    font-weight: 600;
  }

  .dropdown-item:hover {
    background-color: #f8f9fa;
  }

  /* =====================
    FOOTER
  ===================== */
  footer {
    background: #111;
    color: #fff;
  }

  /* =====================
    FADE HERO OPTIONAL
  ===================== */
  .fade-hero {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
  }

  .fade-hero.show {
    opacity: 1;
  }

  /* =====================
    LANGUAGE BLOCK TRANSITION (Disabled for SEO)
  ===================== */
  .lang-block {
    opacity: 1;
    transition: none;
  }

  .lang-block.show {
    opacity: 1;
  }

  /* =====================
    ICON CIRCLE
  ===================== */
  .icon-circle svg {
    width: 52px;
    height: 52px;
    stroke: white;
    stroke-width: 1.8;
  }

  .navbar {
    display: flex;
    align-items: center;
  }

  .navbar-nav {
    align-items: flex-end !important;
    text-align: right;
  }

  .navbar-nav .nav-link {
    width: 100%;
  }

  .navbar .nav-link.active {
    color: #198754 !important;
    /* verde bootstrap */
    font-weight: 600;
    position: relative;
  }

  .navbar .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #198754;
    border-radius: 2px;
  }

  .navbar-toggler {
    z-index: 1102;
  }

  /* Mobile nav comfort */
  @media (max-width: 576px) {
    .header-main {
      height: 64px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    }

    .logo-float {
      width: 96px;
      padding: 6px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    }

    .navbar-nav {
      align-items: flex-end !important;
      text-align: right;
      gap: 0.2rem;
    }

    .navbar-nav .nav-link {
      padding: 0.45rem 0;
      font-size: 0.98rem;
      width: auto;
    }

    .navbar-collapse {
      margin-top: 14px;
    }
  }

  .booking-box {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 25px 30px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    font-family: Inter, sans-serif;
  }

  .booking-box h3 {
    font-weight: 700;
    margin-bottom: 18px;
    text-align: center;
  }

  .booking-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: end;
  }

  .booking-row {
    display: flex;
    flex-direction: column;
  }

  .booking-row label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .booking-row input,
  .booking-row select {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
  }

  .booking-box button {
    height: 48px;
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
  }

  @media (max-width: 991px) {
    .navbar-toggler {
      margin-left: auto;
      /* 🔥 esto lo manda a la derecha */
      z-index: 1102;
    }

    .navbar-collapse {
      position: absolute;
      top: 100%;
      right: 12px;
      width: 55%;
      min-width: 220px;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(12px);
      padding: 1.2rem;
      margin-top: 8px;
      border-radius: 14px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
      z-index: 1050;
    }

    .navbar-nav .nav-link {
      width: auto;
    }

    .navbar-nav .btn-whatsapp {
      margin-top: 1.2rem;
    }

    .navbar-nav .dropdown-menu {
      text-align: right;
      border: none;
      background: transparent;
      box-shadow: none;
    }

    .navbar-nav .dropdown-item {
      justify-content: flex-end !important;
    }
  }

  /* =====================
    FLOATING BUTTONS (FINAL)
  ===================== */
  .floating-btn {
    position: fixed;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1040;

    /* 🔑 ESTADO INICIAL FORZADO */
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(12px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
    animation: softBounce 6s ease-in-out infinite;
  }

  .floating-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  }

  .booking-btn {
    bottom: 100px;
    background: linear-gradient(135deg, rgba(212, 139, 17, 0.9) 0%, rgba(179, 110, 9, 0.9) 100%);
    /* Cempasúchil Gold */
    box-shadow: 0 12px 32px rgba(212, 139, 17, 0.45);
    animation: pulseGold 4s ease-in-out infinite;
  }

  .contact-btn {
    bottom: 24px;
    background: linear-gradient(135deg, rgba(16, 55, 92, 0.95) 0%, rgba(10, 36, 62, 0.95) 100%);
    /* Talavera Blue */
    box-shadow: 0 12px 32px rgba(16, 55, 92, 0.4);
  }

  @keyframes softBounce {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-4px);
    }
  }

  @keyframes pulseGold {

    0%,
    100% {
      box-shadow: 0 12px 32px rgba(212, 139, 17, 0.45);
    }

    50% {
      box-shadow: 0 12px 40px rgba(212, 139, 17, 0.7), 0 0 0 8px rgba(212, 139, 17, 0.1);
    }
  }

  /* Global btn-success override removed */

  .floating-btn svg {
    width: 26px;
    height: 26px;
    stroke: white;
    stroke-width: 2;
  }

  @media (max-width: 576px) {
    .floating-btn {
      right: 12px;
      width: 46px;
      height: 46px;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
      animation: none;
      backdrop-filter: blur(10px);
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.12));
    }

    .booking-btn {
      bottom: 76px;
    }

    .contact-btn {
      bottom: 14px;
    }

    .floating-btn svg {
      width: 20px;
      height: 20px;
    }
  }

  /* =====================
   FLOATING LABELS
===================== */
  .floating-label {
    position: absolute;
    right: 70px;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;

    opacity: 0;
    transform: translateX(10px);
    pointer-events: none;

    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
  }

  /* Mostrar texto al hover */
  .floating-btn:hover .floating-label {
    opacity: 1;
    transform: translateX(0);
  }

  /* Mobile: que no estorbe */
  @media (max-width: 768px) {
    .floating-label {
      display: none;
    }
  }

  /* =====================
    MOBILE ACTION BAR
  ===================== */
  .mobile-action-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 10px;
    display: flex;
    gap: 8px;
    padding: 8px;
    background: rgba(17, 24, 39, 0.88);
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    z-index: 1038;
  }

  .mobile-action-bar .action {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 8px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.78rem;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    letter-spacing: 0.2px;
    transition: opacity 0.18s ease, transform 0.18s ease;
    -webkit-tap-highlight-color: transparent;
    font-family: inherit;
  }

  .mobile-action-bar .action:active {
    opacity: 0.8;
    transform: scale(0.97);
  }

  .mobile-action-bar .action svg,
  .mobile-action-bar .action i {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    flex-shrink: 0;
  }

  .mobile-action-bar .action.whatsapp {
    background: linear-gradient(145deg, #006847, #004b33);
    border: 1px solid rgba(0, 255, 136, 0.4);
    animation: whatsappPulseGlow 1.5s infinite alternate;
  }

  @keyframes whatsappPulseGlow {
    0% {
      box-shadow: 0 0 4px rgba(0, 255, 136, 0.2), inset 0 0 4px rgba(0, 255, 136, 0.2);
      border-color: rgba(0, 255, 136, 0.4);
    }
    100% {
      box-shadow: 0 0 12px rgba(0, 255, 136, 0.8), inset 0 0 8px rgba(0, 255, 136, 0.5);
      border-color: rgba(0, 255, 136, 1);
    }
  }

  .mobile-action-bar .action.call {
    background: linear-gradient(145deg, #10375c, #0a243e);
    border: none;
  }

  /* Very small phones */
  @media (max-width: 380px) {
    .mobile-action-bar {
      padding: 7px 8px;
      gap: 7px;
    }

    .mobile-action-bar .action {
      padding: 8px 5px;
      font-size: 0.70rem;
    }

    .mobile-action-bar .action svg,
    .mobile-action-bar .action i {
      width: 14px;
      height: 14px;
    }
  }

  @media (min-width: 768px) {
    .mobile-action-bar {
      display: none;
    }
  }

  @media (max-width: 768px) {

    .floating-btn.booking-btn,
    .floating-btn.contact-btn {
      display: none;
    }
  }



  /* ==================================================
    SERVICES – MOBILE OPTIMIZATION
    Ajustes exclusivos para celulares
  ================================================== */
  @media (max-width: 576px) {

    /* Reduce el padding general de la sección
      Evita que ocupe demasiado al|to en móvil */
    #services {
      padding-top: 2.5rem;
      padding-bottom: 2.5rem;
    }

    /* Ajusta el título "Our Services"
      Más compacto y legible en pantallas pequeñas */
    #services h2 {
      margin-bottom: 2rem;
      font-size: 1.7rem;
    }

    /* Reduce el espacio vertical entre cards
      Controla el gap del grid de Bootstrap */
    .row.g-4 {
      --bs-gutter-y: 1.25rem;
    }

    /* Elimina el estiramiento vertical causado por d-flex
      SOLO en móvil (clave para que no se vean gigantes) */
    #services .col-md-6,
    #services .col-lg-3 {
      display: block !important;
    }

    /* Card principal de cada servicio
      Versión compacta y premium para móvil */
    .icon-container {
      padding: 22px 16px;
      border-radius: 16px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
      background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    }

    /* Desactiva el hover exagerado en pantallas táctiles
      (no existe hover real en mobile) */
    .icon-container:hover {
      transform: none;
      box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
    }

    /* Tamaño del círculo del icono
      Más proporcional para celular */
    .icon-circle {
      width: 76px;
      height: 76px;
      margin-bottom: 12px;
    }

    /* Tamaño del icono SVG dentro del círculo */
    .icon-circle svg {
      width: 34px;
      height: 34px;
    }

    /* Título del servicio
      Reduce peso visual */
    .title {
      font-size: 16px;
      line-height: 1.3;
    }

    /* Subtítulo / descripción
      Mantiene legibilidad sin inflar */
    .subtitle {
      font-size: 13px;
    }
  }

  /* =====================
    PACKAGES
  ===================== */
  #packages {
    padding: 80px 20px;
    background: #ffffff;
    border-top: 5px solid #bd3a2e;
    /* Terracotta subtle accent line */
  }

  .section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1f2933;
  }

  .section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
  }

  .packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: auto;
  }

  .package-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: #0b5ed7;
  }

  .package-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .price {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0b5ed7;
    margin-bottom: 20px;
  }

  .price span {
    font-size: 1rem;
    color: #555;
  }

  .description {
    color: #555;
    line-height: 1.6;
  }

  .package-card ul {
    margin-top: 20px;
    padding-left: 20px;
  }

  .package-card ul li {
    margin-bottom: 10px;
    color: #444;
  }

  @media (max-width: 576px) {
    .package-card {
      text-align: center;
      padding: 32px 22px;
    }

    .package-card ul {
      padding-left: 0;
      list-style: none;
    }
  }

  .package-card.featured {
    border: 2px solid #0b5ed7;
  }

  /* Pack icon badges */
  .pack-icon-row {
    display: inline-flex;
    gap: 12px;
    align-items: center;
  }

  .pack-icon-badge {
    width: auto;
    height: auto;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    border: none;
    background: transparent;
  }

  .pack-emoji {
    font-size: 32px;
    line-height: 1;
    display: inline-block;
    transform: none;
  }

  .pack-icon-badge svg {
    width: 28px;
    height: 28px;
    display: block;
    color: #fff;
  }

  .badge-check {
    background: transparent;
  }

  .badge-chat {
    background: transparent;
  }

  .badge-wa {
    background: transparent;
  }

  .pack-icon-duo {
    gap: 10px;
  }

  .pack-icon,
  .pack-icon-wa,
  .modal-pack-icon,
  .modal-pack-icon-wa {
    width: 100%;
    height: 100%;
    color: currentColor;
  }

  @media (max-width: 576px) {
    .pack-icon-badge {
      width: auto;
      height: auto;
      box-shadow: none;
    }

    .pack-emoji {
      font-size: 28px;
    }
  }

  /* Checkout lateral */
  .checkout-card {
    background: #fff;
    border-color: #e5e7eb !important;
  }

  .checkout-card .display-6 {
    color: #0b5ed7;
  }

  @media (max-width: 992px) {
    .checkout-card {
      margin-top: 12px;
    }
  }

  #packages .section-title {
    margin-top: 0;
  }

  /* =====================
    BOOKING MODAL – MOBILE FIX
  ===================== */
  @media (max-width: 576px) {
    .modal-dialog {
      margin: 0.75rem;
    }

    .modal-content {
      border-radius: 16px;
    }

    .booking-box {
      padding: 20px 16px;
    }

    .booking-grid {
      grid-template-columns: 1fr;
      /* 🔥 UNA COLUMNA */
      gap: 14px;
    }

    .booking-box button {
      width: 100%;
      margin-top: 10px;
    }
  }

  /* =====================
    SECTION PADDING ADJUSTMENTS – MOBILE
  ===================== */
  @media (max-width: 576px) {
    #services {
      padding-bottom: 2rem;
    }


    #packages {
      padding-top: 2.5rem;
    }
  }

  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .whatsapp-icon {
    width: 48px;
    height: 48px;

    /* Convierte negro → verde WhatsApp */
    filter: invert(48%) sepia(93%) saturate(459%) hue-rotate(88deg) brightness(95%) contrast(92%);
  }

  .gmail-icon {
    width: 48px;
    height: 48px;

    filter: invert(19%) sepia(91%) saturate(6761%) hue-rotate(357deg) brightness(96%) contrast(112%);
  }

  .booking-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }

  .booking-row {
    flex: 1 1 45%;
    /* cada input ocupa ~45% del ancho */
    display: flex;
    flex-direction: column;
  }

  @media (max-width: 640px) {
    .booking-row {
      flex: 1 1 100%;
    }

    #dates-container {
      flex-wrap: nowrap;
      gap: 10px;
    }
    #dates-container .booking-row {
      flex: 1;
      min-width: 0;
    }

    .booking-box {
      padding: 18px 14px;
    }
  }

  .booking-row label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .booking-row input,
  .booking-row select {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
  }

  .booking-row input:focus,
  .booking-row select:focus {
    border-color: #198754;
    outline: none;
    box-shadow: 0 0 5px rgba(25, 135, 84, 0.3);
  }

  .packages-modal {
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
    /* allow wrapping on tiny screens */
  }

  .package-option {
    padding: 15px 20px;
    border-radius: 12px;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 120px;
    flex: 1 1 auto;
  }

  .package-option.active {
    border-color: #198754;
    background: rgba(25, 135, 84, 0.1);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  /* Mobile: shrink package cards so all 3 fit in one row */
  @media (max-width: 480px) {
    .packages-modal {
      gap: 6px;
      flex-wrap: nowrap;
      align-items: stretch;
    }

    .package-option {
      padding: 10px 6px;
      min-width: 0;
      flex: 1 1 0;
      /* equal width, no minimum */
      border-radius: 10px;
    }

    .package-option p.fw-bold {
      font-size: 0.72rem;
      margin-bottom: 2px !important;
      word-break: break-word;
    }

    .package-option p.text-muted {
      font-size: 0.62rem;
      line-height: 1.25;
    }

    .package-option .pack-icon-badge {
      width: 28px !important;
      height: 28px !important;
    }

    .package-option .pack-emoji {
      font-size: 0.85rem;
    }

    .package-option .mb-2 {
      margin-bottom: 4px !important;
    }

    .package-option.active {
      transform: scale(1.02);
    }
  }


  /* People Number Selector */
  .people-num-selector {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  .pnum-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 2px solid #ddd;
    cursor: pointer;
    color: #555;
    font-size: 1rem;
    font-weight: 700;
    background: #fff;
    transition: all 0.2s ease;
    padding: 0 8px;
  }

  .pnum-btn:hover {
    border-color: #0055A4;
    color: #0055A4;
    transform: translateY(-2px);
  }

  .pnum-btn.active {
    border-color: #0055A4;
    background: linear-gradient(135deg, #0055A4, #003366);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 85, 164, 0.35);
  }

  /* WhatsApp modal button */
  .btn-whatsapp-modal {
    height: 52px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
    letter-spacing: 0.3px;
  }

  .btn-whatsapp-modal:hover {
    background: linear-gradient(135deg, #0d7a6e 0%, #1ebe5d 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
  }

  #about {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
    background-color: #f8f9fa;
    /* Fondo suave */
    padding-top: 80px;
    padding-bottom: 80px;
    min-height: calc(100vh - 50px);
    display: flex;
    align-items: center;
  }

  #about .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1f2933;
  }

  #about .section-underline {
    width: 60px;
    height: 3px;
    background-color: #198754;
    /* verde Wegomexi */
    border-radius: 2px;
    margin: 0 auto;
  }

  #about .section-subtitle {
    font-size: 1.15rem;
    font-weight: 500;
    color: #374151;
  }

  #about .about-text p {
    font-size: 1rem;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.85;
  }

  #about .about-img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

  /* Responsive */
  @media (max-width: 768px) {
    #about .row.align-items-center {
      flex-direction: column;
    }

    #about .about-img {
      margin-bottom: 2rem;
    }
  }

  #trust {
    background-color: #f8f9fa;
    padding-top: 80px;
    padding-bottom: 80px;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  }

  #trust .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1f2933;
    margin-bottom: 0.5rem;
  }

  #trust .section-underline {
    width: 60px;
    height: 3px;
    background-color: #198754;
    /* verde Wegomexi */
    border-radius: 2px;
    margin: 0 auto 24px;
  }

  #trust .section-subtitle {
    font-size: 1.15rem;
    font-weight: 500;
    color: #374151;
    line-height: 1.65;
    max-width: 720px;
    margin: 0 auto 44px;
  }

  #trust .trust-text p {
    font-size: 1rem;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.85;
    margin-bottom: 1.6rem;
  }

  #trust .img-fluid {
    width: 100%;
    border-radius: 12px;
    /* bordes redondeados */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    max-height: 480px;
    object-fit: cover;
  }

  /* Responsive para móviles: imagen arriba, texto debajo */
  @media (max-width: 768px) {
    #trust .row.align-items-center {
      flex-direction: column;
    }

    #trust .col-lg-5 {
      margin-bottom: 2rem;
    }
  }

  #packages {
    background-color: #f8f9fb;
    padding-top: 80px;
    padding-bottom: 80px;
    min-height: calc(100vh - 50px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /* =====================
    PREMIUM TYPOGRAPHY
  ===================== */
  .section-title,
  .services-title,
  .testimonials-title,
  #about .section-title,
  #trust .section-title,
  #packages .section-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif !important;
    letter-spacing: -0.5px;
  }

  /* Testimonials – full-width dark premium strip */
  #testimonials {
    background: linear-gradient(135deg, #0a1628 0%, #1a2e4a 50%, #0f2238 100%);
    padding: 40px 0 35px;
    position: relative;
    overflow: hidden;
  }

  #testimonials::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 2%;
    font-size: 140px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: rgba(255, 255, 255, 0.04);
    pointer-events: none;
    line-height: 1;
  }

  .testimonials-inner {
    width: 100%;
  }

  .testimonials-title {
    color: #fff !important;
    font-size: 2.8rem !important;
    font-weight: 700 !important;
    text-align: center;
    margin-bottom: 12px !important;
  }

  .testimonials-sub {
    color: #f59e0b;
    text-align: center;
    font-size: 1.2rem;
    letter-spacing: 4px;
    margin-bottom: 36px;
  }

  /* ── Marquee wrapper ─────────────────────────────── */
  .marquee-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 4px 0 12px;
    /* side fade masks */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  }

  .marquee-content {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: marqueeScroll 42s linear infinite;
    will-change: transform;
  }

  @keyframes marqueeScroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  /* ── Individual testimonial card ────────────────── */
  .testimonial-card {
    flex-shrink: 0;
    width: 320px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    padding: 26px 22px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  }

  .testimonial-card .stars {
    color: #fbbf24;
    font-size: 0.88rem;
    letter-spacing: 3px;
  }

  .testimonial-card .quote {
    font-style: italic;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.05rem;
    margin: 0;
    flex: 1;
  }

  .testimonial-card .name {
    font-weight: 700;
    color: #f59e0b;
    font-size: 0.82rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin: 0;
  }

  @media (max-width: 768px) {
    #testimonials {
      padding: 25px 0 25px;
    }

    .testimonials-title {
      font-size: 2.1rem !important;
      margin-bottom: 8px !important;
    }

    .testimonial-card {
      width: 270px;
      padding: 20px 18px;
    }

    .testimonial-card .quote {
      font-size: 0.97rem;
    }
  }


  #packages .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
  }

  #packages .section-underline {
    width: 60px;
    height: 3px;
    background-color: #198754;
    border-radius: 2px;
    margin: 0 auto 20px;
  }

  #packages .section-subtitle {
    font-size: 1.2rem;
    color: #495057;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 40px;
  }

  .packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
  }

  .package-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .package-card.featured {
    border: 2px solid #0b5ed7;
    /* destaca el paquete */
  }

  .package-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .package-card .price {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0b5ed7;
    margin-bottom: 15px;
  }

  .package-card .price span {
    font-size: 1rem;
    color: #555;
  }

  .package-card .description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .package-card ul {
    margin-top: 10px;
    padding-left: 20px;
  }

  .package-card ul li {
    margin-bottom: 10px;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.4;
  }

  /* Responsive */
  @media (max-width: 768px) {
    #packages .section-title {
      font-size: 2rem;
    }

    #packages .section-subtitle {
      font-size: 1rem;
    }

    .package-card h3 {
      font-size: 1.3rem;
    }

    .package-card .price {
      font-size: 1.2rem;
    }
  }

  .floating-btn::before {
    content: '';
    position: absolute;
    left: -12px;
    /* fuera del botón */
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 8px solid #111;
    /* flecha hacia la derecha */
    opacity: 0.6;
    animation: arrowBlink 1.4s infinite;
  }

  @keyframes arrowBlink {

    0%,
    100% {
      opacity: 0.6;
    }

    50% {
      opacity: 0.2;
    }
  }

  /* PACKAGE BUTTONS */
  .btn-book-package {
    display: block;
    width: 100%;
    padding: 12px 20px;
    border-radius: 50px;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 1.5rem !important;
  }

  .btn-book-package:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: white;
  }

  .btn-pack-welcome {
    /* verde bandera mexicano */
    background: linear-gradient(135deg, #006847 0%, #004b33 100%);
  }

  .btn-pack-travel {
    /* rojo oscuro mexicano */
    background: linear-gradient(135deg, #CE1126 0%, #990c1c 100%);
  }

  .btn-pack-assistance {
    /* gris neutro */
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
  }

  /* =====================
  THEMED PACKAGE CARDS (INDEX)
===================== */
  .pack-card-green {
    background: #ffffff;
    border: 2px solid transparent !important;
    transition: all 0.3s ease;
  }

  .pack-card-green .pack-icon {
    color: #006847;
    transition: color 0.3s;
  }

  .pack-card-green:hover {
    border-color: #006847 !important;
    background: rgba(0, 104, 71, 0.08) !important;
    box-shadow: 0 8px 25px rgba(0, 104, 71, 0.4) !important;
    transform: translateY(-8px);
  }

  .pack-card-gray {
    background: #ffffff;
    border: 2px solid transparent !important;
    transition: all 0.3s ease;
  }

  .pack-card-gray .pack-icon-wa {
    color: #25D366;
    transition: color 0.3s;
  }

  .pack-card-gray:hover {
    border-color: #6c757d !important;
    background: rgba(108, 117, 125, 0.08) !important;
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.3) !important;
    transform: translateY(-8px);
  }

  .pack-card-red {
    background: #ffffff;
    border: 2px solid transparent !important;
    transition: all 0.3s ease;
  }

  .pack-card-red .pack-icon,
  .pack-card-red .pack-icon-wa {
    color: #CE1126;
    transition: color 0.3s;
  }

  .pack-card-red:hover {
    border-color: #CE1126 !important;
    background: rgba(206, 17, 38, 0.08) !important;
    box-shadow: 0 8px 25px rgba(206, 17, 38, 0.4) !important;
    transform: translateY(-8px);
  }

  /* =====================
  THEMED MODAL OPTIONS (GLOWS)
===================== */
  .package-option[data-package="Pack Welcome"] .modal-pack-icon {
    color: #006847;
    transition: 0.3s;
  }

  .package-option[data-package="Pack Welcome"].active {
    border-color: #006847 !important;
    background: rgba(0, 104, 71, 0.08) !important;
    box-shadow: 0 8px 25px rgba(0, 104, 71, 0.4) !important;
    transform: scale(1.05);
  }

  .package-option[data-package="Assistance Pack"] .modal-pack-icon-wa {
    color: #25D366;
    transition: 0.3s;
  }

  .package-option[data-package="Assistance Pack"].active {
    border-color: #6c757d !important;
    background: rgba(108, 117, 125, 0.08) !important;
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.3) !important;
    transform: scale(1.05);
  }

  .package-option[data-package="Pack Travel"] .modal-pack-icon {
    color: #CE1126;
    transition: 0.3s;
  }

  .package-option[data-package="Pack Travel"] .modal-pack-icon-wa {
    color: #CE1126;
    transition: 0.3s;
  }

  .package-option[data-package="Pack Travel"].active {
    border-color: #CE1126 !important;
    background: rgba(206, 17, 38, 0.08) !important;
    box-shadow: 0 8px 25px rgba(206, 17, 38, 0.4) !important;
    transform: scale(1.05);
  }

  /* 5+ Input Transition */
  .people-custom-input {
    width: 0;
    height: 48px;
    border-radius: 10px;
    border: 0 solid #0055A4;
    font-size: 16px;
    font-weight: 700;
    color: #0055A4;
    text-align: center;
    margin-left: 0;
    padding: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
  }

  .people-custom-input.show {
    width: 70px;
    border-width: 2px;
    margin-left: 8px;
    padding: 0 5px;
    opacity: 1;
  }

  /* =====================
    GUEST COUNTER – compact pill
  ===================== */
  .guest-counter {
    background: linear-gradient(135deg, #f7f3ed 0%, #f2ede6 100%);
    padding: 20px 0;
    text-align: center;
  }

  .counter-card {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(16, 55, 92, 0.12);
    border-radius: 60px;
    padding: 10px 28px 10px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    backdrop-filter: blur(8px);
  }

  .counter-card .eyebrow {
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 0.68rem;
    color: #8392a5;
    font-weight: 700;
    margin: 0;
    line-height: 1;
  }

  .counter-divider {
    width: 1px;
    height: 32px;
    background: rgba(16, 55, 92, 0.14);
    flex-shrink: 0;
  }

  .guest-counter .counter-value {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: #0a243e;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1;
    transition: color 0.3s ease;
    min-height: 1em;
  }

  /* Pulse only while showing placeholder text */
  .guest-counter .counter-value:not([data-counted]) {
    animation: counterPulse 1.4s ease-in-out infinite;
  }

  @keyframes counterPulse {

    0%,
    100% {
      opacity: 1;
    }

    50% {
      opacity: 0.4;
    }
  }

  .guest-counter .counter-label {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.88rem;
    color: #4b5563;
    margin: 0;
    letter-spacing: 0.2px;
  }

  @media (max-width: 576px) {
    .guest-counter {
      padding: 16px 0;
    }

    .counter-card {
      gap: 12px;
      padding: 9px 20px 9px 16px;
    }

    .guest-counter .counter-value {
      font-size: 1.5rem;
    }

    .guest-counter .counter-label {
      font-size: 0.8rem;
    }
  }

  /* Responsive text align with hyphens to prevent large gaps */
  .text-justify-custom {
    text-align: justify;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
  }