/* ============================================
   PROTOCOLO DE 7 DIAS — style.css
   ============================================ */

:root {
  --crimson: #C0183A;
  --crimson-dark: #8B0E27;
  --crimson-light: #E8254E;
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --cream: #FDF6EC;
  --dark: #0D0507;
  --dark2: #1A080D;
  --text: #2A1018;
  --muted: #7A5060;
  --white: #FFFFFF;
}

/* ── RESET & BASE ─────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
img { max-width: 100%; display: block; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── NOISE TEXTURE ────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: .35;
}

/* ── URGENCY BAR ──────────────────────────── */
.urgency-bar {
  background: var(--crimson);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  animation: pulse-bar 2s ease-in-out infinite;
  position: relative;
  z-index: 10;
}
.urgency-bar span { color: var(--gold-light); }
@keyframes pulse-bar {
  0%,100% { background: var(--crimson); }
  50% { background: var(--crimson-dark); }
}

/* ── HERO ─────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  overflow: hidden;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(192,24,58,.45) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(139,14,39,.3) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 60%, rgba(212,175,55,.08) 0%, transparent 50%);
  z-index: -1;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 2px;
  margin-bottom: 28px;
  animation: fadeDown .7s ease both;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  max-width: 900px;
  margin: 0 auto 24px;
  animation: fadeDown .8s .1s ease both;
}

.hero h1 em {
  font-style: italic;
  color: var(--crimson-light);
  display: block;
}

.hero h1 .gold { color: var(--gold); }

.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.2rem);
  color: rgba(253,246,236,.75);
  max-width: 680px;
  line-height: 1.7;
  margin: 0 auto 40px;
  font-family: 'Lora', serif;
  font-style: italic;
  animation: fadeDown .9s .2s ease both;
}

/* ── VSL ──────────────────────────────────── */
.vsl-wrapper {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto 48px;
  animation: fadeUp 1s .35s ease both;
}

.vsl-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 0 0 3px var(--crimson),
    0 0 60px rgba(192,24,58,.6),
    0 30px 80px rgba(0,0,0,.7);
}

.vsl-frame iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.vsl-label {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--crimson);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 2px;
  white-space: nowrap;
  z-index: 5;
}

.vsl-note {
  text-align: center;
  font-size: 12px;
  color: rgba(253,246,236,.5);
  margin-top: 14px;
  letter-spacing: .04em;
}

/* ── CTA PRIMARY ──────────────────────────── */
.cta-primary {
  display: inline-block;
  background: linear-gradient(135deg, #E8254E 0%, #C0183A 60%, #8B0E27 100%);
  color: #fff;
  font-size: clamp(.95rem, 2vw, 1.15rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 22px 56px;
  border-radius: 3px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(192,24,58,.6), 0 2px 0 rgba(255,255,255,.15) inset;
  transition: transform .2s, box-shadow .2s;
  animation: fadeUp .9s .5s ease both;
  border: none;
  cursor: pointer;
}

.cta-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(255,255,255,.18);
  transform: skewX(-20deg);
  animation: shine 3s 1.5s ease infinite;
}

@keyframes shine {
  0% { left: -60%; }
  100% { left: 160%; }
}

.cta-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 60px rgba(192,24,58,.8), 0 2px 0 rgba(255,255,255,.15) inset;
}

.cta-guarantee {
  display: block;
  font-size: 11px;
  color: rgba(253,246,236,.5);
  letter-spacing: .04em;
  margin-top: 12px;
  text-align: center;
  animation: fadeUp .9s .6s ease both;
}

/* ── DIVIDER ──────────────────────────────── */
.divider {
  width: 100%;
  max-width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 64px auto;
}

/* ── SECTION ──────────────────────────────── */
.section {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  max-width: 960px;
  margin: 0 auto;
}
.inner-section { padding: 0; }

.section-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  text-align: center;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 900;
  text-align: center;
  line-height: 1.15;
  margin-bottom: 48px;
}

.section-title .red { color: var(--crimson-light); }

/* ── PAIN GRID ────────────────────────────── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}

.pain-card {
  background: linear-gradient(135deg, rgba(192,24,58,.1), rgba(139,14,39,.05));
  border: 1px solid rgba(192,24,58,.25);
  border-radius: 4px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
  opacity: 0;
}

.pain-card.visible {
  animation: fadeUp .6s ease forwards;
}

.pain-card:hover {
  border-color: rgba(192,24,58,.6);
  transform: translateY(-4px);
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--crimson);
}

.pain-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.pain-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--cream); }
.pain-card p { font-size: .9rem; line-height: 1.6; color: rgba(253,246,236,.65); }

/* ── DARK BAND ────────────────────────────── */
.dark-band {
  background: linear-gradient(135deg, var(--dark2), #200A10);
  border-top: 1px solid rgba(192,24,58,.2);
  border-bottom: 1px solid rgba(192,24,58,.2);
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}
.dark-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(192,24,58,.15), transparent 70%);
  pointer-events: none;
}

/* ── STEPS ────────────────────────────────── */
.steps { max-width: 720px; margin: 0 auto; }

.step {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  align-items: flex-start;
  opacity: 0;
}
.step.visible { animation: fadeUp .6s ease forwards; }

.step-num {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(192,24,58,.5);
  position: relative;
}

.step-num::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(192,24,58,.4);
}

.step-content h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; color: var(--cream); }
.step-content p { font-size: .9rem; line-height: 1.65; color: rgba(253,246,236,.65); }

.step-day {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.25);
  padding: 2px 10px;
  border-radius: 2px;
  margin-bottom: 8px;
}

/* ── BIG QUOTE ────────────────────────────── */
.big-quote {
  text-align: center;
  padding: 80px 24px;
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.big-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--cream);
}

.big-quote blockquote span { color: var(--crimson-light); }

/* ── TESTIMONIALS ─────────────────────────── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.testimonial {
  background: rgba(253,246,236,.04);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: 4px;
  padding: 28px 24px;
  position: relative;
  opacity: 0;
}
.testimonial.visible { animation: fadeUp .6s ease forwards; }

.testimonial::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: rgba(212,175,55,.2);
  position: absolute;
  top: -10px; left: 20px;
  line-height: 1;
}

.testimonial p {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: .95rem;
  line-height: 1.7;
  color: rgba(253,246,236,.85);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author { font-size: .8rem; font-weight: 700; letter-spacing: .08em; color: var(--gold); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; }

/* ── OFFER BOX ────────────────────────────── */
.offer-box {
  background: linear-gradient(135deg, rgba(192,24,58,.12), rgba(139,14,39,.08));
  border: 2px solid var(--crimson);
  border-radius: 6px;
  padding: 48px 40px;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(192,24,58,.25);
}

.offer-box::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--crimson), transparent, var(--crimson));
  z-index: -1;
  opacity: .15;
}

.price-from { font-size: .9rem; text-decoration: line-through; color: rgba(253,246,236,.4); margin-bottom: 4px; }

.price {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.price sup { font-size: 40%; vertical-align: top; margin-top: 12px; margin-right: 4px; }
.price-note { font-size: .85rem; color: rgba(253,246,236,.55); margin-bottom: 32px; }

.badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 32px 0;
}

.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(253,246,236,.6);
  border: 1px solid rgba(253,246,236,.15);
  padding: 6px 14px;
  border-radius: 2px;
}

.badge span { font-size: 1rem; }

/* ── GUARANTEE ────────────────────────────── */
.guarantee-section {
  text-align: center;
  padding: 60px 24px;
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.guarantee-circle {
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 50px rgba(212,175,55,.4);
}

.g-days { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: var(--dark); line-height: 1; }
.g-label { font-size: .6rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--dark); }
.guarantee-title { font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; }
.guarantee-text { font-size: .9rem; line-height: 1.7; color: rgba(253,246,236,.65); }

/* ── FAQ ──────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid rgba(253,246,236,.08);
  padding: 24px 0;
  cursor: pointer;
}

.faq-q {
  font-weight: 700;
  font-size: 1rem;
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q .icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: rgba(192,24,58,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: transform .3s;
  color: var(--crimson-light);
}

.faq-item.open .faq-q .icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(253,246,236,.65);
  transition: max-height .4s ease, padding .3s;
  font-family: 'Lora', serif;
}

.faq-item.open .faq-a { max-height: 300px; padding-top: 14px; }

/* ── FINAL CTA ────────────────────────────── */
.final-cta {
  background: linear-gradient(135deg, var(--crimson-dark) 0%, #4A0518 100%);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(232,37,78,.25), transparent 70%);
  pointer-events: none;
}

.final-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  max-width: 700px;
  margin: 0 auto 28px;
}

.final-cta-sub {
  font-size: 1rem;
  color: rgba(253,246,236,.7);
  max-width: 500px;
  margin: 0 auto 40px;
  font-family: 'Lora', serif;
  font-style: italic;
}

.final-cta-note { margin-top: 16px; font-size: .8rem; color: rgba(253,246,236,.35); }

/* ── FOOTER ───────────────────────────────── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(253,246,236,.06);
  padding: 32px 24px;
  text-align: center;
  font-size: .75rem;
  color: rgba(253,246,236,.3);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.footer-links { margin-top: 8px; }
footer a { color: rgba(253,246,236,.4); text-decoration: underline; }
footer a:hover { color: var(--gold); }
.footer-disclaimer { margin-top: 12px; font-size: .7rem; }

/* ── FLOATING CTA ─────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: linear-gradient(135deg, var(--crimson-light), var(--crimson-dark));
  color: #fff;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 40px rgba(192,24,58,.7);
  white-space: nowrap;
  display: none;
  animation: floatBounce 3s ease-in-out infinite;
}

.floating-cta.show { display: block; animation: floatUp .5s ease both, floatBounce 3s .5s ease-in-out infinite; }

@keyframes floatUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes floatBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

/* ── KEYFRAMES ────────────────────────────── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 768px) {
  .offer-box { padding: 32px 20px; }
  .step { gap: 16px; }
  .hero { padding: 60px 20px 48px; }
  .floating-cta { width: calc(100% - 40px); text-align: center; font-size: .78rem; padding: 16px 20px; }
  .cta-primary { padding: 20px 32px; }
}

@media (max-width: 480px) {
  .pain-grid { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .badges-row { gap: 8px; }
}
