/* =========================================================
   style.css — Landing (sin Bootstrap) — LIMPIO según tu HTML
   ========================================================= */

/* --------- Reset / Base --------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

:root{
  --container: 1160px;

  --text: #0f172a;
  --muted: #475569;

  --bg: #ffffff;

  /* Paleta */
  --accent: #0F2A44;
  --accent-2: #12365A;

  --gold: #B08A3A;

  --shadow-1: 0 10px 30px rgba(2, 6, 23, .10);

  --radius: 18px;

  /* Tipografías */
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  --font-serif: "Cormorant Garamond", ui-serif, Georgia, "Times New Roman", serif;
  --font-script: "Allura", "Brush Script MT", cursive;
}

body{
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

img{ max-width: 100%; height: auto; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; }

/* Contenedor */
.container{
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

/* Accesibilidad */
.sr-only{
  position:absolute!important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* =========================================================
   Header
   ========================================================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 23, 42, .06);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.02em;
  min-width: 220px;
}

.brand-logo{
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand-name{ font-size: 16px; }

.nav{
  display:flex;
  align-items:center;
  gap: 22px;
  color: var(--muted);
  font-weight: 650;
  font-size: 14px;
}

.nav-link{
  padding: 8px 10px;
  border-radius: 10px;
  transition: background .15s ease, color .15s ease;
}

.nav-link:hover{
  background: rgba(15,23,42,.06);
  color: var(--text);
}

.header-cta{
  display:flex;
  align-items:center;
  gap: 10px;
}

/* =========================================================
   Botones
   ========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  font-size: 14px;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
  user-select: none;
  white-space: nowrap;
}

.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(15, 42, 68, .22);
}

.btn-primary:hover{
  background: var(--accent-2);
  box-shadow: 0 14px 30px rgba(15, 42, 68, .28);
}

.btn-outline{
  background: rgba(255,255,255,.72);
  color: var(--accent);
  border-color: rgba(15, 42, 68, .35);
  backdrop-filter: blur(6px);
}

.btn-outline:hover,
.btn-outline:focus-visible{
  border-color: rgba(15, 42, 68, .85);
  box-shadow: 0 10px 24px rgba(15, 42, 68, .18);
  outline: none;
}

.btn-small{
  padding: 10px 14px;
  font-size: 13px;
}

/* =========================================================
   Hero
   ========================================================= */
.hero{
  position: relative;
  overflow: hidden;
  padding: 56px 0 40px;
}

.hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to bottom, rgba(255,255,255,.82), rgba(255,255,255,.94)),
    url("hero-bg.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  filter: saturate(.95);
  z-index: 0;
}

.hero::after{
  content:"";
  position:absolute;
  inset:-40px;
  background:
    radial-gradient(60% 60% at 18% 50%, rgba(255,255,255,.72), transparent 62%),
    radial-gradient(60% 60% at 82% 50%, rgba(255,255,255,.74), transparent 62%);
  z-index: 0;
}

.hero-inner{
  position: relative;
  z-index: 1;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 38px;
  align-items:center;
}

.hero-copy{ max-width: 640px; }

.hero-kicker{
  margin: 0 0 10px;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(15,23,42,.55);
}

.hero-title{
  margin: 0 0 12px;
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.02;
  font-size: clamp(34px, 4vw, 58px);
}

.hero-title-script{
  display: inline-block;
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: 0;
  font-size: 1.5em;
  transform: translateY(6px);
  color: var(--accent);
}

.hero-subtitle{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  max-width: 56ch;
}

.hero-actions{
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.hero-bottom-fade{
  position:absolute;
  left:0; right:0; bottom:-1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.98));
  z-index: 1;
  pointer-events:none;
}

/* =========================================================
   Producto
   ========================================================= */
.hero-media{
  display:flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.product-card{
  position: relative;
  width: min(460px, 100%);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.product-image{
  width: 100%;
  height: auto;
  filter: drop-shadow(0 26px 48px rgba(0,0,0,.25));
}

.product-shadow{ display:none; }

.badge{
  position:absolute;
  top: -10px;     
  right: -10px;    
  width: 104px;   
  height: 104px;  
  border-radius: 999px;

  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;

  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 22px; /* antes: 20px */
  letter-spacing: -0.01em;
  line-height: 1.05;

  color: #fff;
  border: 3px solid rgba(255,255,255,.92);
  box-shadow: 0 18px 40px rgba(2,6,23,.18);
  z-index: 2;
}

.badge-green{ background: var(--gold); }

.product-thumbs{
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin-top: 18px;
  position: relative;
  z-index: 2;
}

.product-thumbs .thumb{
  appearance: none;
  border: 0;
  background: transparent;
  border-radius: 16px;
  padding: 10px;
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .18s ease;
}

.product-thumbs .thumb img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.18));
  transition: filter .18s ease;
}

.product-thumbs .thumb:hover,
.product-thumbs .thumb:focus-visible{
  transform: translateY(-3px) scale(1.06);
  outline: none;
}

.product-thumbs .thumb:hover img,
.product-thumbs .thumb:focus-visible img{
  filter: drop-shadow(0 14px 26px rgba(0,0,0,.25));
}

.product-thumbs .thumb.is-active img{
  filter: drop-shadow(0 16px 30px rgba(0,0,0,.28));
}

/* =========================================================
   Secciones
   ========================================================= */
.section{
  padding: 70px 0;
  background: #fff;
}

.section-muted{
  background: #f8fafc;
  border-top: 1px solid rgba(15,23,42,.06);
  border-bottom: 1px solid rgba(15,23,42,.06);
}

.section-title{
  margin: 0 0 12px;
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.section-lead{
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 70ch;
  margin-inline: auto;
  text-align: center;
}

/* =========================================================
   Descripción (feature)
   ========================================================= */
.section-feature .feature{
  display: grid;
  gap: 22px;
}

.feature-banner{
  margin: 0 auto 18px;
  width: 95%;
  max-width: 1200px;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.feature-banner img{
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  filter: none;
}

.feature-copy{
  max-width: 78ch;
  margin-inline: auto;
  text-align: center;
}

.feature-actions{
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================================================
   Detalles (cards)
   ========================================================= */
.section-head{
  text-align: center;
  margin-bottom: 18px;
}

.detail-strip{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.detail-card{
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow-1);
  transform: translateY(0);
  transition: transform .18s ease;
}

.detail-card img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: calc(var(--radius) - 6px);
  box-shadow: 0 14px 26px rgba(2,6,23,.10);
  transform: scale(1);
  transition: transform .22s ease, box-shadow .22s ease;
}

.detail-card h3{
  margin: 12px 0 4px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.detail-card p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.detail-card:hover{ transform: translateY(-2px); }
.detail-card:hover img{
  transform: scale(1.04);
  box-shadow: 0 18px 34px rgba(2,6,23,.14);
}

/* Tablet */
@media (max-width: 980px){
  .detail-strip{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Móvil: slider scroll-snap */
@media (max-width: 560px){
  .detail-strip{
    grid-template-columns: repeat(6, 82%);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    gap: 14px;
  }
  .detail-card{ scroll-snap-align: start; }
}

/* =========================================================
   Lightbox (ÚNICO) — sin caja alrededor
   ========================================================= */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(2,6,23,.72);
  backdrop-filter: blur(10px);
}

.lightbox[aria-hidden="false"]{ display: grid; }

#lightbox .lightbox-dialog{
  position: relative;
  width: min(1100px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 12px;

  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

#lightbox .lightbox-media{
  width: 100%;
  max-height: calc(100vh - 140px);
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  background: transparent;
  cursor: pointer;
}

/* X */
#lightbox .lightbox-close{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;

  appearance: none;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(2,6,23,.35);
  color: rgba(255,255,255,.92);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;

  backdrop-filter: blur(10px);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  z-index: 2;
}

#lightbox .lightbox-close:hover{
  background: rgba(2,6,23,.52);
  border-color: rgba(255,255,255,.22);
  transform: translateY(-1px);
}
#lightbox .lightbox-close:active{ transform: translateY(0); }

/* Flechas */
#lightbox .lightbox-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;

  appearance: none;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(2,6,23,.28);
  color: rgba(255,255,255,.92);

  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;

  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity .18s ease, background .18s ease, border-color .18s ease;
  z-index: 2;
}

#lightbox .lightbox-prev{ left: 14px; }
#lightbox .lightbox-next{ right: 14px; }

#lightbox .lightbox-nav:hover{
  background: rgba(2,6,23,.46);
  border-color: rgba(255,255,255,.22);
}

/* Desktop: aparecen al hover */
@media (hover:hover){
  #lightbox:hover .lightbox-nav{ opacity: 1; }
}

/* Móvil: siempre visibles */
@media (hover:none){
  #lightbox .lightbox-nav{ opacity: 1; }
}

/* Caption editorial (sin pastilla) */
#lightbox .lightbox-bar{
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 4px;
}

#lightbox .lightbox-title{
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;

  color: rgba(255,255,255,.90);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  text-shadow: 0 2px 10px rgba(0,0,0,.45);
}

#lightbox .lightbox-title:empty{ display:none; }

/* Focus accesible */
#lightbox button:focus-visible{
  outline: 2px solid rgba(255,255,255,.55);
  outline-offset: 2px;
}

/* =========================================================
   Galería
   ========================================================= */
.gallery{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.gallery-item{
  grid-column: span 3;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: var(--shadow-1);
  background: #fff;
}

.gallery-item--wide{ grid-column: span 6; }
.gallery-item--tall{ grid-column: span 3; }

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

.gallery-item--wide img{ height: 260px; }
.gallery-item--tall img{ height: 320px; }

.gallery-item figcaption{
  padding: 10px 12px;
  font-size: 13px;
  color: rgba(15,23,42,.60);
  font-weight: 750;
}

/* =========================================================
   CTA / Form
   ========================================================= */
.section-cta{
  background: #0b1220;
  color: #fff;
}

.cta-inner{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items:start;
}

.cta-title{
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.cta-text{
  margin: 0;
  color: rgba(255,255,255,.76);
  max-width: 56ch;
}

.cta-form{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 18px;
}

.field{
  display:flex;
  flex-direction:column;
  gap: 6px;
  margin-bottom: 12px;
}

.field--full{ grid-column: 1 / -1; }

.field label{
  font-size: 13px;
  font-weight: 800;
  color: rgba(255,255,255,.86);
}

.field input,
.field textarea{
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: 12px 12px;
  outline: none;
}

.field input::placeholder,
.field textarea::placeholder{ color: rgba(255,255,255,.55); }

.field input:focus,
.field textarea:focus{
  border-color: rgba(15, 42, 68, .55);
  box-shadow: 0 0 0 4px rgba(15, 42, 68, .16);
}

.form-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.form-note{
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,.60);
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer{
  background: #070c16;
  color: rgba(255,255,255,.70);
  padding: 26px 0;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy{
  margin: 0;
  font-weight: 650;
}

.footer-links{
  display:flex;
  gap: 14px;
}

.footer-links a{
  padding: 8px 10px;
  border-radius: 10px;
  transition: background .15s ease, color .15s ease;
}

.footer-links a:hover{
  background: rgba(255,255,255,.06);
  color: #fff;
}

/* =========================================================
   Responsive general
   ========================================================= */
@media (max-width: 1020px){
  .nav{ display:none; }

  .hero-inner{
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero-media{ order: 2; }
  .hero-copy{ order: 1; }

  .cta-inner{ grid-template-columns: 1fr; }

  .gallery-item{ grid-column: span 6; }
  .gallery-item--wide{ grid-column: span 12; }
  .gallery-item--tall{ grid-column: span 6; }
}

@media (max-width: 560px){
  .container{ width: min(var(--container), calc(100% - 28px)); }

  .hero{ padding: 40px 0 30px; }

  .badge{
    width: 80px;
    height: 80px;
    top: -14px;
    right: -14px;
    font-size: 14px;
  }

  .gallery-item{ grid-column: span 12; }
  .gallery-item img{ height: 240px; }
}
/* =========================================================
   Ficha técnica — card + filas con reveal
   ========================================================= */

.specs-card{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  overflow: hidden;
}

.specs-dl{
  margin: 0;
}

.specs-item{
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 18px;
  padding: 18px 22px;
  border-top: 1px solid rgba(15,23,42,.06);

  /* estado inicial para animación */
  opacity: 0;
  transform: translateY(10px);
}

.specs-item:first-child{ border-top: 0; }

.specs-item dt{
  margin: 0;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(15,23,42,.55);
  font-weight: 900;
}

.specs-item dd{
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.specs-item dd strong{
  font-weight: 900;
}

/* Hover sutil (desktop) */
@media (hover:hover){
  .specs-item:hover{
    background: rgba(248,250,252,.70);
  }
}

/* Reveal al entrar en pantalla */
.specs-card.is-visible .specs-item{
  animation: specsIn .55s ease forwards;
}

/* delays por fila */
.specs-card.is-visible .specs-item:nth-child(1){ animation-delay: .00s; }
.specs-card.is-visible .specs-item:nth-child(2){ animation-delay: .06s; }
.specs-card.is-visible .specs-item:nth-child(3){ animation-delay: .12s; }
.specs-card.is-visible .specs-item:nth-child(4){ animation-delay: .18s; }
.specs-card.is-visible .specs-item:nth-child(5){ animation-delay: .24s; }
.specs-card.is-visible .specs-item:nth-child(6){ animation-delay: .30s; }
.specs-card.is-visible .specs-item:nth-child(7){ animation-delay: .36s; }

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

/* Responsive: “tabla” apilada */
@media (max-width: 700px){
  .specs-item{
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 16px;
  }

  .specs-item dd{
    font-size: 15px;
  }
}
/* --- Ficha técnica: refinado + accesibilidad motion --- */
@media (prefers-reduced-motion: reduce){
  .specs-item{ opacity: 1; transform: none; }
  .specs-card.is-visible .specs-item{ animation: none; }
}

.specs-item dd{
  font-variant-numeric: tabular-nums; /* números más “pro” */
}

.specs-card{
  background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.66));
}
/* Container más ancho SOLO para esta sección */
.container--wide{
  max-width: 1320px;          /* súbelo si quieres (1440 etc.) */
}

/* =========================================================
   GALERÍA — carrusel (3 visibles) + modal
   ========================================================= */
.g-wrap{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 44px 1fr 44px;
  align-items:center;
  gap: 12px;
}

/* Botones */
.g-nav{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.92);
  font-size: 28px;
  line-height: 1;
  display:grid;
  place-items:center;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}
.g-nav:hover{ transform: translateY(-1px); background: rgba(255,255,255,.16); }
.g-nav:active{ transform: translateY(0); }
.g-nav[disabled]{ opacity: .35; cursor: default; transform:none; }

/* Viewport: padding para que NO corte sombras y para que el final no “parta” */
.g-viewport{
  overflow: hidden;
  border-radius: calc(var(--radius) + 10px);
  padding: 10px;                 /* clave: evita cortes */
}

/* Track con snap */
.g-track{
  display:flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.g-track::-webkit-scrollbar{ display:none; }

/* Tarjetas (look “Detalles” sobre azul) */
.g-card{
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 28px) / 3); /* 3 visibles */
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  box-shadow: var(--shadow-1);
  backdrop-filter: blur(8px);
}

.g-hit{
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor:pointer;
  display:block;
}

.g-card img{
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display:block;
  transition: transform .35s ease;
}
.g-hit:hover img{ transform: scale(1.03); }

.g-card figcaption{
  padding: 10px 12px;
  font-size: 13px;
  color: rgba(255,255,255,.82);
  font-weight: 750;
  background: rgba(2,6,23,.20);
}

/* Responsive: 2 visibles / 1 visible */
@media (max-width: 980px){
  .g-card{ flex-basis: calc((100% - 14px) / 2); }
}
@media (max-width: 560px){
  .g-card{ flex-basis: 100%; }
}

/* Modal */
.g-modal{
  border: 0;
  padding: 0;
  background: transparent;
}
.g-modal::backdrop{
  background: rgba(2,6,23,.72);
}
.g-modal__panel{
  width: min(1100px, calc(100vw - 32px)); /* un poco más grande */
  margin: 8vh auto 0;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
  position: relative;
}
.g-title{
  margin: 0;
  padding: 14px 16px 10px;
  font-weight: 900;
  color: rgba(255,255,255,.92);
  letter-spacing: .02em;
}
.g-full{
  width: 100%;
  height: auto;
  display:block;
  background: rgba(255,255,255,.06);
}
.g-close{
  position: absolute;
  top: 10px;
  right: 10px;

  width: 40px;
  height: 40px;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);

  display: grid;          /* <-- clave */
  place-items: center;    /* <-- clave */

  line-height: 1;         /* evita que se desplace */
  padding: 0;             /* por si algún reset mete padding */
  font-size: 26px;

  cursor: pointer;
}

.g-close:hover{ background: rgba(255,255,255,.18); }

@media (prefers-reduced-motion: reduce){
  .g-track{ scroll-behavior: auto; }
  .g-card img{ transition: none; }
}
/* separación SOLO en esta zona */
.feature-actions{
  margin-top: 40px;
  display:flex;
  justify-content:center;
}

/* tamaño SOLO de este botón */
.feature-actions .btn-buy{
  min-width: 200px;
  padding: 14px 26px;
}

