@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Inter:wght@400;600&display=swap');

:root {
  --WAVES_IMG: "/assets/images/waves-bg-1280x720.png";
  --red-left: #b30019;
  --pink-mid: #ff4a8d;
  --magenta: #ff6fa0;
  --purple-right: #7a0cff;
  --deep-purple: #4b08c9;
  --card-bg: rgba(255, 255, 255, 0.08);
  --input-bg: rgba(255, 255, 255, 0.15);
  --btn-bg: #c2185b;
  --btn-bg-hover: #d81b60;
  --radius: 12px;
  --shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  --transition: all 0.3s ease;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

body {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-image: 
    /* Fondo base oscuro medieval */
    linear-gradient(to bottom, 
      rgba(18, 18, 18, 1) 0%, 
      rgba(28, 24, 20, 1) 30%, 
      rgba(40, 32, 25, 1) 50%, 
      rgba(28, 24, 20, 1) 70%, 
      rgba(18, 18, 18, 1) 100%
    ),

    /* Dorado central horizontal */
    linear-gradient(to right, 
      rgba(255, 215, 0, 0.0) 25%, 
      rgba(255, 215, 0, 0.65) 50%, 
      rgba(255, 215, 0, 0.0) 75%
    ),

    /* Dorado desde la izquierda */
    linear-gradient(to right, 
      rgba(255, 215, 0, 0.35) 0%, 
      rgba(0, 0, 0, 0) 30%
    ),

    /* Dorado desde la derecha */
    linear-gradient(to left, 
      rgba(255, 215, 0, 0.35) 0%, 
      rgba(0, 0, 0, 0) 30%
    ),

    /* Toque cálido rojizo difuso */
    linear-gradient(to top, 
      rgba(0, 0, 0, 0.15) 0%, 
      rgba(160, 60, 30, 0.25) 40%, 
      rgba(0, 0, 0, 0.05) 100%
    );

  background-blend-mode: overlay;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  color: #fff;
  font-family: 'Inter', sans-serif;
}


/*   ESTE CSS ES DE COLOR ROJO A MORADO
body {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-image: 
    radial-gradient(circle at 10% 20%, rgba(255,50,70,1) 0%, rgba(255,50,70,0.8) 25%, rgba(255,50,70,0) 45%),
    radial-gradient(circle at 90% 80%, rgba(110,0,255,0.9) 0%, rgba(110,0,255,0.6) 25%, rgba(110,0,255,0) 45%),
    linear-gradient(135deg, rgba(255,30,80,1) 0%, rgba(180,0,220,0.9) 50%, rgba(60,20,200,1) 100%);
  
  background-repeat: no-repeat;
  background-attachment: fixed;
}
*/

/* Capa de ondas */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url(var(--WAVES_IMG)) no-repeat left top / 120% auto;
  opacity: 0.94;
  mix-blend-mode: overlay;
  filter: saturate(1.06) contrast(1.02);
  z-index: 0;
  pointer-events: none;
}

.container {
  position: relative;
  z-index: 2;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border-radius: 15px;
  padding: 2rem 1rem;
  width: 320px;
  box-shadow: var(--shadow);
}

.logo img {
  width: 84px;
  height: 110px;
 
}

.yapeimg{
    width: 100%;
}

h1 {
  font-size: 14px;
  margin: 5px 0;
}

.lead {
  font-size: 14px;
  margin-bottom: 20px;
}

.socials a {
  margin: 0 8px;
  font-size: 20px;
  text-decoration: none;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 15px 0;
}

.btn {
  padding: 10px 20px;
  background: #ff4081;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.products {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 17px 0;
}

.product-card {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px;
  gap: 10px;
  text-align: center;
}

.product-img {
  width: 100px;
  height: 120px;
  background: #ccc;
  border-radius: 8px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  flex: 1;
  text-align: left;
}

.product-info h3 {
  margin: 0;
  font-size: 16px;
}

.product-info p {
  font-size: 12px;
  margin: 5px 0 10px;
}

.buy-btn {
  width: 100%;
  padding: 8px;
  background: linear-gradient(90deg, #ff4081, #ff6ab7);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.submit-btn {
  padding: 10px;
  background: #ff4081;
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

small {
  display: block;
  margin-top: 10px;
  font-size: 12px;
}

.top-buttons {
  position: absolute;
  top: 40px;
  left: 15px;
  right: 15px;
  display: flex;
  justify-content: space-between;
  z-index: 10;
}

.subscribe-btn,
.share-btn {
  background: white;
  border: none;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.subscribe-btn:hover,
.share-btn:hover {
  background: #f1f1f1;
}

.social-big {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.social-big2 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0;
}

.text{
    font-size: 12px;
}

.big-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s;
}

.big-btn .icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  line-height: 1;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.big-btn .text {
  pointer-events: none;
  text-align: center;
  width: 100%;
}

.big-btn.instagram {
  background: rgba(28,28,28,0.88);
}
.big-btn.tiktok {
  background: rgba(28,28,28,0.88);
}

.big-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.28);
  opacity: 0.98;
}

.oferta-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.oferta {
  background-color: #e60000;
  color: #fff;
  font-weight: bold;
  padding: 3px 4px;
  border-radius: 6px;
  font-size: 12px;
  display: inline-block;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2); /* sombra ligera */
}
 
.timer {
  background-color: #000;
  color: #fff;
  font-weight: bold;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 13px;
}
