    @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,400&family=DM+Sans:wght@400;500;600&display=swap');
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --azul-fiordo:   #1A3A5C;
      --azul-hielo:    #2E6EA6;
      --azul-claro:    #D6E8F7;
      --verde-aurora:  #2D7D5F;
      --verde-claro:   #D4EEE3;
      --oro-sol:       #C9882A;
      --oro-claro:     #FBF0DC;
      --nieve:         #F4F7FA;
      --gris-texto:    #2C2C2A;
      --gris-medio:    #5F5E5A;
      --gris-borde:    #D3D1C7;
      --blanco:        #FFFFFF;
      --rojo-acento:   #A32D2D;
      --radio-sm:      6px;
      --radio-md:      10px;
      --radio-lg:      16px;
      --sombra:        0 2px 12px rgba(26,58,92,0.10);
      --sombra-md:     0 4px 24px rgba(26,58,92,0.14);
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--nieve);
      color: var(--gris-texto);
      line-height: 1.7;
      font-size: 16px;
    }

    /* -- UTILIDADES -- */
    .container { max-width: 1060px; margin: 0 auto; padding: 0 24px; }
    .badge {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 20px;
    }
    .badge-azul   { background: var(--azul-claro);  color: var(--azul-fiordo); }
    .badge-verde  { background: var(--verde-claro);  color: var(--verde-aurora); }
    .badge-oro    { background: var(--oro-claro);    color: #7A5010; }
    strong { font-weight: 600; }
    em { font-style: italic; }
    .responsive-img img {max-inline-size:100%;block-size:auto;}
   
    

    /* -- CABECERA -- */
    header {
      background: var(--azul-fiordo);
      border-bottom: 3px solid var(--azul-hielo);
    }
    .header-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 24px;
      max-width: 1060px;
      margin: 0 auto;
    }
    .logo {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      color: var(--blanco);
      text-decoration: none;
    }
    .logo span { color: #7EC8F5; }
    nav { display: flex; gap: 28px; }
    nav a {
      color: #B8D4EE;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      transition: color .2s;
    }
    nav a:hover { color: var(--blanco); }

    /* -- HERO -- */
    .hero {
      background: linear-gradient(160deg, var(--azul-fiordo) 0%, #14355A 55%, #0B2540 100%);
      color: var(--blanco);
      padding: 72px 24px 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E") repeat;
    }
    .hero-content { position: relative; z-index: 1; }
    .hero-eyebrow {
      font-size: 12px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: #7EC8F5;
      font-weight: 600;
      margin-bottom: 18px;
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(30px, 5vw, 52px);
      line-height: 1.15;
      max-width: 760px;
      margin: 0 auto 22px;
    }
    .hero h1 em { color: #7EC8F5; font-style: normal; }
    .hero-desc {
      font-family: 'Source Serif 4', serif;
      font-size: 18px;
      color: #B8D4EE;
      max-width: 620px;
      margin: 0 auto 36px;
    }
    .hero-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 40px; }
    .hero-pill {
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.20);
      color: #D6ECFF;
      font-size: 13px;
      font-weight: 500;
      padding: 7px 16px;
      border-radius: 20px;
    }
    .btn-primary {
      display: inline-block;
      background: var(--oro-sol);
      color: var(--blanco);
      font-weight: 700;
      font-size: 16px;
      padding: 14px 36px;
      border-radius: var(--radio-md);
      text-decoration: none;
      letter-spacing: .02em;
      box-shadow: 0 4px 18px rgba(201,136,42,.45);
      transition: background .2s, transform .15s;
    }
    .btn-primary:hover { background: #b5771f; transform: translateY(-2px); }
    .btn-secundario {
      display: inline-block;
      border: 2px solid rgba(255,255,255,0.35);
      color: var(--blanco);
      font-weight: 600;
      font-size: 15px;
      padding: 13px 28px;
      border-radius: var(--radio-md);
      text-decoration: none;
      margin-left: 14px;
      transition: border-color .2s, background .2s;
    }
    .btn-secundario:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,.6); }

    /* -- STATS BAR -- */
    .stats-bar {
      background: var(--blanco);
      border-bottom: 1px solid var(--gris-borde);
      padding: 22px 0;
    }
    .stats-grid {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0;
    }
    .stat-item {
      text-align: center;
      padding: 0 40px;
      border-right: 1px solid var(--gris-borde);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      color: var(--azul-fiordo);
      font-weight: 700;
      line-height: 1;
    }
    .stat-label {
      font-size: 12px;
      color: var(--gris-medio);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: .06em;
      margin-top: 4px;
    }

    /* -- SECCIONES -- */
    section { padding: 64px 0; }
    .section-label {
      font-size: 11px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--azul-hielo);
      font-weight: 700;
      margin-bottom: 10px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(24px, 3.5vw, 38px);
      color: var(--azul-fiordo);
      line-height: 1.2;
      margin-bottom: 14px;
    }
    .section-intro {
      font-family: 'Source Serif 4', serif;
      font-size: 17px;
      color: var(--gris-medio);
      max-width: 680px;
      margin-bottom: 48px;
    }

    /* -- TARJETAS DE CIUDADES -- */
    .ciudades-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
    }
    .ciudad-card {
      background: var(--blanco);
      border: 1px solid var(--gris-borde);
      border-radius: var(--radio-lg);
      overflow: hidden;
      box-shadow: var(--sombra);
      transition: box-shadow .2s, transform .2s;
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
    }
    .ciudad-card:hover {
      box-shadow: var(--sombra-md);
      transform: translateY(-4px);
    }
    .ciudad-header {
      background: var(--azul-fiordo);
      padding: 22px 20px 16px;
      position: relative;
    }
    .ciudad-flag { font-size: 28px; margin-bottom: 8px; display: block; }
    .ciudad-nombre {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      color: var(--blanco);
      line-height: 1.2;
    }
    .ciudad-pais {
      font-size: 12px;
      color: #7EC8F5;
      text-transform: uppercase;
      letter-spacing: .08em;
      font-weight: 600;
      margin-top: 3px;
    }
    .ciudad-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
    .ciudad-desc {
      font-size: 14px;
      color: var(--gris-medio);
      line-height: 1.6;
      flex: 1;
      margin-bottom: 14px;
    }
    .ciudad-meta {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 16px;
    }
    .ciudad-cta {
      display: block;
      text-align: center;
      background: var(--azul-hielo);
      color: var(--blanco);
      font-weight: 600;
      font-size: 13px;
      padding: 10px;
      border-radius: var(--radio-sm);
      text-decoration: none;
      transition: background .2s;
    }
    .ciudad-cta:hover { background: var(--azul-fiordo); }

    /* -- HIGHLIGHT BOX -- */
    .highlight-box {
      background: var(--azul-claro);
      border-left: 5px solid var(--azul-hielo);
      border-radius: 0 var(--radio-md) var(--radio-md) 0;
      padding: 20px 24px;
      margin: 32px 0;
    }
    .highlight-box p { font-family: 'Source Serif 4', serif; font-size: 16px; color: var(--azul-fiordo); }

    /* -- TABLA -- */
    .tabla-wrapper { overflow-x: auto; margin: 32px 0; }
    table {
      width: 100%;
      border-collapse: collapse;
      font-size: 15px;
      background: var(--blanco);
      border-radius: var(--radio-md);
      overflow: hidden;
      box-shadow: var(--sombra);
    }
    thead { background: var(--azul-fiordo); color: var(--blanco); }
    thead th {
      padding: 14px 18px;
      text-align: left;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .04em;
    }
    tbody tr { border-bottom: 1px solid var(--gris-borde); }
    tbody tr:last-child { border-bottom: none; }
    tbody tr:hover { background: var(--nieve); }
    tbody td { padding: 13px 18px; color: var(--gris-texto); }
    tbody td:first-child { font-weight: 600; color: var(--azul-fiordo); }
    .check { color: var(--verde-aurora); font-weight: 700; font-size: 16px; }
    .cross { color: var(--rojo-acento); font-weight: 700; }

    /* -- SECCIÓN CÓMO FUNCIONA -- */
    .pasos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 24px;
      counter-reset: paso;
    }
    .paso-card {
      background: var(--blanco);
      border: 1px solid var(--gris-borde);
      border-radius: var(--radio-lg);
      padding: 28px 22px;
      position: relative;
      box-shadow: var(--sombra);
    }
    .paso-num {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--azul-fiordo);
      color: var(--blanco);
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
    }
    .paso-titulo {
      font-weight: 700;
      font-size: 16px;
      color: var(--azul-fiordo);
      margin-bottom: 8px;
    }
    .paso-desc { font-size: 14px; color: var(--gris-medio); line-height: 1.6; }

    /* -- PROPINAS -- */
    .propinas-section { background: var(--azul-fiordo); color: var(--blanco); }
    .propinas-section .section-label { color: #7EC8F5; }
    .propinas-section .section-title { color: var(--blanco); }
    .propinas-section .section-intro { color: #B8D4EE; }
    .propinas-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
    }
    .propina-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: var(--radio-lg);
      padding: 22px 18px;
      text-align: center;
    }
    .propina-ciudad { font-size: 13px; color: #7EC8F5; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; margin-bottom: 8px; }
    .propina-cantidad { font-family: 'Playfair Display', serif; font-size: 30px; color: var(--oro-sol); font-weight: 700; line-height: 1; }
    .propina-moneda { font-size: 13px; color: #B8D4EE; margin-top: 6px; }

    /* -- COMPARATIVA -- */
    .comparativa-section { background: var(--blanco); }

    /* -- FAQ -- */
    .faq-section { background: var(--nieve); }
    .faq-lista { max-width: 780px; }
    .faq-item {
      background: var(--blanco);
      border: 1px solid var(--gris-borde);
      border-radius: var(--radio-md);
      margin-bottom: 12px;
      overflow: hidden;
    }
    details summary {
      padding: 18px 22px;
      font-weight: 600;
      font-size: 16px;
      cursor: pointer;
      color: var(--azul-fiordo);
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }
    details summary::-webkit-details-marker { display: none; }
    details summary::after {
      content: '+';
      font-size: 22px;
      color: var(--azul-hielo);
      flex-shrink: 0;
      transition: transform .2s;
    }
    details[open] summary::after { content: '-'; }
    .faq-resp {
      padding: 0 22px 18px;
      font-family: 'Source Serif 4', serif;
      font-size: 15px;
      color: var(--gris-medio);
      line-height: 1.75;
    }

    /* -- ÉPOCAS -- */
    .epocas-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
    }
    .epoca-card {
      border-radius: var(--radio-lg);
      padding: 24px 22px;
      border: 1px solid transparent;
    }
    .epoca-verano  { background: #EAF3DE; border-color: #97C459; }
    .epoca-otono   { background: var(--oro-claro); border-color: #EF9F27; }
    .epoca-invierno{ background: var(--azul-claro); border-color: #85B7EB; }
    .epoca-primavera{ background: #FBEAF0; border-color: #ED93B1; }
    .epoca-icono { font-size: 30px; margin-bottom: 10px; display: block; }
    .epoca-titulo { font-weight: 700; font-size: 16px; margin-bottom: 6px; }
    .epoca-verano  .epoca-titulo { color: #3B6D11; }
    .epoca-otono   .epoca-titulo { color: #854F0B; }
    .epoca-invierno .epoca-titulo { color: var(--azul-fiordo); }
    .epoca-primavera .epoca-titulo{ color: #993556; }
    .epoca-desc { font-size: 14px; color: var(--gris-medio); line-height: 1.6; }

    /* -- CTA CIVITATIS -- */
    .cta-civitatis {
      background: linear-gradient(135deg, var(--verde-aurora) 0%, #1D5E47 100%);
      color: var(--blanco);
      padding: 64px 24px;
      text-align: center;
    }
    .cta-civitatis h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(24px, 4vw, 40px);
      margin-bottom: 16px;
    }
    .cta-civitatis p {
      font-size: 17px;
      color: rgba(255,255,255,0.82);
      max-width: 560px;
      margin: 0 auto 32px;
      font-family: 'Source Serif 4', serif;
    }
    .btn-cta-white {
      display: inline-block;
      background: var(--blanco);
      color: var(--verde-aurora);
      font-weight: 700;
      font-size: 16px;
      padding: 15px 40px;
      border-radius: var(--radio-md);
      text-decoration: none;
      transition: transform .15s, box-shadow .15s;
      box-shadow: 0 4px 18px rgba(0,0,0,.18);
    }
    .btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,.22); }

    /* -- FOOTER -- */
    footer {
      background: #0B2540;
      color: #8AAEC8;
      padding: 48px 0 28px;
      font-size: 14px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-brand .logo { font-size: 20px; display: block; margin-bottom: 12px; }
    .footer-desc { color: #6D8FA8; font-size: 14px; line-height: 1.7; }
    .footer-col h4 {
      color: var(--blanco);
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-bottom: 14px;
    }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 8px; }
    .footer-col a { color: #6D8FA8; text-decoration: none; transition: color .2s; }
    .footer-col a:hover { color: var(--blanco); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      padding-top: 22px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      color: #4A6A84;
    }
    .footer-bottom a { color: #4A6A84; text-decoration: none; }
    .footer-bottom a:hover { color: var(--blanco); }

    /* -- RESPONSIVE -- */
    @media (max-width: 700px) {
      .header-inner { flex-direction: column; gap: 12px; }
      nav { flex-wrap: wrap; justify-content: center; gap: 14px; }
      .stat-item { padding: 0 20px; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .btn-secundario { margin-left: 0; margin-top: 12px; display: inline-block; }
    }

 /* --------------------------------------
       RESET & VARIABLES (mismo sistema index)
    -------------------------------------- */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      /* Paleta base compartida */
      --azul-fiordo:    #1A3A5C;
      --azul-hielo:     #2E6EA6;
      --azul-claro:     #D6E8F7;
      --verde-aurora:   #2D7D5F;
      --verde-claro:    #D4EEE3;
      --oro-sol:        #C9882A;
      --oro-claro:      #FBF0DC;
      --nieve:          #F4F7FA;
      --gris-texto:     #2C2C2A;
      --gris-medio:     #5F5E5A;
      --gris-borde:     #D3D1C7;
      --blanco:         #FFFFFF;
      --rojo-acento:    #A32D2D;

      /* Acento ciudad: Estocolmo ? azul real sueco */
      --ciudad-acento:  #006AA7;
      --ciudad-acento2: #FECC02;   /* amarillo corona sueca */
      --ciudad-claro:   #E3F0F9;

      --radio-sm:  6px;
      --radio-md:  10px;
      --radio-lg:  16px;
      --sombra:    0 2px 12px rgba(26,58,92,0.10);
      --sombra-md: 0 4px 24px rgba(26,58,92,0.14);
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--nieve);
      color: var(--gris-texto);
      line-height: 1.7;
      font-size: 16px;
    }

    /* -- UTILIDADES -- */
    .container { max-width: 1060px; margin: 0 auto; padding: 0 24px; }
    .badge {
      display: inline-block;
      font-size: 11px; font-weight: 600;
      letter-spacing: .06em; text-transform: uppercase;
      padding: 3px 10px; border-radius: 20px;
    }
    .badge-azul  { background: var(--azul-claro);  color: var(--azul-fiordo); }
    .badge-verde { background: var(--verde-claro);  color: var(--verde-aurora); }
    .badge-oro   { background: var(--oro-claro);    color: #7A5010; }
    .badge-swe   { background: var(--ciudad-acento2); color: #333; }
    strong { font-weight: 600; }

    /* -- HEADER -- */
    header { background: var(--azul-fiordo); border-bottom: 3px solid var(--ciudad-acento); }
    .header-inner {
      display: flex; justify-content: space-between; align-items: center;
      padding: 18px 24px; max-width: 1060px; margin: 0 auto;
    }
    .logo { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--blanco); text-decoration: none; }
    .logo span { color: #7EC8F5; }
    nav { display: flex; gap: 24px; flex-wrap: wrap; }
    nav a { color: #B8D4EE; text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
    nav a:hover { color: var(--blanco); }
    .nav-active { color: var(--ciudad-acento2) !important; font-weight: 700 !important; }

    /* -- BREADCRUMB -- */
    .breadcrumb {
      background: var(--blanco); border-bottom: 1px solid var(--gris-borde);
      padding: 10px 0; font-size: 13px; color: var(--gris-medio);
    }
    .breadcrumb a { color: var(--azul-hielo); text-decoration: none; }
    .breadcrumb a:hover { text-decoration: underline; }
    .breadcrumb span { margin: 0 6px; color: var(--gris-borde); }

    /* -- HERO -- */
    .hero {
      background: linear-gradient(150deg, var(--ciudad-acento) 0%, #004E82 55%, #002F52 100%);
      color: var(--blanco); padding: 64px 24px 72px; position: relative; overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='1.2' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E") repeat;
    }
    .hero-layout {
      position: relative; z-index: 1;
      display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start;
      max-width: 1060px; margin: 0 auto;
    }
    .hero-eyebrow {
      font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
      color: var(--ciudad-acento2); font-weight: 700; margin-bottom: 14px;
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 4.5vw, 48px);
      line-height: 1.15; margin-bottom: 18px;
    }
    .hero h1 em { color: var(--ciudad-acento2); font-style: normal; }
    .hero-desc {
      font-family: 'Source Serif 4', serif;
      font-size: 17px; color: rgba(255,255,255,.82);
      margin-bottom: 28px; max-width: 520px;
    }
    .hero-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
    .hero-pill {
      background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22);
      color: #D6ECFF; font-size: 12px; font-weight: 500; padding: 5px 13px; border-radius: 20px;
    }
    .btn-primary {
      display: inline-block; background: var(--oro-sol); color: var(--blanco);
      font-weight: 700; font-size: 15px; padding: 13px 30px; border-radius: var(--radio-md);
      text-decoration: none; letter-spacing: .02em;
      box-shadow: 0 4px 18px rgba(201,136,42,.45); transition: background .2s, transform .15s;
    }
    .btn-primary:hover { background: #b5771f; transform: translateY(-2px); }
    .btn-outline {
      display: inline-block; border: 2px solid rgba(255,255,255,.35); color: var(--blanco);
      font-weight: 600; font-size: 14px; padding: 12px 22px; border-radius: var(--radio-md);
      text-decoration: none; margin-left: 12px; transition: border-color .2s, background .2s;
    }
    .btn-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }

    /* Tarjeta de reserva rápida en hero */
    .reserva-card {
      background: var(--blanco); border-radius: var(--radio-lg);
      padding: 28px 24px; box-shadow: 0 8px 32px rgba(0,0,0,.22); color: var(--gris-texto);
    }
    .reserva-card h3 {
      font-family: 'Playfair Display', serif; font-size: 20px;
      color: var(--azul-fiordo); margin-bottom: 18px; text-align: center;
    }
    .reserva-dato {
      display: flex; justify-content: space-between; align-items: center;
      padding: 10px 0; border-bottom: 1px solid var(--gris-borde); font-size: 14px;
    }
    .reserva-dato:last-of-type { border-bottom: none; }
    .reserva-dato .label { color: var(--gris-medio); }
    .reserva-dato .valor { font-weight: 700; color: var(--azul-fiordo); text-align: right; }
    .reserva-dato .valor-green { font-weight: 700; color: var(--verde-aurora); }
    .btn-reserva {
      display: block; text-align: center; background: var(--verde-aurora); color: var(--blanco);
      font-weight: 700; font-size: 15px; padding: 14px; border-radius: var(--radio-md);
      text-decoration: none; margin-top: 18px; transition: background .2s;
    }
    .btn-reserva:hover { background: #1D5E47; }
    .reserva-nota { font-size: 11px; color: var(--gris-medio); text-align: center; margin-top: 10px; }

    /* -- SECCIONES -- */
    section { padding: 60px 0; }
    .section-label {
      font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
      color: var(--ciudad-acento); font-weight: 700; margin-bottom: 10px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(22px, 3.5vw, 36px);
      color: var(--azul-fiordo); line-height: 1.2; margin-bottom: 14px;
    }
    .section-intro {
      font-family: 'Source Serif 4', serif; font-size: 17px;
      color: var(--gris-medio); max-width: 700px; margin-bottom: 40px;
    }

    /* -- HIGHLIGHT BOXES -- */
    .highlight-box {
      background: var(--azul-claro); border-left: 5px solid var(--azul-hielo);
      border-radius: 0 var(--radio-md) var(--radio-md) 0; padding: 18px 22px; margin: 28px 0;
    }
    .highlight-box p { font-family: 'Source Serif 4',serif; font-size: 15px; color: var(--azul-fiordo); }
    .highlight-verde {
      background: var(--verde-claro); border-left: 5px solid var(--verde-aurora);
      border-radius: 0 var(--radio-md) var(--radio-md) 0; padding: 18px 22px; margin: 28px 0;
    }
    .highlight-verde p { font-family: 'Source Serif 4',serif; font-size: 15px; color: #1A4A35; }
    .highlight-oro {
      background: var(--oro-claro); border-left: 5px solid var(--oro-sol);
      border-radius: 0 var(--radio-md) var(--radio-md) 0; padding: 18px 22px; margin: 28px 0;
    }
    .highlight-oro p { font-family: 'Source Serif 4',serif; font-size: 15px; color: #5A3A0A; }

    /* -- ITINERARIO -- */
    .itinerario-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px;
    }
    .parada-card {
      background: var(--blanco); border: 1px solid var(--gris-borde);
      border-radius: var(--radio-lg); padding: 22px 20px; box-shadow: var(--sombra);
      display: flex; gap: 16px; align-items: flex-start;
    }
    .parada-num {
      min-width: 36px; height: 36px; border-radius: 50%;
      background: var(--ciudad-acento); color: var(--blanco);
      font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .parada-titulo { font-weight: 700; font-size: 15px; color: var(--azul-fiordo); margin-bottom: 5px; }
    .parada-desc { font-size: 13px; color: var(--gris-medio); line-height: 1.6; }

    /* -- OPERADORES -- */
    .operadores-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px;
    }
    .operador-card {
      background: var(--blanco); border: 2px solid var(--gris-borde);
      border-radius: var(--radio-lg); padding: 28px 24px; box-shadow: var(--sombra);
      display: flex; flex-direction: column; transition: box-shadow .2s, border-color .2s;
    }
    .operador-card:hover { box-shadow: var(--sombra-md); border-color: var(--ciudad-acento); }
    .operador-card.destacado { border-color: var(--verde-aurora); border-width: 2px; }
    .operador-badge {
      font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
      padding: 3px 10px; border-radius: 20px; display: inline-block; margin-bottom: 14px; align-self: flex-start;
    }
    .op-civitatis { background: #FDECEA; color: #C0392B; }
    .op-rainbow   { background: #EAF3DE; color: #2D7D5F; }
    .op-amike     { background: var(--ciudad-claro); color: var(--ciudad-acento); }
    .operador-nombre {
      font-family: 'Playfair Display', serif; font-size: 20px;
      color: var(--azul-fiordo); margin-bottom: 12px;
    }
    .operador-desc { font-size: 14px; color: var(--gris-medio); line-height: 1.7; flex: 1; margin-bottom: 18px; }
    .operador-datos { list-style: none; margin-bottom: 18px; }
    .operador-datos li {
      display: flex; justify-content: space-between; padding: 7px 0;
      border-bottom: 1px solid var(--gris-borde); font-size: 13px;
    }
    .operador-datos li:last-child { border-bottom: none; }
    .op-label { color: var(--gris-medio); }
    .op-valor { font-weight: 600; color: var(--gris-texto); text-align: right; }
    .btn-operador {
      display: block; text-align: center; font-weight: 700; font-size: 14px;
      padding: 12px; border-radius: var(--radio-md); text-decoration: none; transition: background .2s;
    }
    .btn-civ { background: #C0392B; color: var(--blanco); }
    .btn-civ:hover { background: #962d22; }
    .btn-rainbow { background: var(--verde-aurora); color: var(--blanco); }
    .btn-rainbow:hover { background: #1D5E47; }
    .btn-amike { background: var(--ciudad-acento); color: var(--blanco); }
    .btn-amike:hover { background: #004E82; }

    /* -- TABLA -- */
    .tabla-wrapper { overflow-x: auto; margin: 32px 0; }
    table { width: 100%; border-collapse: collapse; font-size: 14px; background: var(--blanco); border-radius: var(--radio-md); overflow: hidden; box-shadow: var(--sombra); }
    thead { background: var(--azul-fiordo); color: var(--blanco); }
    thead th { padding: 13px 16px; text-align: left; font-size: 12px; font-weight: 600; letter-spacing: .04em; }
    tbody tr { border-bottom: 1px solid var(--gris-borde); }
    tbody tr:last-child { border-bottom: none; }
    tbody tr:hover { background: var(--nieve); }
    tbody td { padding: 12px 16px; color: var(--gris-texto); }
    tbody td:first-child { font-weight: 600; color: var(--azul-fiordo); }
    .check { color: var(--verde-aurora); font-weight: 700; }
    .cross { color: var(--rojo-acento); font-weight: 700; }
    .tr-highlight { background: #EAF3DE !important; }

    /* -- SECCIÓN OSCURA (contexto histórico) -- */
    .historia-section { background: var(--azul-fiordo); color: var(--blanco); }
    .historia-section .section-label { color: var(--ciudad-acento2); }
    .historia-section .section-title { color: var(--blanco); }
    .historia-section .section-intro { color: rgba(255,255,255,.75); }
    .historia-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
    .historia-card {
      background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radio-lg); padding: 22px 20px;
    }
    .historia-card .icono { font-size: 28px; margin-bottom: 10px; display: block; }
    .historia-card h4 { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--ciudad-acento2); margin-bottom: 8px; }
    .historia-card p { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.7; }

    /* -- CONSEJOS -- */
    .consejos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
    .consejo-card {
      background: var(--blanco); border: 1px solid var(--gris-borde);
      border-radius: var(--radio-lg); padding: 22px 20px; box-shadow: var(--sombra);
    }
    .consejo-icono { font-size: 26px; margin-bottom: 10px; display: block; }
    .consejo-titulo { font-weight: 700; font-size: 15px; color: var(--azul-fiordo); margin-bottom: 7px; }
    .consejo-desc { font-size: 13px; color: var(--gris-medio); line-height: 1.65; }

    /* -- FAQ -- */
    .faq-lista { max-width: 780px; }
    .faq-item { background: var(--blanco); border: 1px solid var(--gris-borde); border-radius: var(--radio-md); margin-bottom: 10px; overflow: hidden; }
    details summary {
      padding: 16px 20px; font-weight: 600; font-size: 15px; cursor: pointer;
      color: var(--azul-fiordo); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
    }
    details summary::-webkit-details-marker { display: none; }
    details summary::after { content: '+'; font-size: 22px; color: var(--ciudad-acento); flex-shrink: 0; }
    details[open] summary::after { content: '-'; }
    .faq-resp { padding: 0 20px 16px; font-family: 'Source Serif 4',serif; font-size: 15px; color: var(--gris-medio); line-height: 1.75; }

    /* -- TOURS RELACIONADOS -- */
    .relacionados-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
    .relacionado-card {
      background: var(--blanco); border: 1px solid var(--gris-borde); border-radius: var(--radio-lg);
      padding: 20px; box-shadow: var(--sombra); text-decoration: none; color: inherit;
      transition: box-shadow .2s, transform .2s; display: flex; flex-direction: column;
    }
    .relacionado-card:hover { box-shadow: var(--sombra-md); transform: translateY(-3px); }
    .rel-emoji { font-size: 30px; margin-bottom: 10px; display: block; }
    .rel-titulo { font-weight: 700; font-size: 15px; color: var(--azul-fiordo); margin-bottom: 6px; }
    .rel-desc { font-size: 13px; color: var(--gris-medio); line-height: 1.6; flex: 1; margin-bottom: 14px; }
    .rel-cta { font-size: 13px; font-weight: 600; color: var(--ciudad-acento); }

    /* -- CTA CIVITATIS -- */
    .cta-section {
      background: linear-gradient(135deg, var(--verde-aurora) 0%, #1D5E47 100%);
      color: var(--blanco); padding: 64px 24px; text-align: center;
    }
    .cta-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(22px, 4vw, 38px); margin-bottom: 14px; }
    .cta-section p { font-size: 17px; color: rgba(255,255,255,.82); max-width: 540px; margin: 0 auto 30px; font-family: 'Source Serif 4',serif; }
    .btn-cta-white {
      display: inline-block; background: var(--blanco); color: var(--verde-aurora);
      font-weight: 700; font-size: 15px; padding: 14px 38px; border-radius: var(--radio-md);
      text-decoration: none; box-shadow: 0 4px 18px rgba(0,0,0,.18); transition: transform .15s, box-shadow .15s;
    }
    .btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,.22); }

    /* -- FOOTER -- */
    footer { background: #0B2540; color: #8AAEC8; padding: 48px 0 28px; font-size: 14px; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
    .footer-brand .logo { font-size: 20px; display: block; margin-bottom: 12px; }
    .footer-desc { color: #6D8FA8; font-size: 14px; line-height: 1.7; }
    .footer-col h4 { color: var(--blanco); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 8px; }
    .footer-col a { color: #6D8FA8; text-decoration: none; transition: color .2s; }
    .footer-col a:hover { color: var(--blanco); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px;
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; color: #4A6A84;
    }
    .footer-bottom a { color: #4A6A84; text-decoration: none; }
    .footer-bottom a:hover { color: var(--blanco); }

    /* -- RESPONSIVE -- */
    @media (max-width: 800px) {
      .hero-layout { grid-template-columns: 1fr; }
      .reserva-card { margin-top: 8px; }
      .header-inner { flex-direction: column; gap: 12px; }
      nav { flex-wrap: wrap; justify-content: center; gap: 12px; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .btn-outline { margin-left: 0; margin-top: 10px; display: inline-block; }
    }
    
    
        