/* -----------------------------------------
   YOGA DETOX LANDING PAGE - STYLESHEET
----------------------------------------- */

/* Design Tokens & Variables */
:root {
  --color-primary-bg: #F5F4EC;
  --color-secondary-bg: #E5E3D8;
  --color-accent-red: #E5154A;
  --color-accent-pink: #FF5A82;
  --color-accent-green: #48BE77;
  --color-text-dark: #191C1F;
  --color-text-muted: #6E6E6E;
  --color-text-light: #FFFFFF;
  --color-card-bg: #F7F9FA;
  
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Open Sans', sans-serif;
  
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --box-shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.05);
  --box-shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-secondary);
  color: var(--color-text-dark);
  background-color: var(--color-primary-bg);
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4 {
  font-family: var(--font-primary);
  margin: 0;
  font-weight: 700;
  line-height: 1.25;
}

p {
  margin: 0 0 1rem 0;
}

p:last-child {
  margin-bottom: 0;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.divider {
  width: 80px;
  height: 4px;
  background-color: var(--color-accent-green);
  border-radius: 2px;
  margin: 16px 0 24px 0;
}

.divider.align-center {
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 36px;
  text-align: center;
  color: var(--color-text-dark);
}

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

.section-subtitle {
  font-family: var(--font-secondary);
  font-size: 18px;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 8px;
  margin-bottom: 0;
}

.section-description {
  max-width: 800px;
  margin: 0 auto 48px auto;
  text-align: center;
  font-size: 18px;
  color: var(--color-text-dark);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-secondary);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  border-radius: 50px;
  padding: 16px 36px;
  font-size: 18px;
  transition: var(--transition-smooth);
  box-shadow: 0 6px 20px rgba(255, 90, 130, 0.3);
}

.btn-primary {
  background-color: var(--color-accent-pink);
  color: var(--color-text-light);
}

.btn-primary:hover {
  background-color: #ff3e6d;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 90, 130, 0.4);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: var(--color-accent-green);
  color: var(--color-text-light);
  box-shadow: 0 6px 20px rgba(72, 190, 119, 0.3);
}

.btn-secondary:hover {
  background-color: #3aaa68;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(72, 190, 119, 0.4);
}

.btn-large {
  font-size: 20px;
  padding: 20px 48px;
}

.cta-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* 1. Top Bar Section */
.top-bar {
  background-color: var(--color-accent-red);
  color: var(--color-text-light);
  padding: 12px 0;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 14px;
}

.top-bar-text {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  letter-spacing: 0.5px;
}

.badge {
  background-color: var(--color-text-light);
  color: var(--color-accent-red);
  padding: 2px 8px;
  font-weight: 700;
  border-radius: 4px;
  font-size: 11px;
  text-transform: uppercase;
}

/* 2. Hero Section */
.hero-section {
  background-color: var(--color-primary-bg);
  padding: 60px 0 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 48px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-size: 48px;
  color: var(--color-text-dark);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--color-text-dark);
  margin-bottom: 32px;
}

.hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  border: 3px solid var(--color-accent-green);
  box-shadow: var(--box-shadow-premium);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.hero-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

/* Countdown Timer */
.timer-container {
  width: 100%;
  margin-bottom: 32px;
  background-color: rgba(229, 227, 216, 0.3);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.05);
}

.timer-title {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timer-grid {
  display: flex;
  gap: 12px;
}

.timer-card {
  flex: 1;
  background-color: var(--color-card-bg);
  padding: 12px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  min-width: 80px;
}

.timer-number {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.timer-label {
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
}

/* 3. About Section */
.about-section {
  background-color: var(--color-secondary-bg);
  padding: 80px 0 100px 0;
}

.video-container-wrapper {
  max-width: 650px;
  margin: 0 auto;
  border: 3px solid var(--color-accent-green);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow-premium);
}

.video-iframe-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  background-color: #000;
}

.video-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Pillars / Features Grid */
.pillars-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 60px auto 0 auto;
}

.pillar-card {
  padding: 40px 24px;
  text-align: center;
  color: var(--color-text-light);
  border-radius: 8px;
  box-shadow: var(--box-shadow-premium);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.pillar-practica {
  background-color: #849691; /* Muted Green */
}

.pillar-conecta {
  background-color: #cda57f; /* Earthy Ochre */
}

.pillar-explora {
  background-color: #dca2a6; /* Muted Rose */
}

.pillar-title {
  font-family: var(--font-primary);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.pillar-text {
  font-family: var(--font-secondary);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

/* Why Yoga Section */
.why-yoga-section {
  background-color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.why-yoga-title {
  font-family: var(--font-primary);
  font-size: 38px;
  font-weight: 700;
  color: #ff3e6d;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.why-yoga-description {
  font-family: var(--font-secondary);
  font-size: 18px;
  line-height: 1.6;
  color: #ff3e6d;
  max-width: 750px;
  margin: 0 auto;
  font-weight: 400;
}

/* 4. Author Section */
.author-section {
  background-color: var(--color-primary-bg);
  padding: 80px 0 100px 0;
}

.author-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 60px;
}

.author-image-wrapper {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-accent-green);
  box-shadow: var(--box-shadow-premium);
  display: flex;
}

.author-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.author-content {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 28px;
  color: var(--color-text-dark);
  margin-bottom: 16px;
}

.author-bio {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* 5. Urgency CTA Section */
.urgency-cta-section {
  background-color: var(--color-secondary-bg);
  padding: 60px 0;
  text-align: center;
}

.urgency-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.urgency-title {
  font-size: 32px;
  color: var(--color-text-dark);
}

/* 6. Guarantee & Security Section */
.guarantee-section {
  background-color: var(--color-primary-bg);
  padding: 80px 0;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.guarantee-card {
  background-color: var(--color-text-light);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--box-shadow-premium);
  border: 1px solid rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-smooth);
}

.guarantee-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.card-icon {
  margin-bottom: 24px;
}

.card-title {
  font-size: 20px;
  color: var(--color-text-dark);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.card-text {
  font-size: 15px;
  color: var(--color-text-muted);
  margin: 0;
}

/* 7. Pricing/Offer Section */
.offer-section {
  background-color: var(--color-secondary-bg);
  padding: 80px 0;
}

.offer-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.offer-image-wrapper {
  max-width: 500px;
  margin: 0 auto;
}

.offer-image {
  width: 100%;
  height: auto;
}

.offer-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.offer-device-text {
  font-size: 18px;
  color: var(--color-text-dark);
  margin-bottom: 24px;
}

.offer-small-text {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.offer-price {
  font-family: var(--font-primary);
  font-size: 64px;
  font-weight: 700;
  color: var(--color-accent-pink);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.offer-sub-text {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

/* 8. Bonuses Section */
.bonuses-section {
  background-color: var(--color-primary-bg);
  padding: 80px 0;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.bonus-card {
  background-color: var(--color-text-light);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: var(--box-shadow-premium);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.02);
  transition: var(--transition-smooth);
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.bonus-badge {
  position: absolute;
  top: -12px;
  background-color: var(--color-accent-green);
  color: var(--color-text-light);
  padding: 4px 16px;
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 20px;
}

.bonus-icon-wrapper {
  margin-top: 8px;
  margin-bottom: 24px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bonus-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bonus-title {
  font-size: 18px;
  color: var(--color-text-dark);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.bonus-description {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Final CTA Card */
.final-cta-card {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--color-secondary-bg);
  border-radius: 24px;
  padding: 60px 48px;
  text-align: center;
  box-shadow: var(--box-shadow-premium);
  border: 1px solid rgba(0,0,0,0.01);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta-title {
  font-size: 28px;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.final-cta-description {
  font-size: 16px;
  color: var(--color-text-muted);
  max-width: 650px;
  margin-bottom: 32px;
}

/* 9. FAQ Section */
.faq-section {
  background-color: var(--color-primary-bg);
  padding: 80px 0 100px 0;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.faq-accordion-container {
  max-width: 800px;
  margin: 40px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--color-text-light);
  border-radius: 12px;
  box-shadow: var(--box-shadow-premium);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.02);
  transition: var(--transition-smooth);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-dark);
  transition: var(--transition-smooth);
}

.faq-trigger:hover {
  background-color: #fafbfc;
}

.faq-icon-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-green);
  transition: transform 0.3s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content-inner {
  padding: 0 24px 24px 24px;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* FAQ Active State */
.faq-item.active {
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
}

/* 10. Footer Section */
.main-footer {
  background-color: var(--color-secondary-bg);
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.copyright {
  font-family: var(--font-primary);
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0;
}

/* -----------------------------------------
   MEDIA QUERIES (RESPONSIVE SYSTEM)
----------------------------------------- */

/* Tablet & Smaller Screens */
@media screen and (max-width: 1023px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-content {
    align-items: center;
    text-align: center;
  }
  
  .hero-title {
    font-size: 38px;
  }
  
  .hero-image-wrapper {
    max-width: 380px;
  }
  
  .hero-image {
    height: auto;
  }
  
  .author-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .author-content {
    align-items: center;
  }
  
  .section-title.text-left {
    text-align: center;
  }
  
  .divider {
    margin-left: auto;
    margin-right: auto;
  }
  
  .author-image-wrapper {
    max-width: 320px;
  }
  
  .guarantee-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
  
  .offer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .offer-details {
    align-items: center;
  }
  
  .offer-image-wrapper {
    max-width: 350px;
  }
  
  .bonuses-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto 40px auto;
  }
  
  .pillars-container {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 40px auto 0 auto;
    gap: 16px;
  }
  
  .pillar-card {
    padding: 30px 20px;
  }

  .why-yoga-section {
    padding: 60px 0;
  }

  .why-yoga-title {
    font-size: 30px;
  }

  .why-yoga-description {
    font-size: 16px;
  }
}

/* Mobile Screens */
@media screen and (max-width: 767px) {
  .container {
    padding: 0 16px;
  }
  
  .hero-title {
    font-size: 30px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .btn {
    padding: 14px 28px;
    font-size: 16px;
    width: 100%;
    max-width: 340px;
  }
  
  .btn-large {
    font-size: 18px;
    padding: 16px 36px;
  }
  
  .timer-number {
    font-size: 22px;
  }
  
  .timer-card {
    min-width: 64px;
    padding: 8px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .section-description {
    font-size: 16px;
  }
  
  .offer-price {
    font-size: 48px;
  }
  
  .final-cta-card {
    padding: 40px 20px;
  }
  
  .final-cta-title {
    font-size: 22px;
  }
  
  .faq-trigger {
    padding: 16px;
    font-size: 16px;
  }
  
  .faq-content-inner {
    padding: 0 16px 16px 16px;
    font-size: 14px;
  }
}
