/* ==========================================================
   Baraja Gitana Lenormand — Landing Page
   ========================================================== */

:root{
  --cream:        #F7F0DE;
  --cream-band:   #EFE3C4;
  --cream-dark:   #E9DCB9;
  --ink:          #2B2117;
  --brown:        #5B4A34;
  --brown-soft:   #7A6A50;
  --gold:         #A9822C;
  --gold-dark:    #8C6C22;
  --gold-line:    rgba(169,130,44,0.35);
  --green:        #4C6B4F;
  --card-bg:      #FFFCF4;
  --border:       rgba(43,33,23,0.12);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Poppins', 'Segoe UI', Arial, sans-serif;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin:0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }

.container{
  max-width: 700px;
  margin: 0 auto;
  padding: 0 28px;
}

.section{
  padding: 72px 0;
}

.section.band{
  background: var(--cream-band);
}

/* ---------- Eyebrow / headings ---------- */

.eyebrow{
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 14px;
}

.eyebrow.center{ text-align:center; }

.hero-title{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.28;
  color: var(--ink);
  text-align: center;
  margin: 0 0 36px;
}

.hero-title em{
  font-style: italic;
  color: var(--gold-dark);
  font-weight: 600;
}

.section-title{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 27px;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 16px;
}

.section-title em{
  font-style: italic;
  color: var(--gold-dark);
}

.section-title.center{ text-align:center; }

.section-text{
  font-size: 15.5px;
  color: var(--brown);
  max-width: 520px;
  margin: 0 auto 36px;
}

.section-text.center{ text-align:center; }

.italic-caption{
  font-style: italic;
  font-size: 14.5px;
  color: var(--brown-soft);
  max-width: 480px;
  margin: 32px auto 0;
}

.italic-caption.center{ text-align:center; }

/* ---------- Hero ---------- */

.hero{
  padding-top: 56px;
  text-align: center;
}

.hero-image{
  max-width: 480px;
  margin: 0 auto 40px;
}

.lead{
  font-size: 15.5px;
  color: var(--brown);
  max-width: 480px;
  margin: 0 auto 28px;
}

/* ---------- Check list ---------- */

.check-list{
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.check-list li{
  position: relative;
  padding: 8px 0 8px 32px;
  font-size: 15px;
  color: var(--ink);
}

.check-list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  line-height: 20px;
  text-align: center;
}

.two-col-list{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
  max-width: 560px;
  margin: 0 auto;
}

.two-col-list .check-list{ margin-bottom: 0; }

/* ---------- Buttons ---------- */

.btn{
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: .3px;
  border-radius: 40px;
  padding: 18px 30px;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn-primary{
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(140,108,34,0.30);
}

.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(140,108,34,0.40);
}

.btn-block{
  display:block;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.trust-line{
  text-align: center;
  font-size: 12.5px;
  color: var(--brown-soft);
  margin: 16px auto 0;
  letter-spacing: .2px;
}

/* ---------- Card strip (vista por dentro) ---------- */

.card-strip-wrap{
  width: 100%;
  overflow: hidden;
  padding: 8px 0 36px;
}

.card-strip{
  display: flex;
  gap: 22px;
  width: max-content;
  animation: cardMarquee 32s linear infinite;
}

.card-strip-wrap:hover .card-strip{
  animation-play-state: paused;
}

@keyframes cardMarquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

.card-strip img{
  flex: 0 0 320px;
  width: 320px;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(43,33,23,0.16);
  transition: transform .25s ease, box-shadow .25s ease;
}

.card-strip img:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(43,33,23,0.22);
}

@media (max-width: 480px){
  .card-strip img{
    flex-basis: 220px;
    width: 220px;
  }
}

/* ---------- Bonos ---------- */

.bonus-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  margin-top: 36px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.bonus-card{
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  text-align: left;
  transition: transform .25s ease, box-shadow .25s ease;
}

.bonus-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(43,33,23,0.14);
}

.bonus-thumb{
  margin: 0;
  line-height: 0;
}

.bonus-thumb img{
  width: 100%;
  height: auto;
  display: block;
}

.bonus-body{
  padding: 22px 26px 28px;
}

.bonus-tag{
  display: inline-block;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  font-size: 11.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.bonus-card h3{
  font-family: var(--font-display);
  font-size: 21px;
  margin: 0 0 10px;
  color: var(--ink);
}

.bonus-card p{
  font-size: 14.5px;
  color: var(--brown);
  margin: 0 0 16px;
}

.bonus-divider{
  border-top: 1px dashed var(--gold-line);
  margin: 0 0 16px;
}

.price-line{
  font-size: 15px;
  margin: 0 !important;
}

.old-price{
  text-decoration: line-through;
  color: var(--brown-soft);
  margin-right: 8px;
}

.free{
  color: var(--green);
  font-weight: 600;
  letter-spacing: .5px;
}

/* ---------- Testimonios ---------- */

.testimonial-strip-wrap{
  width: 100%;
  padding: 8px 0 12px;
}

.testimonial-strip{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.testimonial{
  flex: 0 1 320px;
  width: 320px;
  max-width: 100%;
  margin: 0;
  transition: transform .25s ease;
}

.testimonial:hover{ transform: translateY(-4px); }

.testimonial-card{
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 14px 32px rgba(43,33,23,0.14);
  height: 100%;
}

.testimonial-card img{
  border-radius: 14px;
  margin-bottom: 18px;
}

.testimonial figcaption p{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.5;
}

.quote-mark{
  color: var(--gold);
  margin-right: 2px;
}

.testimonial-name{
  font-size: 12.5px;
  color: var(--brown-soft);
  letter-spacing: .3px;
}

/* ---------- Oferta ---------- */

.offer-card{
  background: var(--card-bg);
  border: 1px solid var(--gold-line);
  border-radius: 22px;
  padding: 36px 30px;
  text-align: center;
  max-width: 440px;
  margin: 32px auto 0;
  box-shadow: 0 16px 36px rgba(43,33,23,0.12);
}

.offer-heading{
  font-family: var(--font-display);
  font-size: 21px;
  margin: 0 0 18px;
}

.offer-image{
  max-width: 240px;
  margin: 0 auto 20px;
}

.offer-old-value{
  font-size: 13.5px;
  color: var(--brown-soft);
  margin: 0;
}

.offer-old-value span{
  text-decoration: line-through;
}

.offer-price{
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 700;
  color: var(--gold-dark);
  margin: 4px 0 0;
}

.offer-note{
  font-size: 12px;
  color: var(--brown-soft);
  margin: 6px 0 20px;
}

.offer-text{
  font-size: 14.5px;
  color: var(--brown);
  margin: 0 0 24px;
}

.offer-list{
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Seguridad ---------- */

.guarantee-box{
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: left;
  max-width: 520px;
  margin: 0 auto 44px;
  background: var(--card-bg);
  border: 1px solid var(--gold-line);
  border-radius: 18px;
  padding: 28px 30px;
  box-shadow: 0 12px 28px rgba(43,33,23,0.10);
}

.guarantee-seal{
  width: 100px;
  flex: 0 0 100px;
  margin: 0;
}

.guarantee-text h3{
  font-family: var(--font-display);
  font-size: 19px;
  margin: 0 0 8px;
}

.guarantee-text p{
  font-size: 14px;
  color: var(--brown);
  margin: 0;
}

.feature-icons{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: 560px;
  margin: 0 auto 36px;
  text-align: center;
}

.icon-circle{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 20px;
  margin-bottom: 10px;
}

.icon-lock{ background: #FBE6D4; }
.icon-bolt{ background: #FCEFC7; }
.icon-doc{ background: #D9E8F5; }
.icon-thumb{ background: #FBE6D4; }
.icon-phone{ background: #D9E8F5; }

.feature-icon p{
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}

@media (max-width: 480px){
  .feature-icons{
    grid-template-columns: repeat(3, 1fr);
    max-width: 340px;
    row-gap: 24px;
  }
}

@media (max-width: 420px){
  .guarantee-box{
    flex-direction: column;
    text-align: center;
  }
}

/* ---------- FAQ ---------- */

.faq-list{
  max-width: 560px;
  margin: 32px auto 0;
}

.faq-item{
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-item summary{
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 24px;
}

.faq-item summary::-webkit-details-marker{ display:none; }

.faq-item summary::after{
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 20px;
  color: var(--gold);
  transition: transform .2s ease;
}

.faq-item[open] summary::after{
  content: "–";
}

.faq-item p{
  font-size: 14px;
  color: var(--brown);
  margin: 12px 0 0;
}

/* ---------- Final CTA ---------- */

.final-cta{
  text-align: center;
  position: relative;
  overflow: hidden;
}

.divider{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 220px;
  margin: 0 auto 24px;
}

.divider::before,
.divider::after{
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gold-line);
}

.divider-diamond{
  color: var(--gold);
  font-size: 13px;
  line-height: 1;
}

.sparkle{
  position: absolute;
  color: var(--gold);
  opacity: .35;
  pointer-events: none;
}

.sparkle-1{ top: 14%; left: 8%;  font-size: 16px; }
.sparkle-2{ top: 60%; left: 4%;  font-size: 11px; }
.sparkle-3{ top: 20%; right: 9%; font-size: 12px; }
.sparkle-4{ top: 68%; right: 6%; font-size: 18px; }

.cta-btn-wrap{
  position: relative;
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

.cta-btn-wrap::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 340px;
  height: 160px;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(140,90,40,0.35), rgba(140,90,40,0) 72%);
  filter: blur(4px);
  z-index: 0;
}

.cta-btn-wrap .btn{
  position: relative;
  z-index: 1;
}

/* ---------- Footer ---------- */

.footer{
  text-align: center;
  padding: 32px 20px;
  background: var(--ink);
}

.footer p{
  font-size: 12px;
  color: rgba(247,240,222,0.6);
  margin: 0;
}

/* ---------- Scroll reveal animations ---------- */

.reveal{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible{
  opacity: 1;
  transform: none;
}

.card-strip img:nth-child(1){ transition-delay: .05s; }
.card-strip img:nth-child(2){ transition-delay: .12s; }
.card-strip img:nth-child(3){ transition-delay: .19s; }
.card-strip img:nth-child(4){ transition-delay: .26s; }
.card-strip img:nth-child(5){ transition-delay: .33s; }
.card-strip img:nth-child(6){ transition-delay: .40s; }

.bonus-card:nth-child(1){ transition-delay: .05s; }
.bonus-card:nth-child(2){ transition-delay: .15s; }
.bonus-card:nth-child(3){ transition-delay: .25s; }

.testimonial:nth-child(1){ transition-delay: .05s; }
.testimonial:nth-child(2){ transition-delay: .15s; }
.testimonial:nth-child(3){ transition-delay: .25s; }

.feature-icon:nth-child(1){ transition-delay: .05s; }
.feature-icon:nth-child(2){ transition-delay: .12s; }
.feature-icon:nth-child(3){ transition-delay: .19s; }
.feature-icon:nth-child(4){ transition-delay: .26s; }

.faq-item:nth-child(1){ transition-delay: .03s; }
.faq-item:nth-child(2){ transition-delay: .08s; }
.faq-item:nth-child(3){ transition-delay: .13s; }
.faq-item:nth-child(4){ transition-delay: .18s; }
.faq-item:nth-child(5){ transition-delay: .23s; }
.faq-item:nth-child(6){ transition-delay: .28s; }

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; }
  .card-strip{ animation: none; }
}

/* ---------- Popup de prueba social ---------- */

.proof-toast{
  position: fixed;
  left: 20px;
  bottom: -120px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 40px 14px 14px;
  max-width: 320px;
  box-shadow: 0 14px 32px rgba(43,33,23,0.20);
  transition: bottom .5s cubic-bezier(.34,1.56,.64,1);
  z-index: 999;
}

.proof-toast.show{
  bottom: 20px;
}

.proof-avatar{
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.proof-text{
  font-size: 12.5px;
  color: var(--ink);
  line-height: 1.4;
}

.proof-time{
  color: var(--brown-soft);
}

.proof-close{
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: none;
  color: var(--brown-soft);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
}

@media (max-width: 420px){
  .proof-toast{
    left: 12px;
    right: 12px;
    max-width: none;
  }
}

/* ---------- Responsive ---------- */

@media (min-width: 640px){
  .hero-title{ font-size: 38px; }
  .section-title{ font-size: 30px; }
  .bonus-grid{ grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 400px){
  .container{ padding: 0 20px; }
  .hero-title{ font-size: 27px; }
  .section-title{ font-size: 23px; }
  .two-col-list{ grid-template-columns: 1fr; }
}
