/* =========================================================
   DUSTON GEL BOLIVIA
   Autor: socio & ChatGPT
   Descripción: Estilos principales del sitio
   ========================================================= */

/* ===============================
   VARIABLES DE COLOR Y BASE
================================== */
:root {
  --celeste: #46ccbf;       /* Color principal del usuario */
  --azul-oscuro: #2b333e;   /* Color plomizo oscuro */
  --fondo: #f6fbfd;         /* Fondo claro */
  --white: #ffffff;
  --accent: #00aef0;        /* Azul complementario */
  --max-width: 1100px;
  --radius: 14px;
  --shadow: 0 8px 30px rgba(43, 51, 62, 0.12);
}

/* ===============================
   RESETEO Y BASE TIPOGRÁFICA
================================== */
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  background: linear-gradient(180deg, var(--fondo), #ffffff);
  color: var(--azul-oscuro);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
}

/* ===============================
   CONTENEDOR GLOBAL
================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px;
}

/* ===============================
   HEADER Y NAVEGACIÓN
================================== */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--celeste), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}

.brand h1 {
  font-size: 18px;
  margin: 0;
}

nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

nav a {
  color: var(--azul-oscuro);
  text-decoration: none;
  font-weight: 600;
}

/* ===============================
   SECCIÓN HERO
================================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: center;
  padding: 38px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(70, 204, 191, 0.08), rgba(0, 174, 240, 0.02));
  box-shadow: var(--shadow);
}

.hero-left h2 {
  font-size: 28px;
  margin: 0 0 12px;
}

.hero-left p {
  margin: 0 0 20px;
  color: #1f2a32;
}

.cta-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* ===============================
   BOTONES
================================== */
.btn-primary {
  background: var(--azul-oscuro);
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: var(--celeste);
  color: var(--azul-oscuro);
}

.btn-outline {
  border: 2px solid var(--celeste);
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--celeste);
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.btn-outline:hover {
  background: var(--celeste);
  color: #fff;
}

/* ===============================
   TARJETAS Y ELEMENTOS BÁSICOS
================================== */
.badge {
  background: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(43, 51, 62, 0.06);
  font-weight: 600;
}

.card {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(16, 24, 32, 0.06);
  border: 1px solid rgba(16, 24, 32, 0.02);
}

.card h4 {
  margin: 0 0 8px;
}

.card p {
  margin: 0;
  color: #4b5962;
}

/* ===============================
   GRID GENERAL
================================== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

/* ===============================
   IMAGEN DEL PRODUCTO
================================== */
.tube {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tube img {
  max-width: 320px;
  width: 100%;
  transform: translateY(0) rotate(-6deg);
  filter: drop-shadow(0 18px 40px rgba(43, 51, 62, 0.12));
}

/* ===============================
   SECCIÓN “CÓMO FUNCIONA”
================================== */
.how {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 30px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: center;
}

.step .dot {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--celeste), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}

/* ===============================
   INGREDIENTES
================================== */
.ingredients {
  margin-top: 28px;
  display: flex;
  gap: 18px;
  align-items: center;
}

.ing-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ing-item {
  background: #fff;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(16, 24, 32, 0.03);
}


/* ===============================
   SECCIÓN COMPRA
================================== */
.purchase {
  margin-top: 24px;
  padding: 18px;
  background: linear-gradient(90deg, rgba(70, 204, 191, 0.06), rgba(0, 174, 240, 0.02));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-size: 20px;
  font-weight: 800;
  color: var(--azul-oscuro);
}

/* ===============================
   BOTÓN CENTRAL (CALL TO ACTION)
================================== */
.boton-centro {
  text-align: center;
  margin: 40px 0;
}

.btn-erasmin {
  display: inline-block;
  background-color: var(--azul-oscuro);
  color: white;
  padding: 14px 26px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  transition: 0.3s;
}

.btn-erasmin:hover {
  background-color: var(--celeste);
  color: var(--azul-oscuro);
}

/* ===============================
   FOOTER
================================== */
footer {
  margin-top: 40px;
  padding: 18px 0;
  color: #6b7a82;
  font-size: 14px;
}

/* ===============================
   RESPONSIVE
================================== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  nav {
    display: none;
  }

  .container {
    padding: 18px;
  }
}

/* ===============================
   PRODUCTOS CON BOTONES
================================== */
/* contenedor principal — esto era lo que nombraste en tu CSS pero no estaba en el HTML */
.producto-full {
  width: 100%;
  max-width: 920px; /* ancho máximo de la columna central */
  margin: 0 auto;
  padding: 40px 16px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

/* cada tarjeta */
.producto-contenedor {
  width: 100%;
  max-width: 650px;            /* controla el ancho visual en móvil/desktop */
  background: linear-gradient(135deg, var(--celeste) 0%, rgba(43,51,62,0.06) 60%); /* opcional */
  border-radius: 16px;
  overflow: hidden;            /* importante: evita huecos por elementos internos */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px;
  box-shadow: 0 8px 30px rgba(43,51,62,0.12);
}

/* imagen: que ocupe todo el ancho del recuadro sin dejar espacio */
.producto-imagen {
  width: 100%;
  display: block;     /* evita espacios en línea por imagenes */
  height: auto;
  object-fit: cover;  /* cover si querés recortar, contain si querés ver toda la imagen */
  border-radius: 12px;
  background: transparent; /* si tu imagen tiene fondo blanco, cambialo aquí */
}

/* botón */
.btn-erasmin {
  margin-top: 14px;
  display: inline-block;
  text-decoration: none;
  background: var(--plomizo);
  color: var(--blanco);
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
}

/* móvil */
@media (max-width:700px) {
  .producto-full { gap: 18px; padding: 24px 12px; }
  .producto-contenedor { padding: 14px; }
  .producto-imagen { border-radius: 10px; }
  .btn-erasmin { width: 85%; text-align: center; }
}
  

  .producto-imagen {
    width: 90%;
    border-radius: 12px;
  }

  .btn-erasmin {
    width: 80%;
    max-width: 360px;
  }


:root {
  --celeste: #46ccbf;
  --plomizo: #2b333e;
  --blanco: #ffffff;
  --radio: 12px;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}

.promo-timer {
  max-width: 680px;
  margin: 2rem auto;
  background: linear-gradient(180deg, rgba(70,204,191,0.05), rgba(43,51,62,0.02));
  border: 1px solid rgba(43,51,62,0.06);
  border-radius: var(--radio);
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 14px;
  align-items: center;
  color: var(--plomizo);
  box-shadow: 0 10px 30px rgba(11,14,18,0.08);
}

.promo-info {
  padding: 6px 12px;
}

.promo-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.promo-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.promo-sub {
  font-size: 13px;
  color: #69727a;
  margin: 4px 0 12px 0;
}

.price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.price .now {
  background: var(--celeste);
  color: var(--blanco);
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 16px;
  box-shadow: 0 6px 18px rgba(70,204,191,0.13);
}

.price .old {
  color: #9aa3a9;
  text-decoration: line-through;
  font-weight: 600;
  font-size: 14px;
}

.countdown-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.clock {
  background: var(--blanco);
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 0 6px 18px rgba(11,14,18,0.04);
  min-width: 120px;
  text-align: center;
}

.time {
  font-size: 22px;
  font-weight: 700;
  color: var(--plomizo);
  letter-spacing: 0.6px;
}

.label-small {
  font-size: 12px;
  color: #7b888f;
}

.progress-wrap {
  flex: 1;
}

.progress {
  height: 10px;
  width: 100%;
  background: rgba(43,51,62,0.06);
  border-radius: 8px;
  overflow: hidden;
}

.progress > i {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--celeste), rgba(70,204,191,0.8));
  transform-origin: left center;
  transition: width 0.5s linear;
}

.hint {
  font-size: 12px;
  color: #69727a;
  margin-top: 8px;
}

.promo-cta {
  background: linear-gradient(180deg, var(--blanco), rgba(70,204,191,0.02));
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  border: 1px solid rgba(43,51,62,0.04);
}

.big-price {
  font-weight: 800;
  font-size: 28px;
  color: var(--plomizo);
  margin: 6px 0 4px 0;
}

.save {
  font-size: 13px;
  color: #2b8d80;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}

.cta-btn {
  display: inline-block;
  text-decoration: none;
  background: var(--plomizo);
  color: var(--blanco);
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(43,51,62,0.12);
  transition: transform .12s ease, box-shadow .12s ease;
  margin-top: 6px;
}

.cta-btn:active {
  transform: translateY(1px);
  box-shadow: 0 6px 18px rgba(43,51,62,0.08);
}

.small-note {
  font-size: 12px;
  color: #7b888f;
  margin-top: 10px;
}

@media (max-width:720px){
  .promo-timer {
    grid-template-columns: 1fr;
    padding: 14px;
  }
  .promo-cta {
    order: 3;
    margin-top: 6px;
  }
}

:root{
  --celeste: #46ccbf;
  --plomizo: #2b333e;
  --blanco: #ffffff;
  --radio: 12px;
}

/* ===== Global ===== */
body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: var(--plomizo);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* ================== TEMPORIZADOR ================== */
.promo-timer {
  max-width: 680px;
  margin: 2rem auto;
  background: linear-gradient(180deg, rgba(70,204,191,0.05), rgba(43,51,62,0.02));
  border: 1px solid rgba(43,51,62,0.06);
  border-radius: var(--radio);
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 14px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(11,14,18,0.08);
}

.promo-info { padding:6px 12px; }

.promo-head { display:flex; justify-content:space-between; gap:12px; align-items:center; }
.promo-title { font-size:16px; font-weight:700; margin:0; color:var(--plomizo); }
.label-small { font-size:13px; color:#69727a; }

.promo-sub { font-size:13px; color:#69727a; margin:4px 0 12px 0; }

.price { display:flex; gap:10px; align-items:center; margin-bottom:12px; }
.price .now { background:var(--celeste); color:var(--blanco); padding:6px 12px; border-radius:8px; font-weight:700; box-shadow:0 6px 18px rgba(70,204,191,0.13); }
.price .old { color:#9aa3a9; text-decoration:line-through; font-weight:600; }

.countdown-row { display:flex; gap:14px; align-items:center; }
.clock { background:var(--blanco); border-radius:10px; padding:10px 14px; min-width:120px; text-align:center; box-shadow: 0 6px 18px rgba(11,14,18,0.04); }
.time { font-size:22px; font-weight:700; color:var(--plomizo); letter-spacing:0.6px; }
.progress-wrap { flex:1; min-width:0; }
.progress { height:10px; width:100%; background: rgba(43,51,62,0.06); border-radius:8px; overflow:hidden; }
.progress > i { display:block; height:100%; width:100%; background: linear-gradient(90deg, var(--celeste), rgba(70,204,191,0.8)); transform-origin:left center; transition: width 0.5s linear; }
.hint { font-size:12px; color:#69727a; margin-top:8px; }

.promo-cta { background: linear-gradient(180deg, var(--blanco), rgba(70,204,191,0.02)); padding:12px; border-radius:10px; text-align:center; border:1px solid rgba(43,51,62,0.04); }
.big-price { font-size:28px; font-weight:800; color:var(--plomizo); margin:6px 0 4px 0; }
.save { font-size:13px; color:#2b8d80; font-weight:700; display:block; margin-bottom:10px; }
.cta-btn { background:var(--plomizo); color:var(--blanco); padding:12px 18px; border-radius:10px; font-weight:700; text-decoration:none; display:inline-block; box-shadow:0 10px 24px rgba(43,51,62,0.12); }
.small-note { font-size:12px; color:#7b888f; margin-top:10px; }

/* Responsive temporizador */
@media (max-width:720px){
  .promo-timer { grid-template-columns: 1fr; padding:14px; }
  .promo-cta { order:3; margin-top:6px; }
  .time { font-size:20px; }
}

:root{
  --bg: #ffffff;
  --text: #2b333e;
  --accent: #46ccbf;
  --card-radius: 12px;
}

/* --- RESET LOCAL PARA LA SECCION DE TESTIMONIOS (pegar al final del CSS) --- */
#testimonios-debug { font-family: 'Montserrat', sans-serif !important; font-size:16px !important; line-height:1.45 !important; color: #2b333e !important; }

/* Forzar que los elementos dentro no hereden tamaños raros */
#testimonios-debug * { font-size: inherit !important; line-height: inherit !important; box-sizing: border-box !important; }

/* Tarjetas responsivas y controladas */
#testimonios-debug .card { max-width: 100% !important; width:100% !important; padding:14px !important; border-radius:12px !important; }

/* Evitar transform/scale aplicados desde fuera */
#testimonios-debug { transform: none !important; zoom: 1 !important; }

/* Si el texto sigue gigante, forzamos tamaño específico en párrafos */
#testimonios-debug .texto { font-size: 15px !important; }
#testimonios-debug .autor { font-size: 13px !important; color: var(--celeste) !important; }

/* Mostrar siempre (si hay display:none aplicado desde fuera) */
#testimonios-debug, #testimonios-debug * { display: unset !important; visibility: visible !important; }


/* ======= TESTIMONIOS EN PILA (namespace: stack-) ======= */
:root{
  --s-celeste: #46ccbf;
  --s-plomizo: #2b333e;
  --s-blanco: #ffffff;
}

/* Contenedor */
#stack-testimonials { background: var(--s-celeste); color: var(--s-plomizo); padding: 28px 16px; font-family: 'Montserrat', sans-serif; }
.stack-wrap { max-width: 720px; margin: 0 auto; }

/* Título */
.stack-title { color: var(--s-blanco); font-weight: 700; font-size: 1.4rem; margin: 0 0 16px; text-align:center; }

/* Tarjeta (pila) */
.stack-card {
  background: var(--s-blanco);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 14px;
  box-shadow: 0 6px 18px rgba(11,18,28,0.12);
  display: block;
  text-align: left;
  transition: transform .18s ease, box-shadow .18s ease;
  outline: none;
}

/* Hover / Focus para interacción */
.stack-card:hover, .stack-card:focus {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(11,18,28,0.16);
}

/* Header: logo + avatar */
.stack-head { display:flex; justify-content:space-between; align-items:center; margin-bottom:10px; gap:8px; }
.stack-logo { width: 24px; height: 24px; object-fit:contain; opacity:.95; }
.stack-avatar { width: 48px; height: 48px; border-radius:50%; object-fit:cover; }

/* Texto y autor */
.stack-text { margin: 0 0 10px; font-size: 1rem; line-height: 1.45; color: var(--s-plomizo); }
.stack-author { margin: 0; font-weight:600; color: var(--s-celeste); font-size: 0.92rem; }

/* Ajustes móviles */
@media (max-width: 480px) {
  #stack-testimonials { padding: 22px 12px; }
  .stack-wrap { max-width: 420px; }
  .stack-card { padding: 14px; border-radius: 10px; }
  .stack-avatar { width:44px; height:44px; }
  .stack-title { font-size: 1.2rem; }
}











