@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@600;700&family=Inter:wght@400;500;600&display=swap');



*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red: #c0392b;
  --red-bright: #e74c3c;
  --red-dark: #8b0000;
  --gold: #d4a843;
  --bg-page: #080808;
  --bg-card: #0f0f0f;
  --bg-card3: #1a1a1a;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --text-primary: #f5f5f5;
  --text-secondary: #999;
  --text-muted: #555;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --side: 20px;
  --max: 640px;
}

html {
  background: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* prevent horizontal scroll on mobile */
  overflow-x: hidden;
}

body {
  background: var(--bg-page);
  padding: 28px 0 0;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}




.up-page {
  flex: 1;
  width: 100%;
  padding-bottom: 48px;
}


.up-wrap,
.up-bar-wrap,
.up-label,
.up-alert,
.up-divider,
.up-offer-section,
.up-list,
.up-price-box,
.up-guarantee {
  width: 100%;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--side);
  padding-right: var(--side);
}

.up-bar-wrap,
.up-price-box,
.up-guarantee {
  padding-left: var(--side);
  padding-right: var(--side);
}



.up-wrap {
  text-align: center;
  padding-bottom: 0;
}

.up-icon {
  width: 64px;
  height: 64px;
  background: radial-gradient(circle at 40% 30%, #e74c3c, #8b0000);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 28px rgba(192,57,43,0.4), 0 0 0 1px rgba(231,76,60,0.2);
  animation: upulse 2s ease-in-out infinite;
}

.up-icon span {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  font-family: var(--font-display);
}

.up-h1 {
  font-family: var(--font-display);
  font-size: clamp(22px, 7vw, 38px);
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.2;
  margin-bottom: 14px;
  word-break: break-word;
}

.up-h1 span { color: var(--red-bright); }

.up-sub {
  font-size: clamp(13px, 3.8vw, 15px);
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ===========================
   PROGRESS BAR
=========================== */

.up-bar-wrap{

    background:var(--bg-card3);

    border-radius:999px;

    height:20px;

    margin-top:24px;
    margin-bottom:10px;

    overflow:hidden;

    border:1px solid var(--border-subtle);

    padding:0;

    box-sizing:border-box;

}

.up-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-bright));
  border-radius: 100px;
  animation: uload 3s ease-out forwards;
  position: relative;
  overflow: hidden;
}

.up-bar-fill::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: ushine 1.8s ease-in-out infinite 3.2s;
}

.up-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-top: 4px;
}

.up-proc {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.up-pct {
  font-size: 11px;
  color: var(--red-bright);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: upctshine 2s ease-in-out infinite;
}



.up-alert {
  background: linear-gradient(135deg, #100000, #1a0505);
  border: 1px solid rgba(192,57,43,0.35);
  border-left: 3px solid var(--red);
  border-radius: 10px;
  padding: 18px 18px;
  display: flex;
  gap: 12px;
  text-align: left;
}

.up-alert-icon {
  width: 22px; height: 22px; min-width: 22px;
  background: var(--red);
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.up-alert p {
  font-size: clamp(13px, 3.5vw, 14px);
  color: #bbb;
  line-height: 1.75;
  margin: 0;
}

.up-alert strong { color: var(--red-bright); font-weight: 600; }
.upw { color: var(--text-primary); font-weight: 600; }



.up-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192,57,43,0.3), transparent);
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 0;
}



.up-offer-section {
  text-align: center;
  margin-bottom: 28px;
}

.up-offer-tag {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 4px;
  margin-bottom: 18px;
  font-family: var(--font-body);
  /* wrap gracefully on tiny screens */
  word-break: break-word;
  white-space: normal;
  max-width: 100%;
}

.up-offer-h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 7vw, 40px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  word-break: break-word;
}

.up-offer-h2 span { color: var(--red-bright); }

.up-offer-sub {
  font-size: clamp(13px, 3.8vw, 15px);
  color: var(--text-secondary);
  line-height: 1.75;
}

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


.mockup-container {
    position: relative;
    display: block;      
    margin: 0 auto;      
    overflow: hidden;
    border-radius: 8px;
    max-width: 350px;    
    width: 100%;      
}


.mockup-flotante {
    display: block;
    width: 100%;   
    height: auto;  
    animation: flotar 3s ease-in-out infinite;
}


.mockup-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.6) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: brillar 4s infinite ease-in-out;
}

/* --- ANIMACIONES (KEYFRAMES) --- */

/* 1. Movimiento flotante */
@keyframes flotar {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px); /* Reduje el balanceo a 10px para que vaya acorde al tamaño menor */
    }
    100% {
        transform: translateY(0px);
    }
}

/* 2. Movimiento del destello de luz */
@keyframes brillar {
    0% {
        left: -150%;
    }
    30% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}
/* ===========================
   LIST
=========================== */

.up-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.up-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  text-align: left;
  transition: border-color 0.25s, background 0.25s;
  position: relative;
  overflow: hidden;
}

.up-list li::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--red);
  opacity: 0;
  transition: opacity 0.25s;
}

.up-list li:hover { border-color: rgba(192,57,43,0.4); background: #130808; }
.up-list li:hover::before { opacity: 1; }

.up-check {
  width: 24px; height: 24px; min-width: 24px;
  background: linear-gradient(135deg, #a93226, var(--red));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
  box-shadow: 0 2px 8px rgba(192,57,43,0.3);
}

.up-list-title {
  font-size: clamp(13px, 3.5vw, 14px);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 3px;
  line-height: 1.3;
}

.up-list-sub {
  font-size: clamp(12px, 3.2vw, 13px);
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ===========================
   PRICE BOX  — matches screenshot exactly
=========================== */

.up-price-box {
  padding: 32px 24px;
  background: linear-gradient(160deg, #100a0a, #0d0d0d);
  border: 1px solid rgba(192,57,43,0.4);
  border-radius: 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
}

.up-price-box::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 120px;
  background: radial-gradient(ellipse, rgba(192,57,43,0.12), transparent 70%);
  pointer-events: none;
}

.up-price-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 10px;
  font-weight: 500;
}

.up-price-old {
  font-size: 18px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 6px;
  font-weight: 400;
}

/* Price number exactly like the screenshot: big red, no pseudo-element prefix */
.up-price-new {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(54px, 16vw, 80px);
  font-weight: 700;
  color: var(--red-bright);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 6px;
}

.up-price-note {
  font-size: clamp(12px, 3.2vw, 13px);
  color: var(--text-muted);
  margin-top: 12px;
  letter-spacing: 0.3px;
}

/* ===========================
   GUARANTEE
=========================== */

.up-guarantee {
  padding: 18px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  margin-bottom: 0;
}

.up-guarantee-icon { font-size: 30px; flex-shrink: 0; }

.up-guarantee-title {
  font-size: clamp(13px, 3.5vw, 14px);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.up-guarantee-sub {
  font-size: clamp(12px, 3.2vw, 13px);
  color: var(--text-secondary);
  line-height: 1.55;
}

  .mm-funnel-wrap {
  width: calc(100% - (var(--side) * 2));
  max-width: var(--max);
  margin: 0 auto 48px;
  background: linear-gradient(160deg, #100a0a, #0d0d0d);
  border: 1px solid rgba(192, 57, 43, 0.4);
  border-radius: 14px;
  padding: 32px 24px;
  box-sizing: border-box;
  animation: funnel-glow 2.5s ease-in-out infinite;
}

@keyframes funnel-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(192,57,43,0.08); }
  50%       { box-shadow: 0 0 40px rgba(192,57,43,0.18); }
}

/* ===========================
   FOOTER
=========================== */

.up-footer {
  background: #000;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  padding: 20px var(--side);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  font-family: var(--font-body);
}

/* ===========================
   ANIMATIONS
=========================== */

@keyframes upulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 0 24px rgba(192,57,43,0.35), 0 0 0 1px rgba(231,76,60,0.15); }
  50%       { transform: scale(1.07); box-shadow: 0 0 42px rgba(192,57,43,0.55), 0 0 0 1px rgba(231,76,60,0.3); }
}

@keyframes uload {
  0%   { width: 0%; }
  100% { width: 50%; }
}

@keyframes ushine {
  0%   { left: -100%; }
  100% { left: 200%; }
}

@keyframes upctshine {
  0%, 100% { color: var(--red); }
  50%       { color: var(--red-bright); }
}

/* ===========================
   MOBILE — 390px (iPhone 14)
=========================== */

@media (max-width: 430px) {
  :root { --side: 16px; }

  body { padding-top: 20px; }

  .up-icon { width: 56px; height: 56px; }
  .up-icon span { font-size: 24px; }

  .up-h1 { letter-spacing: 0.5px; }

  .up-bar-wrap { height: 18px; }

  .up-offer-tag { letter-spacing: 1.5px; font-size: 9px; }

  .up-list li { padding: 12px 14px; gap: 10px; }

  .up-price-box { padding: 26px 18px; }

  .up-guarantee { padding: 16px 14px; gap: 12px; }
  .up-guarantee-icon { font-size: 26px; }
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

.up-bar-wrap {
  width: calc(100% - (var(--side) * 2));
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  box-sizing: border-box;
}

.up-alert {
  box-sizing: border-box;
  width: calc(100% - (var(--side) * 2));
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.up-price-box {
  box-sizing: border-box;
  width: calc(100% - (var(--side) * 2));
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.up-guarantee {
  box-sizing: border-box;
  width: calc(100% - (var(--side) * 2));
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

/* Very small screens 320px */
@media (max-width: 340px) {
  :root { --side: 12px; }
  .up-offer-tag { font-size: 8px; letter-spacing: 1px; }
  .up-price-new { font-size: 48px; }
}