/* 
   FE CON FAMILIA - LANDING PAGE STYLESHEET
   Estilo Premium, Editorial, Cálido y Mobile-First
*/

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

:root {
  /* Color Palette */
  --primary-color: #1b4332;       /* Deep warm forest green */
  --primary-hover: #2d6a4f;       /* Brighter forest green */
  --primary-light: #d8f3dc;       /* Soft green for badges */
  --secondary-bg: #fdf6ec;        /* Very warm light beige */
  --accent-gold: #d4a847;         /* Soft gold/amber */
  --accent-gold-dark: #b88b2f;    /* Darker gold for text */
  --text-main: #1a1a1a;           /* Soft rich black */
  --text-muted: #4a554f;          /* Warm grey-green for subtext */
  --white: #ffffff;
  --black: #080d0a;
  
  /* Borders and Shadows */
  --border-light: #eae3d8;
  --shadow-soft: 0 4px 20px rgba(27, 67, 50, 0.04);
  --shadow-medium: 0 10px 30px rgba(27, 67, 50, 0.08);
  --shadow-strong: 0 20px 40px rgba(8, 13, 10, 0.12);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Global Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--primary-color);
}

p {
  max-width: 100%;
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.text-gold { color: var(--accent-gold-dark); }
.font-italic { font-style: italic; }

/* Sections Styling */
section {
  padding: 80px 0;
  position: relative;
}

.bg-light {
  background-color: var(--secondary-bg);
}

.bg-white {
  background-color: var(--white);
}

.bg-dark {
  background-color: var(--black);
  color: var(--white);
}

.bg-dark h2, .bg-dark h3 {
  color: var(--white);
}

/* --- BLOQUE 1: BARRA DE URGENCIA --- */
.urgency-bar {
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  padding: 12px 16px;
  font-size: 14px;
  border-bottom: 2px solid var(--accent-gold);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.urgency-bar .text {
  font-weight: 700;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 2px;
}

.urgency-bar .subtext {
  font-size: 11px;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* --- BLOQUE 2: HERO SECTION --- */
.hero {
  padding: 60px 0 80px 0;
  background-color: var(--white);
}

.hero-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 400;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.hero-image-container {
  margin: 30px auto 40px auto;
  max-width: 600px;
  padding: 0 10px;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
}

/* CTA Buttons */
.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 18px 36px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(27, 67, 50, 0.25);
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  animation: pulse 2.5s infinite;
}

.btn-cta:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27, 67, 50, 0.35);
}

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

.btn-cta-white {
  background-color: var(--white);
  color: var(--primary-color);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

.btn-cta-white:hover {
  background-color: #f5f5f5;
  color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

.cta-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.social-proof {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

/* --- BLOQUE 3: QUÉ RECIBÍS --- */
.section-title {
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px auto;
  color: var(--text-muted);
  font-size: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  padding: 24px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-gold);
}

.feature-icon-wrapper {
  background-color: var(--secondary-bg);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon {
  width: 22px;
  height: 22px;
  color: var(--primary-color);
}

.feature-text h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--primary-color);
}

.feature-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Portadas De Lecciones */
.lessons-display {
  text-align: center;
  margin: 50px auto;
  max-width: 750px;
  padding: 0 16px;
}

.lessons-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-light);
}

/* Temporizador Regresivo */
.timer-container {
  background-color: var(--secondary-bg);
  border: 2px dashed var(--accent-gold);
  border-radius: var(--border-radius-md);
  padding: 30px;
  max-width: 600px;
  margin: 40px auto 0 auto;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.timer-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent-gold-dark);
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.timer-display {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.timer-segment {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 12px 16px;
  border-radius: var(--border-radius-sm);
  min-width: 75px;
  box-shadow: 0 4px 10px rgba(27, 67, 50, 0.15);
}

.timer-number {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  font-family: monospace;
}

.timer-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
  opacity: 0.8;
}

.timer-divider {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  align-self: center;
}

/* --- BLOQUE 4: PARA QUIÉN ES IDEAL --- */
.ideal-list {
  max-width: 750px;
  margin: 0 auto;
  list-style: none;
}

.ideal-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}

.ideal-item:last-child {
  border-bottom: none;
}

.ideal-bullet {
  background-color: var(--accent-gold);
  color: var(--white);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: bold;
  font-size: 14px;
}

.ideal-text {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.5;
}

/* --- BLOQUE 5: CÓMO FUNCIONA --- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.step-card {
  background: var(--white);
  padding: 30px 24px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-color);
}

.step-number {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: rgba(27, 67, 50, 0.08);
  font-family: 'Inter', sans-serif;
  position: absolute;
  top: 15px;
  right: 20px;
  transition: var(--transition-smooth);
}

.step-card:hover .step-number {
  color: rgba(212, 168, 71, 0.2);
  transform: scale(1.1);
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 10px;
  position: relative;
  z-index: 2;
}

.step-description {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* --- BLOQUE 6: BONOS EXCLUSIVOS --- */
.bonuses-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.bonuses-header h2 {
  font-size: 34px;
  margin-bottom: 16px;
}

.bonuses-display {
  text-align: center;
  margin: 0 auto 50px auto;
  max-width: 600px;
  padding: 0 16px;
}

.bonuses-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-light);
}

.bonuses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .bonuses-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
}

@media (min-width: 1024px) {
  .bonuses-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1100px;
  }
}

.bonus-card {
  background: var(--white);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  padding: 30px 24px;
  position: relative;
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-gold);
}

.bonus-tag {
  background-color: var(--accent-gold);
  color: var(--white);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 20px;
  align-self: flex-start;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.bonus-title {
  font-size: 19px;
  margin-bottom: 12px;
}

.bonus-description {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.bonus-value-box {
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bonus-value-original {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
}

.bonus-value-free {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  background-color: var(--primary-light);
  padding: 2px 10px;
  border-radius: 4px;
}

/* --- BLOQUE 7: PRECIOS --- */
.pricing {
  background-color: var(--secondary-bg);
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 40px auto 0 auto;
  align-items: stretch;
}

@media (min-width: 768px) {
  .pricing-cards {
    grid-template-columns: 1fr 1.1fr;
    gap: 24px;
  }
}

.price-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  border: 2px solid var(--border-light);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

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

.price-card.featured {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-medium);
  transform: scale(1.02);
}

@media (max-width: 767px) {
  .price-card.featured {
    transform: none;
  }
}

.price-card.featured:hover {
  box-shadow: var(--shadow-strong);
}

.featured-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(212, 168, 71, 0.3);
  white-space: nowrap;
}

.price-header {
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.price-title {
  font-size: 22px;
  margin-bottom: 8px;
}

.price-subtitle {
  font-size: 13px;
  color: var(--text-muted);
}

.price-amount-box {
  margin: 20px 0;
}

.price-original {
  font-size: 15px;
  color: #999;
  text-decoration: line-through;
  display: block;
  margin-bottom: 4px;
}

.price-actual {
  font-size: 38px;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.price-actual .currency {
  font-size: 22px;
  font-weight: 600;
  vertical-align: super;
  margin-right: 2px;
}

.price-note {
  font-size: 12px;
  color: var(--accent-gold-dark);
  font-weight: 600;
  margin-top: 8px;
}

.price-features {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px dashed var(--border-light);
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features li.excluded {
  color: #aaa;
  text-decoration: line-through;
}

.price-features li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.price-features li svg.icon-check {
  color: var(--primary-color);
}

.price-features li svg.icon-cross {
  color: #cc5a5a;
}

.price-card .btn-cta {
  width: 100%;
  font-size: 15px;
  padding: 14px 20px;
}

/* --- BLOQUE 8: GARANTÍA --- */
.warranty {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.warranty-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  gap: 30px;
}

@media (min-width: 768px) {
  .warranty-box {
    flex-direction: row;
    text-align: left;
    gap: 40px;
  }
}

.warranty-seal-wrapper {
  flex-shrink: 0;
}

.warranty-seal {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px double var(--accent-gold);
  background-color: var(--secondary-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-medium);
  position: relative;
  animation: rotateSlow 20s linear infinite;
}

.warranty-seal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  animation: counterRotateSlow 20s linear infinite;
}

.warranty-seal-number {
  font-size: 34px;
  font-weight: 700;
  font-family: 'Lora', serif;
  color: var(--primary-color);
  line-height: 1;
}

.warranty-seal-days {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-gold-dark);
  margin-top: 2px;
}

.warranty-seal-text {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.warranty-content h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.warranty-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- BLOQUE 9: TESTIMONIOS --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-gold);
}

.testimonial-quote {
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
}

.testimonial-quote::before {
  content: "“";
  font-family: 'Lora', Georgia, serif;
  font-size: 70px;
  color: rgba(212, 168, 71, 0.15);
  position: absolute;
  top: -30px;
  left: -10px;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  border: 2px solid var(--accent-gold);
}

.testimonial-info h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
}

.testimonial-info p {
  font-size: 12px;
  color: var(--text-muted);
}

/* --- BLOQUE 10: PREGUNTAS FRECUENTES --- */
.faq-accordion {
  max-width: 750px;
  margin: 40px auto 0 auto;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-sm);
  margin-bottom: 12px;
  background-color: var(--white);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  transition: var(--transition-smooth);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question {
  background-color: var(--secondary-bg);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-answer-inner {
  padding: 20px 24px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid var(--border-light);
  background-color: var(--white);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}

/* --- BLOQUE 11: CTA FINAL --- */
.cta-final {
  background-color: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.cta-final::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image: radial-gradient(circle at center, rgba(27, 67, 50, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final-content {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-final h2 {
  font-size: 38px;
  margin-bottom: 20px;
  color: var(--white);
}

.cta-final p {
  font-size: 17px;
  opacity: 0.85;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- BLOQUE 12: FOOTER --- */
footer {
  background-color: #040605;
  color: rgba(255, 255, 255, 0.6);
  padding: 40px 0;
  text-align: center;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.security-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
}

.security-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(255, 255, 255, 0.04);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.security-badge-item svg {
  width: 14px;
  height: 14px;
  color: var(--accent-gold);
}

/* Animations */
@keyframes pulse {
  0% {
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(27, 67, 50, 0.25);
  }
  50% {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(27, 67, 50, 0.4);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(27, 67, 50, 0.25);
  }
}

@keyframes rotateSlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes counterRotateSlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

/* Responsive Media Queries */
@media (max-width: 767px) {
  section {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 24px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .btn-cta {
    font-size: 15px;
    padding: 16px 24px;
    width: 100%;
  }
  
  .timer-container {
    padding: 20px 15px;
  }
  
  .timer-segment {
    min-width: 60px;
    padding: 8px 10px;
  }
  
  .timer-number {
    font-size: 22px;
  }
  
  .ideal-text {
    font-size: 15px;
  }
  
  .cta-final h2 {
    font-size: 28px;
  }
  
  .cta-final p {
    font-size: 15px;
  }
}
