/* =============================================
   YOGA FACIAL LANDING PAGE — styles.css
   Lorena Cuello | Método Natural y Efectivo
   ============================================= */

:root {
  --color-primary: #7B4FA6;
  --color-primary-dark: #5A3480;
  --color-primary-light: #EDE6F7;
  --color-accent: #C9A84C;
  --color-accent-light: #FBF5E6;
  --color-text: #2C2C2C;
  --color-text-muted: #666;
  --color-bg: #FDFAF7;
  --color-bg-dark: #3A1F5C;
  --color-bg-section: #F8F3FF;
  --color-white: #ffffff;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(123,79,166,0.12);
  --shadow-strong: 0 8px 40px rgba(123,79,166,0.2);
  --max-w: 960px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  font-size: 16px;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

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

a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ——————————————————
   URGENCY BAR
—————————————————— */
.urgency-bar {
  background: linear-gradient(90deg, var(--color-primary-dark), var(--color-primary));
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.urgency-icon { font-size: 16px; }

/* ——————————————————
   HEADER
—————————————————— */
.site-header {
  background: var(--color-white);
  border-bottom: 1px solid rgba(123,79,166,0.12);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-thumb {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--color-primary-light);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--color-primary-dark);
  font-weight: 700;
}
.logo-accent {
  color: var(--color-text-muted);
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 400;
}

/* ——————————————————
   HERO
—————————————————— */
.hero {
  background: linear-gradient(160deg, var(--color-primary-light) 0%, var(--color-bg) 70%);
  padding: 60px 24px;
  text-align: center;
}
.hero-content {
  max-width: 700px;
  margin: 0 auto;
}
.badge-top {
  display: inline-block;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.25;
  color: var(--color-primary-dark);
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--color-primary);
}
.hero-sub {
  font-size: 18px;
  color: var(--color-text-muted);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.8;
}
.hero-image-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 36px;
}
.hero-ebook-img {
  width: 220px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  margin: 0 auto;
}
.hero-badge-float {
  position: absolute;
  top: -12px;
  right: -18px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 100px;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(201,168,76,0.4);
}
.hero-micro {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 12px;
}

/* ——————————————————
   CTA BUTTON
—————————————————— */
.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  padding: 18px 40px;
  border-radius: 100px;
  text-decoration: none !important;
  box-shadow: 0 6px 24px rgba(123,79,166,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
  letter-spacing: 0.3px;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(123,79,166,0.45);
  text-decoration: none;
}
.btn-cta:active { transform: scale(0.98); }
.btn-cta--large { font-size: 20px; padding: 22px 50px; }
.hero-cta { font-size: 20px; padding: 22px 50px; animation: pulse-btn 2s infinite; }

@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 6px 24px rgba(123,79,166,0.35); }
  50% { box-shadow: 0 6px 40px rgba(123,79,166,0.6); }
}

/* ——————————————————
   COUNTDOWN
—————————————————— */
.countdown-section {
  background: var(--color-primary-dark);
  color: #fff;
  text-align: center;
  padding: 36px 24px;
}
.countdown-label {
  font-size: 16px;
  margin-bottom: 16px;
  opacity: 0.85;
}
.countdown-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 22px;
  min-width: 80px;
}
.count-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-accent);
}
.count-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.75;
  margin-top: 4px;
}
.count-sep {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-top: -8px;
}
.countdown-sub {
  font-size: 14px;
  opacity: 0.75;
  max-width: 480px;
  margin: 0 auto;
}

/* ——————————————————
   SECTION LABELS & TITLES
—————————————————— */
.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  color: var(--color-primary-dark);
  line-height: 1.3;
  margin-bottom: 24px;
}
.section-title em { color: var(--color-primary); font-style: italic; }
.section-title.light { color: #fff; }

/* ——————————————————
   PROBLEM
—————————————————— */
.problem-section {
  padding: 80px 0;
  text-align: center;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 36px 0;
}
.problem-card {
  background: var(--color-white);
  border: 1px solid rgba(123,79,166,0.1);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.problem-card:hover { transform: translateY(-4px); }
.prob-icon {
  display: block;
  font-size: 36px;
  margin-bottom: 14px;
}
.problem-card p { font-size: 15px; color: var(--color-text-muted); line-height: 1.7; }
.problem-closer {
  font-size: 18px;
  color: var(--color-primary-dark);
  font-weight: 700;
  font-family: var(--font-display);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

/* ——————————————————
   AGITATE
—————————————————— */
.agitate-section {
  background: linear-gradient(135deg, var(--color-bg-dark), #2A1248);
  padding: 80px 24px;
  text-align: center;
  color: #fff;
}
.agitate-text {
  font-size: 17px;
  max-width: 680px;
  margin: 0 auto 20px;
  opacity: 0.9;
  line-height: 1.8;
}
.agitate-highlight {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border-left: 4px solid var(--color-accent);
  padding: 20px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 17px;
  max-width: 680px;
  margin-top: 16px;
  text-align: left;
  line-height: 1.7;
}
.agitate-highlight strong { color: var(--color-accent); }

/* ——————————————————
   SOLUTION
—————————————————— */
.solution-section {
  padding: 80px 0;
  background: var(--color-bg-section);
}
.solution-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}
.solution-img {
  width: 100%;
  max-width: 260px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  margin: 0 auto;
}
.solution-text-col p {
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.8;
}
.solution-text-col p strong { color: var(--color-primary-dark); }

/* ——————————————————
   INCLUDES
—————————————————— */
.includes-section {
  padding: 80px 0;
  text-align: center;
}
.includes-grid {
  display: grid;
  gap: 24px;
  margin-top: 36px;
  text-align: left;
}
.include-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--color-white);
  border: 1px solid rgba(123,79,166,0.1);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.include-item:hover { transform: translateX(4px); }
.include-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary-light);
  line-height: 1;
  flex-shrink: 0;
  min-width: 52px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.include-item h3 {
  font-size: 17px;
  color: var(--color-primary-dark);
  margin-bottom: 6px;
  font-weight: 700;
}
.include-item p { font-size: 15px; color: var(--color-text-muted); line-height: 1.7; }

/* ——————————————————
   TESTIMONIALS
—————————————————— */
.testimonials-section {
  padding: 80px 0;
  background: var(--color-bg-section);
  text-align: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 28px;
  text-align: left;
  border: 1px solid rgba(123,79,166,0.1);
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 60px;
  color: var(--color-primary-light);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}
.stars {
  color: #F5A623;
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 14px;
  font-style: italic;
}
.testimonial-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
}

/* ——————————————————
   AUTHOR
—————————————————— */
.author-section {
  padding: 80px 0;
}
.author-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}
.author-img {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  box-shadow: 0 8px 40px rgba(123,79,166,0.25);
  margin: 0 auto;
  border: 5px solid var(--color-white);
  outline: 3px solid var(--color-primary-light);
}
.author-title {
  font-size: 14px;
  color: var(--color-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.author-text-col p {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.author-text-col p strong { color: var(--color-primary-dark); }
.author-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(123,79,166,0.12);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}
.stat-label { font-size: 12px; color: var(--color-text-muted); margin-top: 4px; text-align: center; }

/* ——————————————————
   FORM SECTION
—————————————————— */
.form-section {
  padding: 80px 0;
  background: linear-gradient(160deg, var(--color-primary-light), var(--color-bg));
}
.form-wrap {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  padding: 48px;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.form-desc {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 28px;
  line-height: 1.8;
}
.form-image-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 32px;
  text-align: left;
}
.form-ebook-img {
  width: 120px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex-shrink: 0;
}
.form-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-benefits li {
  font-size: 15px;
  color: var(--color-text);
  font-weight: 500;
}
.ipz-form-wrap {
  margin: 0 0 16px;
  min-height: 160px;
}
.ipz-iframe {
  border: none;
  width: 100%;
  display: block;
}
.form-privacy {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 12px;
}

/* ——————————————————
   CLOSE SECTION
—————————————————— */
.close-section {
  padding: 60px 0;
  background: var(--color-bg);
  text-align: center;
}
.guarantee-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--color-white);
  border-left: 5px solid var(--color-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px;
  max-width: 680px;
  margin: 0 auto 40px;
  text-align: left;
  box-shadow: var(--shadow);
}
.guarantee-icon { font-size: 36px; flex-shrink: 0; }
.guarantee-box h3 {
  font-size: 18px;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
  font-weight: 700;
}
.guarantee-box p { font-size: 15px; color: var(--color-text-muted); line-height: 1.7; }
.final-cta-wrap { text-align: center; }
.final-micro {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-top: 14px;
}

/* ——————————————————
   FOOTER
—————————————————— */
.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 28px;
  font-size: 13px;
}
.site-footer p { margin-bottom: 8px; }
.site-footer a { color: rgba(255,255,255,0.5); }
.site-footer a:hover { color: #fff; }

/* ——————————————————
   POPUP TOAST
—————————————————— */
.popup-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  max-width: 320px;
  animation: slideInLeft 0.5s ease forwards;
  display: none;
}
.popup-toast.visible { display: block; }
.toast-inner {
  background: var(--color-white);
  border: 1px solid rgba(123,79,166,0.15);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.toast-avatar { font-size: 28px; flex-shrink: 0; }
.toast-text { font-size: 13px; color: var(--color-text); line-height: 1.5; flex: 1; }
.toast-text strong { color: var(--color-primary-dark); }
.toast-time { color: var(--color-text-muted); font-size: 12px; }
.toast-close {
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: 14px;
  flex-shrink: 0;
  padding: 0;
}
.toast-close:hover { color: var(--color-text); }

@keyframes slideInLeft {
  from { transform: translateX(-120%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
@keyframes slideOutLeft {
  from { transform: translateX(0); opacity: 1; }
  to   { transform: translateX(-120%); opacity: 0; }
}

/* ——————————————————
   RESPONSIVE
—————————————————— */
@media (max-width: 720px) {
  .solution-layout,
  .author-layout { grid-template-columns: 1fr; text-align: center; }
  .solution-img-col,
  .author-img-col { order: -1; }
  .author-stats { justify-content: center; flex-wrap: wrap; gap: 20px; }
  .form-wrap { padding: 32px 20px; }
  .form-image-row { flex-direction: column; align-items: center; text-align: center; }
  .countdown-block { min-width: 64px; padding: 12px 14px; }
  .count-num { font-size: 36px; }
  .agitate-highlight { text-align: center; border-left: none; border-top: 4px solid var(--color-accent); }
  .hero-cta, .btn-cta--large { font-size: 17px; padding: 18px 30px; }
  .includes-grid { text-align: left; }
  .popup-toast { left: 12px; right: 12px; max-width: none; bottom: 12px; }
  .guarantee-box { flex-direction: column; align-items: center; text-align: center; }
}
