/* =========================================================
   main.css
   Ruta de Seda / The Silk Road Travel
   Estilo estático HTML + S3 + CloudFront
   ========================================================= */

/* =========================
   1) RESET
   ========================= */
*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  margin:0;
  padding:0;
  scroll-behavior:smooth;
}

body{
  margin:0;
  padding:0;
  min-height:100%;
}

/* =========================
   2) VARIABLES GLOBALES
   ========================= */
:root{
  --fondo-pergamino-claro:#fff9f0;
  --fondo-pergamino:#f5efe4;
  --fondo-pergamino-oscuro:#e7dcc6;

  --borde-dorado:#c19a4a;
  --borde-dorado-oscuro:#8a5a11;

  --texto-principal:#3b2b18;
  --texto-secundario:#5a4630;

  --azul-profundo:#002B5B;
  --azul-profundo-2:#0d254f;

  --oro-suave:#d9c18a;
  --oro-brillo:#f3d28a;

  --sombra-suave:rgba(0,0,0,0.08);
  --sombra-media:rgba(0,0,0,0.12);
  --sombra-fuerte:rgba(0,0,0,0.28);

  --radio-panel:18px;
  --radio-card:14px;

  --max-ancho:1200px;
}

/* =========================
   3) BASE GENERAL
   ========================= */
body{
  font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  background:
    radial-gradient(circle at 15% 0%, rgba(193,154,74,0.08) 0%, rgba(193,154,74,0) 60%),
    linear-gradient(
      to bottom,
      var(--fondo-pergamino-claro) 0%,
      var(--fondo-pergamino) 55%,
      var(--fondo-pergamino-oscuro) 100%
    );
  color:var(--texto-principal);
  line-height:1.55;
}

main{
  width:100%;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

a{
  color:var(--borde-dorado-oscuro);
  text-decoration:none;
  transition:all .18s ease;
}

a:hover{
  color:#000;
}

h1,h2,h3,h4,h5,h6{
  font-family:"Cormorant Garamond",Georgia,"Times New Roman",serif;
  color:var(--texto-principal);
  margin:0 0 .6rem 0;
  line-height:1.2;
  letter-spacing:.02em;
}

p{
  margin:0 0 1rem 0;
}

ul,ol{
  margin:0 0 1rem 1.2rem;
}

strong{
  color:#2a1c0c;
  font-weight:600;
}

/* =========================
   4) CONTENEDOR GENERAL
   ========================= */
.page-wrap,
.main-wrap,
.contenido,
.blog-wrapper,
.blog-main{
  max-width:var(--max-ancho);
  margin:0 auto;
  padding:24px 16px 80px;
  position:relative;
  z-index:1;
}

/* =========================
   5) HEADER PLACEHOLDER
   ========================= */
#header-placeholder,
#footer-placeholder{
  width:100%;
}

/* =========================
   6) HERO GENÉRICO
   ========================= */
.hero,
.hero-card{
  max-width:var(--max-ancho);
  margin:20px auto 22px;
  border-radius:18px;
  overflow:hidden;
  background:#000;
  box-shadow:
    0 24px 48px rgba(0,0,0,0.18),
    0 2px 4px rgba(0,0,0,0.16);
  position:relative;
}

.hero-bg{
  width:100%;
  min-height:420px;
  background-image:url('/imagenes/samarkand-hero.jpg');
  background-size:cover;
  background-position:center 40%;
  position:relative;
}

.hero-overlay{
  position:absolute;
  inset:0 auto 0 0;
  width:min(520px,90%);
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:24px;
  color:#fff;
  background:linear-gradient(
    90deg,
    rgba(0,0,0,0.76) 0%,
    rgba(0,0,0,0.52) 46%,
    rgba(0,0,0,0) 100%
  );
  text-shadow:0 2px 6px rgba(0,0,0,0.7);
}

.hero-overlay h1{
  color:#fff;
  font-size:clamp(1.8rem,2vw + 1rem,2.6rem);
  margin-bottom:10px;
}

.hero-overlay p{
  color:#fff;
  font-size:.96rem;
  line-height:1.55;
}

.hero-seo{
  margin-top:10px;
  font-size:.82rem;
  line-height:1.45;
  color:rgba(255,255,255,.92);
  max-width:48ch;
}

.hero-links{
  position:absolute !important;
  left:-99999px !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
  white-space:nowrap !important;
}

/* =========================
   7) BOTONES
   ========================= */
.btn-search,
.hero-btn,
.btn-dorado{
  display:inline-block;
  width:fit-content;
  border:1px solid var(--borde-dorado-oscuro);
  border-radius:10px;
  padding:10px 14px;
  background:
    radial-gradient(circle at 30% 30%, var(--oro-suave) 0%, #b38b4a 60%, var(--borde-dorado-oscuro) 100%);
  color:#2a1c0c;
  font-family:"Cormorant Garamond",Georgia,"Times New Roman",serif;
  font-size:.95rem;
  font-weight:700;
  line-height:1.2;
  text-decoration:none;
  cursor:pointer;
  box-shadow:0 6px 14px rgba(0,0,0,0.18);
  transition:transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.btn-search:hover,
.hero-btn:hover,
.btn-dorado:hover{
  transform:translateY(-1px);
  filter:brightness(1.04);
  box-shadow:0 10px 20px rgba(0,0,0,0.22);
}

/* =========================
   8) PANEL DORADO / BLOQUES
   ========================= */
.panel-dorado,
.search-intro,
.search-block,
.bloque-seccion,
.bloque-indice,
.contacto-hero,
.form-card,
.info-box,
.suscribe-wrap{
  background:
    radial-gradient(circle at 20% 20%, var(--fondo-pergamino-claro) 0%, var(--fondo-pergamino) 42%, var(--fondo-pergamino-oscuro) 100%);
  border:2px solid var(--borde-dorado);
  border-radius:20px;
  box-shadow:
    0 24px 48px var(--sombra-suave),
    0 2px 4px rgba(0,0,0,0.08);
  position:relative;
}

.panel-dorado,
.bloque-seccion,
.bloque-indice{
  padding:24px 20px 26px;
  margin:0 auto 24px;
}

.panel-dorado::before,
.bloque-seccion::before,
.bloque-indice::before,
.contacto-hero::before,
.form-card::before,
.info-box::before,
.suscribe-wrap::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translate(-50%,-60%);
  width:120px;
  height:120px;
  background:radial-gradient(circle at 50% 50%, rgba(193,154,74,0.42) 0%, rgba(193,154,74,0) 70%);
  filter:blur(18px);
  pointer-events:none;
}

/* =========================
   9) TÍTULOS DECORADOS
   ========================= */
.titulo-deco,
.rutas-header,
.blog-header{
  text-align:center;
  margin-bottom:16px;
}

.titulo-deco h2,
.rutas-header h2,
.blog-header h2,
.indice-titulo,
.titulo-seccion,
.bloque-titulo{
  font-size:clamp(1.45rem,0.6vw + 1.1rem,2rem);
  color:var(--azul-profundo-2);
}

.titulo-deco::after,
.rutas-header::after,
.indice-titulo::after,
.titulo-seccion::after,
.bloque-titulo::after{
  content:"";
  display:block;
  width:90px;
  height:4px;
  border-radius:999px;
  margin:14px auto 0;
  background:linear-gradient(to right,#b38b4a 0%,#d9c18a 50%,#b38b4a 100%);
  box-shadow:0 0 6px rgba(179,139,74,0.6);
}

.subline,
.hero-desc,
.contacto-intro{
  max-width:760px;
  margin:0 auto;
  text-align:center;
  color:var(--texto-secundario);
  font-size:.95rem;
  line-height:1.5;
}

/* =========================
   10) SCROLL HORIZONTAL
   ========================= */
.scroll-grid,
.rutas-track,
.city-row,
.blog-grid,
.gallery-grid{
  display:flex;
  gap:16px;
  overflow-x:auto;
  overflow-y:hidden;
  padding-bottom:6px;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
}

.scroll-grid::-webkit-scrollbar,
.rutas-track::-webkit-scrollbar,
.city-row::-webkit-scrollbar,
.blog-grid::-webkit-scrollbar,
.gallery-grid::-webkit-scrollbar{
  display:none;
}

/* =========================
   11) TARJETAS DE RUTA / BLOG / OFERTA
   ========================= */
.ruta-card,
.blog-card,
.offer-card,
.popular-card,
.featured-card,
.deal-card{
  background:#fff;
  border:1px solid rgba(0,0,0,0.12);
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 20px rgba(0,0,0,0.08);
  transition:transform .2s ease, box-shadow .2s ease;
}

.ruta-card:hover,
.blog-card:hover,
.offer-card:hover,
.popular-card:hover,
.featured-card:hover,
.deal-card:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 30px rgba(0,0,0,0.12);
}

.ruta-card,
.blog-card{
  flex:0 0 270px;
  max-width:270px;
}

.ruta-card img,
.blog-card img,
.offer-card img,
.popular-card img,
.featured-card img,
.deal-card img{
  width:100%;
  height:170px;
  object-fit:cover;
  display:block;
  background:#eef2f5;
}

.ruta-body,
.blog-body,
.offer-card-content,
.popular-body,
.destino-info,
.card-body{
  padding:14px 14px 16px;
}

.ruta-titulo,
.blog-title,
.offer-card-content h3,
.popular-body a,
.featured-card h3,
.deal-card h3{
  font-family:"Inter",sans-serif;
  font-size:.95rem;
  line-height:1.4;
  font-weight:700;
  color:var(--azul-profundo-2);
  margin:0 0 6px;
}

.ruta-desc,
.blog-excerpt,
.offer-extra,
.popular-city,
.destino-info p,
.deal-card p,
.featured-card .city{
  font-size:.82rem;
  color:var(--texto-secundario);
  line-height:1.45;
}

.offer-price,
.popular-price,
.featured-card .price,
.deal-card .price{
  margin-top:8px;
  font-size:.85rem;
  font-weight:700;
  color:var(--borde-dorado-oscuro);
}

/* =========================
   12) CIUDADES / TARJETAS VISUALES
   ========================= */
.city-card,
.gallery-item{
  flex:0 0 260px;
  max-width:260px;
  display:block;
  position:relative;
  overflow:hidden;
  border-radius:18px;
  text-decoration:none;
  box-shadow:
    0 18px 32px rgba(0,0,0,0.18),
    0 2px 4px rgba(0,0,0,0.18);
}

.city-card img{
  width:100%;
  height:210px;
  object-fit:cover;
}

.city-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.16) 45%, rgba(0,0,0,0) 100%);
}

.city-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  text-align:center;
  padding:0 18px 24px;
  pointer-events:none;
}

.city-name{
  display:inline-block;
  padding:7px 20px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(248,227,160,0.85) 0%, rgba(205,162,77,0.78) 40%, rgba(138,90,17,0.78) 100%);
  color:#fff;
  font-family:"Cormorant Garamond",serif;
  font-size:1.08rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  box-shadow:0 6px 16px rgba(0,0,0,0.35);
}

/* =========================
   13) GALLERY
   ========================= */
.gallery-item{
  border:0;
  background:none;
  padding:0;
  margin:0;
  text-align:left;
}

.gallery-item img{
  width:100%;
  height:190px;
  object-fit:cover;
}

.gallery-caption{
  display:block;
  padding:8px 10px 10px;
  background:rgba(255,255,255,0.92);
  color:var(--texto-principal);
  font-size:.78rem;
}

/* =========================
   14) SEARCH BLOCK
   ========================= */
.search-block{
  max-width:640px;
  margin:0 auto 24px;
  padding:18px;
}

.search-form-row{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-end;
  gap:10px;
}

.search-form-row label{
  width:100%;
  font-size:.82rem;
  font-weight:600;
  color:var(--texto-principal);
  margin-bottom:3px;
}

.search-select-wrap{
  flex:1 1 auto;
  min-width:0;
  position:relative;
  display:flex;
  align-items:center;
  background:#fff;
  border:1px solid rgba(0,0,0,0.2);
  border-radius:10px;
}

.search-select-wrap select{
  appearance:none;
  -webkit-appearance:none;
  width:100%;
  border:0;
  outline:none;
  background:transparent;
  padding:10px 36px 10px 12px;
  font-size:.92rem;
  color:var(--texto-principal);
  font-family:inherit;
}

.search-select-wrap .chevron{
  position:absolute;
  right:10px;
  pointer-events:none;
  font-size:.75rem;
  color:var(--texto-principal);
}

/* =========================
   15) GRID BLOQUES
   ========================= */
.offers-grid,
.popular-grid,
.features-grid,
.destinos-grid,
.featured-grid,
.deal-grid,
.info-grid,
.grid-ciudades,
.grid-gastro{
  display:grid;
  gap:18px;
}

.offers-grid,
.popular-grid,
.features-grid,
.destinos-grid,
.featured-grid,
.deal-grid{
  grid-template-columns:repeat(3, minmax(0,1fr));
}

.info-grid{
  grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
}

.grid-ciudades{
  grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
}

.grid-gastro{
  grid-template-columns:repeat(auto-fit, minmax(240px,1fr));
}

.feature-item{
  text-align:center;
}

.feature-item img{
  width:60px;
  height:60px;
  margin:0 auto 10px;
}

.feature-item h4{
  color:var(--azul-profundo-2);
  font-size:1.05rem;
}

.feature-item p{
  font-size:.88rem;
  color:var(--texto-secundario);
}

/* =========================
   16) BLOG HERO / ARTÍCULOS
   ========================= */
.hero-blog{
  background:
    radial-gradient(circle at 20% 20%, #fffdf8 0%, var(--fondo-pergamino-oscuro) 70%);
  border:2px solid var(--borde-dorado);
  border-radius:20px;
  box-shadow:0 24px 48px var(--sombra-suave), 0 2px 4px rgba(0,0,0,0.06);
  padding:24px 24px 32px;
  margin-bottom:32px;
  text-align:center;
  position:relative;
  overflow:hidden;
}

.hero-blog::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translate(-50%,-55%);
  width:150px;
  height:150px;
  background:radial-gradient(circle at 50% 50%, rgba(193,154,74,0.45) 0%, rgba(193,154,74,0) 70%);
  filter:blur(18px);
  pointer-events:none;
}

.hero-blog h1{
  font-size:clamp(2rem, 1vw + 1.8rem, 2.8rem);
  font-weight:600;
}

.hero-subtitle{
  font-family:"Cormorant Garamond",Georgia,"Times New Roman",serif;
  font-size:1.3rem;
  margin:0 0 18px;
  color:var(--texto-secundario);
}

.hero-divider{
  width:120px;
  height:4px;
  border-radius:999px;
  margin:0 auto 18px;
  background:linear-gradient(to right,#b38b4a 0%,#d9c18a 50%,#b38b4a 100%);
  box-shadow:0 0 6px rgba(179,139,74,0.7);
}

.hero-intro{
  max-width:900px;
  margin:0 auto 14px;
  font-size:1rem;
  color:var(--texto-secundario);
}

.hero-note{
  max-width:900px;
  margin:0 auto 18px;
  font-size:.95rem;
  color:var(--texto-secundario);
  background:#fff;
  border:1px solid rgba(193,154,74,0.5);
  border-left:6px solid var(--borde-dorado);
  border-radius:12px;
  padding:12px 14px;
  box-shadow:0 10px 18px rgba(0,0,0,0.06);
  text-align:left;
}

.hero-img-wrapper{
  margin-top:18px;
  display:flex;
  justify-content:center;
}

.hero-img{
  width:100%;
  max-width:720px;
  max-height:420px;
  object-fit:contain;
  border-radius:18px;
  border:2px solid var(--borde-dorado);
  box-shadow:0 18px 36px rgba(0,0,0,0.22),0 2px 4px rgba(0,0,0,0.18);
}

/* =========================
   17) SHARE BAR
   ========================= */
.share-bar{
  margin:10px 0 30px;
  padding:16px 18px;
  border-radius:14px;
  border:1px solid rgba(205,162,77,0.5);
  background:radial-gradient(circle at 20% 20%, #fff9f0 0%, #f5efe4 50%, #e7dcc6 100%);
  box-shadow:0 10px 20px rgba(0,0,0,0.08);
  font-size:.95rem;
}

.share-title{
  display:block;
  margin-bottom:10px;
  font-weight:600;
  color:#3b2b18;
}

.share-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:6px;
}

.share-btn{
  border:none;
  border-radius:999px;
  padding:8px 16px;
  font-size:.9rem;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-family:inherit;
  transition:transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.share-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 4px 10px rgba(0,0,0,0.2);
  opacity:.95;
}

.share-facebook{
  background:linear-gradient(135deg, #1877f2, #1452a3);
  color:#fff;
}

.share-copy{
  background:linear-gradient(135deg, #d9c18a, #b38b4a);
  color:#2a1c0c;
}

.share-hint{
  display:block;
  font-size:.8rem;
  color:#5a4630;
}

/* =========================
   18) FOOTER CHAT WIDGET
   ========================= */
#ia-chat-toggle{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:10001 !important;
  border:1px solid rgba(0,0,0,.15);
  border-radius:999px;
  padding:10px 14px;
  cursor:pointer;
  background:radial-gradient(circle at 30% 30%, #cda24d 0%, #8a5a11 70%);
  color:#2a1c0c;
  font-weight:700;
  box-shadow:0 10px 22px rgba(0,0,0,.25);
}

#ia-chat-widget{
  position:fixed;
  right:18px;
  bottom:70px;
  width:min(380px, calc(100vw - 36px));
  height:520px;
  max-height:70vh;
  border-radius:16px;
  overflow:hidden;
  z-index:10001 !important;
  background:#fff;
  border:1px solid rgba(0,0,0,.12);
  box-shadow:0 18px 40px rgba(0,0,0,.30);
  display:flex;
  flex-direction:column;
}

#ia-chat-widget.ia-chat-oculto{
  display:none !important;
}

.ia-chat-header{
  background:#050b16;
  color:#fff;
  padding:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  border-bottom:2px solid #cda24d;
}

.ia-chat-titulo{
  font-family:"Cormorant Garamond",Georgia,serif;
  font-weight:700;
  font-size:1.05rem;
}

.ia-chat-subtitulo{
  font-size:.8rem;
  opacity:.85;
  margin-top:2px;
}

.ia-chat-cerrar{
  width:34px;
  height:34px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.08);
  color:#fff;
  cursor:pointer;
}

.ia-chat-mensajes{
  flex:1;
  overflow:auto;
  padding:12px;
  background:#f6f2ea;
}

.ia-msg{
  max-width:85%;
  padding:10px 12px;
  border-radius:14px;
  margin:8px 0;
  font-size:.9rem;
  line-height:1.35;
}

.ia-msg-sistema{
  max-width:100%;
  background:rgba(255,255,255,.9);
  border:1px solid rgba(0,0,0,.08);
}

.ia-msg-usuario{
  margin-left:auto;
  background:#002B5B;
  color:#fff;
}

.ia-msg-bot{
  margin-right:auto;
  background:#ffffff;
  border:1px solid rgba(0,0,0,.10);
}

.ia-chat-form{
  display:flex;
  gap:10px;
  padding:10px;
  border-top:1px solid rgba(0,0,0,.10);
  background:#fff;
}

#ia-chat-input{
  flex:1;
  border:1px solid rgba(0,0,0,.2);
  border-radius:999px;
  padding:10px 12px;
  outline:none;
}

.ia-chat-form button{
  border:0;
  border-radius:999px;
  padding:10px 14px;
  cursor:pointer;
  background:radial-gradient(circle at 30% 30%, #cda24d 0%, #8a5a11 70%);
  color:#2a1c0c;
  font-weight:800;
}

/* =========================
   19) BOTÓN SUBIR ARRIBA
   ========================= */
#btnTop,
.btn-scroll-top{
  position:fixed;
  bottom:24px;
  right:24px;
  z-index:999;
  width:48px;
  height:48px;
  border-radius:50%;
  border:2px solid #2a1c0c;
  background:radial-gradient(circle at 30% 30%,#d9c18a 0%,#b38b4a 60%,#8a5a11 100%);
  color:#2a1c0c;
  cursor:pointer;
  display:none;
  font-size:20px;
  line-height:44px;
  text-align:center;
  font-family:"Cormorant Garamond",serif;
  font-weight:600;
  box-shadow:0 14px 24px var(--sombra-fuerte), 0 2px 3px rgba(0,0,0,0.45);
  transition:transform .25s ease, box-shadow .25s ease;
}

#btnTop:hover,
.btn-scroll-top:hover{
  transform:scale(1.08) translateY(-2px);
  box-shadow:0 18px 32px rgba(0,0,0,0.5), 0 2px 3px rgba(0,0,0,0.6);
}

.btn-scroll-top.visible{
  display:block;
}

/* =========================
   20) REVEAL ANIMATIONS
   ========================= */
.reveal-base{
  opacity:1;
  transform:none;
  filter:none;
  transition:none;
}

.reveal-visible{
  opacity:1;
  transform:translateY(0);
  filter:blur(0);
}

.reveal-left{
  opacity:0;
  transform:translateX(-40px);
  transition:all .7s ease;
  will-change:transform,opacity;
}

.reveal-right{
  opacity:0;
  transform:translateX(40px);
  transition:all .7s ease;
  will-change:transform,opacity;
}

.reveal-visible-left,
.reveal-visible-right{
  opacity:1;
  transform:translateX(0);
}

/* =========================
   21) RESPONSIVE
   ========================= */
@media (max-width: 980px){
  .offers-grid,
  .popular-grid,
  .features-grid,
  .destinos-grid,
  .featured-grid,
  .deal-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 768px){
  .hero-bg{
    min-height:380px;
  }

  .hero-overlay{
    width:100%;
    padding:18px 16px 20px;
    background:linear-gradient(
      180deg,
      rgba(0,0,0,0.72) 0%,
      rgba(0,0,0,0.52) 55%,
      rgba(0,0,0,0.20) 100%
    );
  }

  .page-wrap,
  .main-wrap,
  .contenido,
  .blog-wrapper,
  .blog-main{
    padding:18px 12px 74px;
  }

  .hero-card,
  .panel-dorado,
  .bloque-seccion,
  .bloque-indice,
  .search-block{
    margin-bottom:18px;
  }
}

@media (max-width: 640px){
  .offers-grid,
  .popular-grid,
  .features-grid,
  .destinos-grid,
  .featured-grid,
  .deal-grid{
    grid-template-columns:1fr;
  }

  .ruta-card,
  .blog-card,
  .city-card,
  .gallery-item{
    flex-basis:240px;
    max-width:240px;
  }

  .ruta-card img,
  .blog-card img,
  .gallery-item img{
    height:160px;
  }

  #btnTop,
  .btn-scroll-top{
    right:14px;
    bottom:14px;
  }

  #ia-chat-toggle{
    right:12px;
    bottom:12px;
  }

  #ia-chat-widget{
    right:12px;
    bottom:64px;
    width:min(380px, calc(100vw - 24px));
  }
}
