
    :root {
      --teal:       #0e7490;
      --teal-med:   #0891b2;
      --teal-claro: #e0f2fe;
      --naranja:    #f97316;
      --dark:       #0f172a;
      --texto:      #1e293b;
      --texto-s:    #64748b;
      --borde:      #e2e8f0;
      --fondo:      #f8fafc;
      --blanco:     #ffffff;
      --radio:      12px;
      --trans:      .22s ease;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Poppins', sans-serif; color: var(--texto); background: var(--fondo); line-height: 1.6; }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; height: auto; display: block; }

    /* NAVBAR */
    .navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: var(--dark); padding: 0 24px;
      display: flex; align-items: center; justify-content: space-between;
      height: 76px; box-shadow: 0 2px 16px rgba(0,0,0,.25);
    }
    .nav-logo { height: 68px; width: auto; max-width: 220px; object-fit: contain; }
    .nav-logo-txt { font-size: 1.4rem; font-weight: 800; color: white; letter-spacing: 1px; }
    .nav-logo-txt span { color: var(--naranja); }
    .nav-links { list-style: none; display: flex; gap: 1.75rem; }
    .nav-links a { color: rgba(255,255,255,.75); font-size: .88rem; font-weight: 500; transition: color var(--trans); }
    .nav-links a:hover { color: var(--naranja); }
    .nav-wa {
      display: flex; align-items: center; gap: 8px;
      background: #25D366; color: white; font-size: .85rem; font-weight: 600;
      padding: 9px 18px; border-radius: 8px; transition: background var(--trans);
    }
    .nav-wa:hover { background: #1eb857; }
    .nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 101; position: relative; }
    .nav-hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all .25s; }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-menu { display: none; position: fixed; inset: 0; z-index: 99; background: rgba(15,23,42,.97); flex-direction: column; align-items: center; justify-content: center; gap: 1.75rem; }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { color: rgba(255,255,255,.85); font-size: 1.3rem; font-weight: 600; }

    /* HERO */
    .hero {
      min-height: min(85vh, 760px);
      padding: 120px 24px 56px;
      background: var(--dark);
      display: flex; align-items: flex-end; justify-content: center;
      text-align: center;
      position: relative; overflow: hidden;
    }
    .hero-media {
      position: absolute; inset: 0; z-index: 0;
      overflow: hidden;
    }
    .hero-img {
      position: absolute; inset: 0;
      width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
      display: block;
      opacity: 0;
      transform: scale(1);
      transition: opacity 1.2s ease;
      z-index: 0;
      pointer-events: none;
    }
    .hero-img.is-active {
      opacity: 1;
      z-index: 1;
    }
    .hero-img.is-active.hero-zoom {
      animation: hero-kenburns 7s ease-out forwards;
    }
    @keyframes hero-kenburns {
      from { transform: scale(1.06); }
      to { transform: scale(1); }
    }
    .hero::after {
      content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
      background:
        linear-gradient(180deg, rgba(15,23,42,.22) 0%, rgba(15,23,42,.12) 35%, rgba(15,23,42,.55) 68%, rgba(15,23,42,.82) 100%),
        radial-gradient(ellipse at center bottom, rgba(15,23,42,.25) 0%, transparent 55%);
    }
    .hero-inner {
      position: relative; z-index: 2;
      max-width: 680px;
      margin: 0 auto;
      animation: hero-fade-in .7s ease-out both;
    }
    @keyframes hero-fade-in {
      from { opacity: 0; transform: translateY(14px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .hero-brand {
      font-size: .78rem; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; color: rgba(255,255,255,.88);
      margin-bottom: 14px;
    }
    .hero-badge { display: inline-block; background: rgba(249,115,22,.2); border: 1px solid rgba(249,115,22,.4); color: #fdba74; font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 1.25rem; }
    .hero h1 { font-size: clamp(2rem, 4.8vw, 3.15rem); font-weight: 800; color: white; line-height: 1.12; margin-bottom: .9rem; text-shadow: 0 2px 18px rgba(0,0,0,.25); }
    .hero h1 span { color: var(--naranja); }
    .hero p { color: rgba(255,255,255,.86); font-size: 1.02rem; margin: 0 auto 1.75rem; line-height: 1.65; max-width: 34rem; }
    .hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
    .btn-naranja { background: var(--naranja); color: white; font-weight: 700; font-size: .92rem; padding: 12px 26px; border-radius: 9px; transition: background var(--trans), transform var(--trans); }
    .btn-naranja:hover { background: #ea6c0a; transform: translateY(-2px); }
    .btn-ghost-w {
      background: rgba(255,255,255,.1); color: white;
      border: 1.5px solid rgba(255,255,255,.55); backdrop-filter: blur(4px);
      font-weight: 600; font-size: .92rem; padding: 12px 26px; border-radius: 9px;
      transition: border-color var(--trans), background var(--trans);
    }
    .btn-ghost-w:hover { border-color: white; background: rgba(255,255,255,.18); }

    @media (prefers-reduced-motion: reduce) {
      .hero-img,
      .hero-img.is-active,
      .hero-img.is-active.hero-zoom { animation: none; transform: none; }
      .hero-img { transition: opacity .35s ease; }
      .hero-inner { animation: none; }
    }

    /* STATS */
    .stats-band { background: var(--teal); padding: 28px 24px; }
    .stats-inner { max-width: 1160px; margin: 0 auto; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 16px; }
    .stat-item { text-align: center; color: white; }
    .stat-num { font-size: 1.8rem; font-weight: 800; line-height: 1; }
    .stat-lbl { font-size: .78rem; opacity: .8; margin-top: 3px; }

    /* FILTROS */
    .filtros-wrap { background: var(--blanco); border-bottom: 1px solid var(--borde); position: sticky; top: 76px; z-index: 50; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
    .filtros { max-width: 1160px; margin: 0 auto; padding: 12px 24px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
    .filtro-btn { background: var(--fondo); border: 1.5px solid var(--borde); color: var(--texto-s); font-family: 'Poppins', sans-serif; font-size: .82rem; font-weight: 600; padding: 7px 16px; border-radius: 50px; cursor: pointer; transition: all var(--trans); white-space: nowrap; }
    .filtro-btn:hover { border-color: var(--teal); color: var(--teal); }
    .filtro-btn.active { background: var(--teal); border-color: var(--teal); color: white; }

    /* PAQUETES */
    .paquetes-section { max-width: 1160px; margin: 0 auto; padding: 36px 24px 56px; }
    .paquetes-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 22px; flex-wrap: wrap; gap: 10px; }
    .paquetes-titulo { font-size: 1.35rem; font-weight: 700; }
    .paquetes-sub { font-size: .82rem; color: var(--texto-s); margin-top: 2px; }
    #resultado-count { font-size: .85rem; color: var(--texto-s); }
    .paquetes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }

    .paq-card { background: var(--blanco); border: 1px solid var(--borde); border-radius: var(--radio); overflow: hidden; transition: transform var(--trans), box-shadow var(--trans); display: flex; flex-direction: column; height: 100%; }
    .paq-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(14,116,144,.13); }
    .paq-card.oculto { display: none; }

    .paq-visual { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; position: relative; overflow: hidden; }
    .paq-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
    .paq-visual .emoji-bg { position: relative; z-index: 1; }
    .paq-visual.cat-termas { background: linear-gradient(135deg, #164e63, #0e7490); }
    .paq-visual.cat-argentina { background: linear-gradient(135deg, #1e3a5f, #2563eb); }
    .paq-visual.cat-brasil { background: linear-gradient(135deg, #14532d, #16a34a); }
    .paq-visual.cat-playas { background: linear-gradient(135deg, #0c4a6e, #38bdf8); }
    .paq-visual.cat-caribe { background: linear-gradient(135deg, #9a3412, #fb923c); }
    .paq-visual.cat-europa { background: linear-gradient(135deg, #3b0764, #7c3aed); }
    .paq-visual.cat-mundo { background: linear-gradient(135deg, #1e1b4b, #6366f1); }
    .paq-visual.cat-naturaleza { background: linear-gradient(135deg, #064e3b, #10b981); }

    .paq-badge-ja { position: absolute; top: 10px; left: 10px; z-index: 2; background: var(--naranja); color: white; font-size: .65rem; font-weight: 700; padding: 3px 9px; border-radius: 50px; }
    .paq-badges-stack .paq-badge-lugares,
    .paq-badges-stack .paq-badge-urgente,
    .paq-badges-stack .paq-badge-confirmada,
    .paq-badges-stack .paq-badge-plazo { position: static; }
    .paq-badge-lugares { position: absolute; top: 10px; right: 10px; z-index: 2; background: rgba(0,0,0,.6); color: white; font-size: .65rem; font-weight: 600; padding: 3px 9px; border-radius: 50px; }
    .paq-badge-urgente { position: absolute; top: 8px; right: 8px; z-index: 2; background: #ef4444; color: white; font-size: .62rem; font-weight: 800; padding: 5px 10px; border-radius: 6px; text-transform: uppercase; letter-spacing: .04em; box-shadow: 0 2px 8px rgba(239,68,68,.55); animation: urgente-pulse 1.6s ease-in-out infinite; }
    @keyframes urgente-pulse { 0%,100%{transform:scale(1);box-shadow:0 2px 8px rgba(239,68,68,.55)} 50%{transform:scale(1.06);box-shadow:0 4px 16px rgba(239,68,68,.75)} }

    .paq-body { padding: 16px 16px 12px; flex: 1; display: flex; flex-direction: column; min-height: 0; }
    .paq-content { flex: 1 1 auto; min-height: 0; }
    .paq-card-bottom { flex-shrink: 0; margin-top: auto; padding-top: 8px; }
    .paq-cat { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); margin-bottom: 4px; }
    .paq-nombre { font-size: .98rem; font-weight: 700; color: var(--texto); line-height: 1.3; margin-bottom: 8px; }
    .paq-meta { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 10px; }
    .paq-chip { display: flex; align-items: center; gap: 4px; background: var(--fondo); color: var(--texto-s); font-size: .72rem; padding: 3px 9px; border-radius: 50px; }
    .paq-descripcion { font-size: .8rem; color: var(--texto-s); line-height: 1.55; margin-bottom: 10px; }

    .paq-servicios { margin-bottom: 6px; }
    .paq-servicios-titulo { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); margin-bottom: 5px; }
    .paq-servicios ul { list-style: none; display: flex; flex-direction: column; gap: 3px; }
    .paq-servicios ul li { font-size: .78rem; color: var(--texto-s); display: flex; align-items: flex-start; gap: 6px; }
    .paq-servicios ul li::before { content: '\2713'; color: #22c55e; font-weight: 700; flex-shrink: 0; font-size: .75rem; margin-top: 1px; }
    .paq-servicios ul li.servicio-extra { display: none; }
    .paq-card.expandida .paq-servicios ul li.servicio-extra { display: flex; }

    .btn-ver-mas { display: none; background: none; border: none; padding: 4px 0 8px; color: var(--teal); font-family: 'Poppins', sans-serif; font-size: .76rem; font-weight: 600; cursor: pointer; }
    .btn-ver-mas:hover { text-decoration: underline; }
    .btn-ver-mas.visible { display: block; }

    .paq-footer { display: flex; align-items: flex-end; justify-content: space-between; border-top: 1px solid var(--borde); padding-top: 10px; gap: 8px; flex-wrap: nowrap; }
    .paq-precio { flex: 1 1 auto; min-width: 0; padding-right: 4px; }
    .paq-precio-desde { font-size: .67rem; color: var(--texto-s); font-weight: 500; }
    .paq-precio-valor { font-size: 1.05rem; font-weight: 800; color: var(--teal); line-height: 1.2; white-space: nowrap; }
    .paq-precio-moneda { font-size: .65rem; color: var(--texto-s); white-space: nowrap; }
    .btn-consultar { display: flex; align-items: center; gap: 6px; background: #25D366; color: white; font-family: 'Poppins', sans-serif; font-size: .78rem; font-weight: 700; padding: 9px 13px; border-radius: 8px; border: none; cursor: pointer; white-space: nowrap; transition: background var(--trans); }
    .btn-consultar:hover { background: #1eb857; }

    /* CÃ“MO FUNCIONA */
    .como-section { max-width: 1160px; margin: 0 auto; padding: 48px 24px; }
    .como-titulo { text-align: center; font-size: 1.45rem; font-weight: 700; margin-bottom: 6px; }
    .como-sub { text-align: center; color: var(--texto-s); margin-bottom: 32px; font-size: .92rem; }
    .como-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .como-card { text-align: center; padding: 20px 14px; }
    .como-ico { width: 56px; height: 56px; border-radius: 50%; background: var(--teal-claro); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 12px; }
    .como-card h4 { font-size: .92rem; font-weight: 700; margin-bottom: 5px; }
    .como-card p { font-size: .8rem; color: var(--texto-s); line-height: 1.5; }

    /* COTIZAR */
    .cotizar-section { background: #fff; padding: 48px 24px 56px; border-top: 1px solid var(--borde); }
    .cotizar-wrap { max-width: 820px; margin: 0 auto; }
    .cotizar-header { text-align: center; margin-bottom: 28px; }
    .cotizar-header h2 { font-size: 1.55rem; font-weight: 800; margin-bottom: 10px; color: var(--texto); }
    .cotizar-lead { color: var(--texto-s); font-size: .94rem; line-height: 1.65; max-width: 640px; margin: 0 auto; }
    .cotizar-lead strong { color: var(--teal); font-weight: 600; }
    .cotizar-form { background: var(--fondo); border: 1px solid var(--borde); border-radius: var(--radio); padding: 24px 22px; }
    .cotizar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .cotizar-field { display: flex; flex-direction: column; gap: 6px; }
    .cotizar-field-full { grid-column: 1 / -1; }
    .cotizar-field > span { font-size: .78rem; font-weight: 600; color: var(--texto-s); }
    .cotizar-input {
      font-family: 'Poppins', sans-serif; font-size: .9rem;
      border: 1.5px solid var(--borde); border-radius: 8px; padding: 10px 12px;
      background: var(--blanco); color: var(--texto); width: 100%;
    }
    .cotizar-input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(14,116,144,.12); }
    .cotizar-textarea { resize: vertical; min-height: 96px; }
    .cotizar-menores .menores-lista { display: flex; flex-direction: column; gap: 8px; margin-bottom: 8px; }
    .menor-fila { display: flex; align-items: flex-end; gap: 10px; }
    .menor-fila label { flex: 1; display: flex; flex-direction: column; gap: 4px; font-size: .78rem; color: var(--texto-s); }
    .btn-quitar-menor {
      width: 36px; height: 36px; border: 1px solid var(--borde); border-radius: 8px;
      background: var(--blanco); color: var(--texto-s); font-size: 1.2rem; cursor: pointer; line-height: 1;
    }
    .btn-agregar-menor {
      align-self: flex-start; background: none; border: 1.5px dashed var(--teal); color: var(--teal);
      font-family: 'Poppins', sans-serif; font-size: .82rem; font-weight: 600; padding: 8px 14px;
      border-radius: 8px; cursor: pointer;
    }
    .btn-agregar-menor:hover { background: var(--teal-claro); }
    .cotizar-nota { font-size: .76rem; color: var(--texto-s); margin: 0; }
    .cotizar-actions { margin-top: 22px; text-align: center; }
    .cotizar-estado { margin-top: 14px; font-size: .88rem; font-weight: 600; }
    .cotizar-estado.ok { color: #15803d; }
    .cotizar-estado.error { color: #b91c1c; }

    /* OPERADORAS */
    .operadoras-section { background: var(--fondo); padding: 40px 24px 48px; border-top: 1px solid var(--borde); }
    .operadoras-wrap { max-width: 960px; margin: 0 auto; text-align: center; }
    .operadoras-titulo { font-size: 1.1rem; font-weight: 700; color: var(--texto); margin-bottom: 6px; }
    .operadoras-sub { font-size: .82rem; color: var(--texto-s); margin-bottom: 24px; }
    .operadoras-logos {
      display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 28px 36px;
    }
    .operadoras-logos img {
      height: 52px; width: auto; max-width: 160px; object-fit: contain;
      filter: grayscale(.15); opacity: .92; transition: opacity .2s, filter .2s;
    }
    .operadoras-logos img:hover { filter: none; opacity: 1; }

    /* CONTACTO */
    .contacto-section { background: var(--dark); padding: 48px 24px; }
    .contacto-inner { max-width: 640px; margin: 0 auto; text-align: center; }
    .contacto-inner h2 { font-size: 1.6rem; font-weight: 800; color: white; margin-bottom: 8px; }
    .contacto-inner p { color: rgba(255,255,255,.65); margin-bottom: 24px; font-size: .93rem; }
    .contacto-canales { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
    .canal-btn { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15); color: white; padding: 13px 20px; border-radius: 10px; font-size: .88rem; font-weight: 600; transition: background var(--trans); }
    .canal-btn:hover { background: rgba(255,255,255,.13); }
    .canal-btn.wa { background: rgba(37,211,102,.15); border-color: rgba(37,211,102,.35); }
    .canal-btn.wa:hover { background: rgba(37,211,102,.25); }

    /* FOOTER */
    footer { background: #050d1a; padding: 22px 24px 28px; text-align: center; color: rgba(255,255,255,.3); font-size: .8rem; }
    footer img { height: 34px; margin: 0 auto 8px; }
    .footer-panel {
      display: inline-flex; align-items: center; gap: 8px; margin-top: 14px;
      padding: 10px 20px; border-radius: 8px; border: 1px solid rgba(255,255,255,.2);
      color: rgba(255,255,255,.75); font-size: .82rem; font-weight: 600;
      transition: background .2s, color .2s;
    }
    .footer-panel:hover { background: rgba(14,116,144,.35); color: white; }

    /* WA FLOAT */
    .wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 999; width: 54px; height: 54px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.45); transition: transform var(--trans); }
    .wa-float:hover { transform: scale(1.1); }
    .wa-float svg { width: 26px; height: 26px; fill: white; }

    /* SIN RESULTADOS */
    .sin-resultados { text-align: center; padding: 60px 24px; color: var(--texto-s); display: none; }
    .sin-resultados.visible { display: block; }

    /* RESPONSIVE */
    @media (max-width: 960px) { .paquetes-grid { grid-template-columns: repeat(2, 1fr); } .como-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 640px) {
      .nav-links, .nav-wa { display: none; }
      .nav-hamburger { display: flex; }
      .paquetes-grid { grid-template-columns: 1fr; }
      .como-grid { grid-template-columns: 1fr 1fr; }
      .hero {
        min-height: min(78vh, 640px);
        padding: 100px 18px 40px;
        align-items: flex-end;
      }
      .hero-img { object-position: center 35%; }
      .hero h1 { font-size: clamp(1.75rem, 7vw, 2.25rem); }
      .hero p { font-size: .95rem; margin-bottom: 1.4rem; }
      .hero-btns { justify-content: center; }
      .hero-btns .btn-naranja,
      .hero-btns .btn-ghost-w { text-align: center; }
      .cotizar-grid { grid-template-columns: 1fr; }
      .operadoras-logos img { height: 44px; max-width: 130px; }
    }

    .fade { opacity: 1; transform: none; transition: opacity .5s ease, transform .5s ease; }
    .fade.visible { opacity: 1; transform: none; }

    /* AGOTADO */
    .paq-agotado-overlay { position: absolute; inset: 0; z-index: 4; background: rgba(185,28,28,.82); display: flex; align-items: center; justify-content: center; }
    .paq-agotado-texto { color: #fff; font-size: 2rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; text-shadow: 0 2px 10px rgba(0,0,0,.45); }
    .paq-card.agotado { opacity: .82; }
    .paq-card.agotado .btn-consultar { background: #6b7280; cursor: default; pointer-events: none; }

    /* COMPARTIR */
    .paq-share { margin: 0 0 8px; padding-top: 10px; border-top: 1px dashed var(--borde); }
    .paq-share-label { display: block; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--texto-s); margin-bottom: 6px; }
    .paq-share-btns { display: flex; gap: 6px; }
    .btn-share {
      width: 34px; height: 34px; border: 1.5px solid var(--borde); border-radius: 8px; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      background: #f8fafc; color: #64748b;
      transition: background .2s, color .2s, border-color .2s, transform .15s;
    }
    .btn-share:hover {
      transform: translateY(-1px);
      background: #e2e8f0; color: var(--dark); border-color: #cbd5e1;
    }
    .btn-share-flyer { text-decoration: none; }
    .paq-nombre-link { color: inherit; }
    .paq-nombre-link:hover { color: var(--teal); }
    .share-toast { position: fixed; bottom: 90px; right: 24px; background: var(--dark); color: white; padding: 10px 18px; border-radius: 8px; font-size: .82rem; opacity: 0; pointer-events: none; transition: opacity .25s; z-index: 998; max-width: 280px; }
    .share-toast.show { opacity: 1; }

    /* VACACIONES DE INVIERNO */
    .paq-badge-invierno { position: absolute; bottom: 10px; left: 10px; z-index: 2; background: linear-gradient(135deg, #0369a1, #0ea5e9); color: white; font-size: .68rem; font-weight: 700; padding: 4px 10px; border-radius: 50px; letter-spacing: .03em; box-shadow: 0 2px 8px rgba(3,105,161,.4); }

    /* BADGES URGENCIA */
    .paq-badges-stack { position: absolute; top: 8px; right: 8px; z-index: 3; display: flex; flex-direction: column; align-items: flex-end; gap: 5px; max-width: 85%; }
    .paq-badge-confirmada { background: #059669; color: white; font-size: .62rem; font-weight: 800; padding: 5px 10px; border-radius: 6px; text-transform: uppercase; letter-spacing: .04em; box-shadow: 0 2px 8px rgba(5,150,105,.45); }
    .paq-badge-plazo { background: #d97706; color: white; font-size: .62rem; font-weight: 800; padding: 5px 10px; border-radius: 6px; letter-spacing: .03em; box-shadow: 0 2px 8px rgba(217,119,6,.45); }
    .paq-highlight { outline: 3px solid var(--naranja); outline-offset: 4px; transition: outline .3s; }

    /* VISTA LISTA / CALENDARIO */
    .paquetes-header-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
    .btn-compartir-catalogo {
      font-family: 'Poppins', sans-serif; font-size: .78rem; font-weight: 600;
      padding: 7px 14px; border-radius: 8px; cursor: pointer;
      background: white; color: var(--teal);
      border: 1.5px solid var(--borde);
      transition: border-color .2s, background .2s, color .2s;
    }
    .btn-compartir-catalogo:hover { border-color: var(--teal); background: var(--teal-claro); }
    .vista-toggle { display: flex; background: #f1f5f9; border-radius: 8px; padding: 3px; gap: 2px; }
    .vista-btn { border: none; background: transparent; font-family: 'Poppins', sans-serif; font-size: .78rem; font-weight: 600; padding: 6px 14px; border-radius: 6px; cursor: pointer; color: var(--texto-s); transition: background .2s, color .2s; }
    .vista-btn.active { background: white; color: var(--teal); box-shadow: 0 1px 4px rgba(0,0,0,.08); }
    .vista-calendario-panel { padding-top: 8px; }

    /* CALENDARIO */
    .cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
    .cal-nav-btn { width: 40px; height: 40px; border: 1px solid var(--borde); background: white; border-radius: 8px; font-size: 1.1rem; cursor: pointer; color: var(--teal); }
    .cal-nav-btn:disabled { opacity: .35; cursor: default; }
    .cal-titulo { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin: 0; text-transform: capitalize; }
    .cal-leyenda { display: flex; flex-wrap: wrap; gap: 12px 18px; font-size: .72rem; color: var(--texto-s); margin-bottom: 14px; }
    .cal-leyenda span { display: inline-flex; align-items: center; gap: 6px; }
    .cal-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
    .cal-dot-normal { background: var(--teal); }
    .cal-dot-urgente { background: #ef4444; }
    .cal-dot-agotado { background: #9ca3af; }
    .cal-semana { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 6px; text-align: center; font-size: .7rem; font-weight: 700; color: var(--texto-s); text-transform: uppercase; }
    .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
    .cal-celda { min-height: 72px; background: #f8fafc; border: 1px solid var(--borde); border-radius: 8px; padding: 4px; position: relative; }
    .cal-vacia { background: transparent; border-color: transparent; }
    .cal-con-evento { background: #ecfeff; border-color: #a5f3fc; }
    .cal-dia-num { font-size: .72rem; font-weight: 700; color: var(--texto-s); display: block; margin-bottom: 2px; }
    .cal-eventos { display: flex; flex-direction: column; gap: 2px; }
    .cal-evento { border: none; background: var(--teal); color: white; border-radius: 4px; padding: 2px 4px; font-size: .58rem; font-weight: 600; cursor: pointer; text-align: left; display: flex; align-items: center; gap: 3px; line-height: 1.2; }
    .cal-evento.urgente { background: #ef4444; }
    .cal-evento.agotado { background: #9ca3af; text-decoration: line-through; }
    .cal-evento-nombre { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1; }
    .cal-hint { font-size: .8rem; color: var(--texto-s); margin-top: 12px; text-align: center; }

    /* ASISTENTE */
    .asistente-section { background: linear-gradient(180deg, #fff 0%, #f0fdfa 100%); padding: 56px 20px; }
    .asistente-wrap { max-width: 720px; margin: 0 auto; }
    .asistente-header { text-align: center; margin-bottom: 28px; }
    .asistente-header h2 { font-size: clamp(1.4rem, 4vw, 1.9rem); font-weight: 800; color: var(--dark); margin-bottom: 8px; }
    .asistente-header p { color: var(--texto-s); font-size: .95rem; }
    .asistente-app { background: white; border-radius: 16px; padding: 28px 24px; box-shadow: 0 4px 24px rgba(0,0,0,.06); border: 1px solid var(--borde); }
    .asistente-cargando { text-align: center; color: var(--texto-s); }
    .asistente-pregunta { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 18px; text-align: center; }
    .asistente-opciones { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
    .asistente-opciones-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .asistente-opcion { border: 2px solid var(--borde); background: white; border-radius: 10px; padding: 14px 16px; font-family: 'Poppins', sans-serif; font-size: .9rem; font-weight: 600; cursor: pointer; text-align: left; transition: border-color .2s, background .2s; }
    .asistente-opcion-sm { padding: 10px 8px; font-size: .82rem; text-align: center; }
    .asistente-opcion:hover { border-color: var(--teal); }
    .asistente-opcion.sel { border-color: var(--naranja); background: #fff7ed; color: var(--dark); }
    .asistente-presupuesto { display: grid; grid-template-columns: 120px 1fr; gap: 10px; margin-bottom: 12px; }
    .asistente-hint { font-size: .82rem; color: var(--texto-s); text-align: center; margin-bottom: 20px; }
    .asistente-nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 8px; }
    .btn-ghost-asistente { border: 1px solid var(--borde); background: white; color: var(--teal); font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .85rem; padding: 10px 18px; border-radius: 8px; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; }
    .btn-asistente-next { padding: 10px 22px; font-size: .9rem; }
    .btn-link-asistente { display: block; width: 100%; text-align: center; margin-top: 16px; border: none; background: none; color: var(--teal); font-family: 'Poppins', sans-serif; font-size: .85rem; font-weight: 600; cursor: pointer; text-decoration: underline; }
    .asistente-resultados { display: flex; flex-direction: column; gap: 14px; margin-bottom: 18px; }
    .asistente-resultado { display: grid; grid-template-columns: 100px 1fr; gap: 14px; border: 1px solid var(--borde); border-radius: 12px; overflow: hidden; background: #fafafa; }
    .asistente-resultado-img { min-height: 90px; position: relative; overflow: hidden; }
    .asistente-resultado-img img { width: 100%; height: 100%; object-fit: cover; }
    .asistente-resultado-body { padding: 12px 12px 12px 0; }
    .asistente-resultado-body h4 { font-size: .92rem; font-weight: 700; margin-bottom: 4px; line-height: 1.3; }
    .asistente-resultado-meta { font-size: .78rem; color: var(--texto-s); }
    .asistente-resultado-urgencia { font-size: .72rem; color: #d97706; font-weight: 700; margin-top: 4px; }
    .asistente-resultado-precio { font-size: .85rem; font-weight: 700; color: var(--teal); margin-top: 6px; }
    .asistente-resultado-btns { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
    .asistente-resultado-btns .btn-naranja { padding: 8px 14px; font-size: .78rem; }
    .asistente-sin-match { text-align: center; font-weight: 600; margin-bottom: 8px; }

    /* ALERTAS */
    .alertas-section { background: #0f172a; color: white; padding: 56px 20px; }
    .alertas-wrap { max-width: 720px; margin: 0 auto; }
    .alertas-header { text-align: center; margin-bottom: 28px; }
    .alertas-header h2 { font-size: clamp(1.4rem, 4vw, 1.9rem); font-weight: 800; margin-bottom: 8px; }
    .alertas-header p { color: #94a3b8; font-size: .95rem; }
    .alertas-form { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 24px; }
    .alertas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .alertas-section .cotizar-field span { color: #cbd5e1; }
    .alertas-section .cotizar-input { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: white; }
    .alertas-section .cotizar-input::placeholder { color: #64748b; }
    .alertas-section .cotizar-nota { color: #94a3b8; }
    .alertas-section .cotizar-estado.ok { color: #4ade80; }
    .alertas-section .cotizar-estado.error { color: #f87171; }

    @media (max-width: 640px) {
      .asistente-opciones-grid { grid-template-columns: repeat(2, 1fr); }
      .asistente-resultado { grid-template-columns: 1fr; }
      .asistente-resultado-body { padding: 0 12px 12px; }
      .asistente-presupuesto { grid-template-columns: 1fr; }
      .alertas-grid { grid-template-columns: 1fr; }
      .paquetes-header { flex-direction: column; gap: 12px; }
      .paquetes-header-right { align-items: flex-start; }
      .cal-celda { min-height: 56px; }
      .cal-evento-nombre { display: none; }
    }

    /* COMPARADOR */
    .btn-comparar {
      display: inline-flex; align-items: center; justify-content: center;
      padding: 10px 12px; border: 2px solid var(--teal); border-radius: 8px;
      background: white; color: var(--teal); font-family: 'Poppins', sans-serif;
      font-size: .78rem; font-weight: 700; cursor: pointer; transition: background .2s, border-color .2s, color .2s;
    }
    .btn-comparar:hover { background: #ecfeff; border-color: var(--teal); }
    .btn-comparar.activo { background: #fff7ed; border-color: var(--naranja); color: var(--naranja); }
    .paq-footer-btns { display: flex; flex: 0 0 auto; gap: 5px; align-items: center; }
    .paq-footer-btns .btn-comparar {
      flex: 0 0 auto;
      padding: 7px 8px;
      font-size: .65rem;
      border-width: 1.5px;
      border-radius: 6px;
    }
    .paq-footer-btns .btn-consultar {
      flex: 0 0 auto;
      padding: 7px 9px;
      font-size: .65rem;
      border-radius: 6px;
    }
    .comparador-dock {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 997;
      background: rgba(15,23,42,.96); color: white; padding: 12px 16px;
      box-shadow: 0 -4px 20px rgba(0,0,0,.2);
    }
    .comparador-dock-inner {
      max-width: 900px; margin: 0 auto; display: flex; align-items: center;
      justify-content: space-between; gap: 12px; flex-wrap: wrap;
    }
    .comparador-dock-btns { display: flex; gap: 8px; }
    .comparador-dock .btn-naranja { padding: 10px 18px; font-size: .85rem; }
    .comparador-dock .btn-naranja:disabled { opacity: .45; cursor: default; }
    .comparador-modal {
      position: fixed; inset: 0; z-index: 999; background: rgba(0,0,0,.55);
      display: flex; align-items: center; justify-content: center; padding: 16px;
    }
    .comparador-modal[hidden] { display: none; }
    .comparador-modal-box {
      background: white; border-radius: 16px; width: min(960px, 100%);
      max-height: 90vh; overflow: hidden; display: flex; flex-direction: column;
    }
    .comparador-modal-header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 16px 20px; border-bottom: 1px solid var(--borde);
    }
    .comparador-modal-header h3 { margin: 0; font-size: 1.1rem; }
    .comparador-modal-close {
      border: none; background: #f1f5f9; width: 36px; height: 36px; border-radius: 8px;
      font-size: 1.4rem; line-height: 1; cursor: pointer; color: var(--texto-s);
    }
    .comparador-modal-body { padding: 16px 20px 20px; overflow: auto; }
    .cmp-tabla-wrap { overflow-x: auto; }
    .cmp-tabla { width: 100%; border-collapse: collapse; font-size: .82rem; }
    .cmp-tabla th, .cmp-tabla td { border: 1px solid var(--borde); padding: 10px 12px; vertical-align: top; text-align: left; }
    .cmp-tabla thead th { background: #f8fafc; }
    .cmp-row-label { background: #f8fafc; font-weight: 700; white-space: nowrap; width: 120px; }
    .cmp-th-nombre { font-weight: 700; margin-bottom: 4px; line-height: 1.3; }
    .cmp-th-link { font-size: .75rem; color: var(--teal); font-weight: 600; text-decoration: none; }
    .cmp-servicios { margin: 0; padding-left: 16px; }
    .cmp-servicios li { margin-bottom: 4px; }
    body:has(.comparador-dock:not([hidden])) { padding-bottom: 72px; }
    body:has(.comparador-dock:not([hidden])) .wa-float { bottom: 82px; }

    /* MAPA */
    .vista-mapa-panel { padding-top: 8px; }
    .mapa-leaflet { height: 480px; border-radius: 14px; border: 1px solid var(--borde); z-index: 1; background: #e8eef3; }
    .mapa-marker-wrap { background: transparent !important; border: none !important; }
    .mapa-pin {
      width: 38px; height: 38px; border-radius: 50%;
      background: var(--teal); color: white;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.05rem; line-height: 1;
      box-shadow: 0 3px 12px rgba(15, 23, 42, .3);
      border: 2.5px solid white;
      position: relative;
    }
    .mapa-pin-count {
      position: absolute; top: -6px; right: -6px;
      min-width: 18px; height: 18px; padding: 0 4px;
      border-radius: 50px; background: var(--naranja); color: white;
      font-size: .65rem; font-weight: 800; line-height: 18px; text-align: center;
      border: 2px solid white;
    }
    .mapa-popup strong { display: block; margin-bottom: 4px; font-size: .95rem; }
    .mapa-popup-meta { margin: 0 0 10px !important; font-size: .78rem !important; color: var(--texto-s); }
    .mapa-popup-lista { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
    .mapa-popup-lista li { display: flex; flex-direction: column; gap: 2px; padding-bottom: 8px; border-bottom: 1px solid var(--borde); }
    .mapa-popup-lista li:last-child { border-bottom: none; padding-bottom: 0; }
    .mapa-popup-lista a { color: var(--teal); font-weight: 700; font-size: .82rem; line-height: 1.3; }
    .mapa-popup-lista span { font-size: .72rem; color: var(--texto-s); }
    .mapa-popup-mas { margin: 8px 0 0 !important; font-size: .75rem !important; color: var(--texto-s); }
    .mapa-hint { text-align: center; font-size: .82rem; color: var(--texto-s); margin-top: 10px; }
    .mapa-hint-warn { color: #b45309; margin-top: 4px !important; }
    .mapa-error { text-align: center; color: var(--texto-s); padding: 40px; }

    /* POPUP AVISO */
    .aviso-popup {
      position: fixed; inset: 0; z-index: 1000; background: rgba(15, 23, 42, .65);
      display: flex; align-items: center; justify-content: center; padding: 16px;
      backdrop-filter: blur(2px);
    }
    .aviso-popup[hidden] { display: none; }
    .aviso-popup-box {
      position: relative; background: #0f172a; border-radius: 16px;
      width: min(560px, 100%); max-height: 92vh; overflow: hidden;
      display: flex; flex-direction: column;
      box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
      animation: aviso-popup-in .25s ease-out;
    }
    @keyframes aviso-popup-in {
      from { opacity: 0; transform: translateY(12px) scale(.98); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }
    .aviso-popup-close {
      position: absolute; top: 10px; right: 10px; z-index: 3;
      border: none; background: rgba(255,255,255,.95); width: 36px; height: 36px;
      border-radius: 50%; font-size: 1.4rem; line-height: 1; cursor: pointer;
      color: var(--texto-s); box-shadow: 0 2px 10px rgba(0,0,0,.2);
    }
    .aviso-popup-close:hover { background: white; color: var(--dark); }
    #aviso-popup-contenido {
      display: flex; flex-direction: column; min-height: 0; flex: 1;
    }
    .aviso-popup-media {
      flex: 1 1 auto; min-height: 0; max-height: calc(92vh - 72px);
      display: flex; align-items: center; justify-content: center;
      background: #0f172a; padding: 8px;
    }
    .aviso-popup-img {
      display: block; width: 100%; height: auto;
      max-height: calc(92vh - 88px); object-fit: contain; object-position: center;
      border-radius: 8px;
    }
    .aviso-popup-acciones {
      flex: 0 0 auto; padding: 14px 16px 16px; text-align: center;
      background: white; border-top: 1px solid var(--borde);
    }
    .aviso-popup-btn {
      display: inline-flex; align-items: center; justify-content: center;
      background: var(--teal); color: white; font-weight: 700; font-size: .92rem;
      padding: 12px 28px; border-radius: 10px; text-decoration: none;
      transition: background .2s; min-width: 160px;
    }
    .aviso-popup-btn:hover { background: #0e7490; color: white; }
    .aviso-popup-box:has(.aviso-popup-acciones:only-child) .aviso-popup-media { max-height: 92vh; }

    @media (max-width: 640px) {
      .mapa-leaflet { height: 340px; }
      .comparador-dock-inner { flex-direction: column; align-items: stretch; }
      .cmp-row-label { width: 90px; font-size: .75rem; }
    }

