@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@1&family=Barlow:wght@300;400;500;600;700&display=swap');

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #FAF9F6; color: #2D2D2D; font-family: 'Barlow', sans-serif; }
img { max-width: 100%; }
a { color: #355E3B; text-decoration: none; }
a:hover { color: #F28C28; }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes btnPulse { 0%, 100% { box-shadow: 0 8px 24px rgba(242,140,40,0.35); } 50% { box-shadow: 0 10px 30px rgba(242,140,40,0.5); } }
@keyframes btnPulseGreen { 0%, 100% { box-shadow: 0 8px 24px rgba(53,94,59,0.28); } 50% { box-shadow: 0 10px 30px rgba(53,94,59,0.4); } }

.container { max-width: 1180px; margin: 0 auto; }

.btn-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: #F28C28; color: #FAF9F6; font-weight: 600; font-size: 16px;
  padding: 16px 30px; border-radius: 999px; text-decoration: none; border: none; cursor: pointer;
  animation: btnPulse 2.4s ease-in-out infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s ease;
}
.btn-cta:hover { background: #DD7A1E; color: #FAF9F6; transform: scale(1.06); box-shadow: 0 16px 36px rgba(242,140,40,0.55); animation-play-state: paused; }

.btn-guarantee {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: #355E3B; color: #FAF9F6; font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 15px;
  letter-spacing: 0.3px; padding: 17px 30px; border-radius: 999px; text-decoration: none; width: 100%;
  animation: btnPulseGreen 2.4s ease-in-out infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease; border: none; cursor: pointer;
}
.btn-guarantee:hover { color: #FAF9F6; transform: scale(1.03); box-shadow: 0 14px 30px rgba(53,94,59,0.3); animation-play-state: paused; }

.glass-border { position: relative; }
.glass-border::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1.2px;
  background: linear-gradient(180deg, rgba(45,45,45,0.15) 0%, rgba(45,45,45,0.06) 40%, rgba(45,45,45,0.03) 60%, rgba(45,45,45,0.15) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}

.reveal { filter: blur(10px); opacity: 0; transition: filter 0.6s ease-out, opacity 0.6s ease-out; }
.reveal.is-visible { filter: blur(0); opacity: 1; }

/* ---- URGENCY BAR ---- */
.urgency-bar { background: #355E3B; color: #FAF9F6; text-align: center; padding: 10px 16px; font-size: 13px; font-weight: 500; letter-spacing: 0.02em; display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.urgency-bar .timer { font-variant-numeric: tabular-nums; background: rgba(255,255,255,0.15); padding: 2px 10px; border-radius: 6px; font-weight: 600; }

/* ---- HERO ---- */
.hero { position: relative; min-height: 92svh; display: flex; align-items: center; overflow: hidden; }
.hero img.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 22%; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0) 65%); z-index: 1; pointer-events: none; }
.hero-inner { position: relative; z-index: 2; width: 100%; padding: 0 clamp(16px,5vw,64px); display: flex; }
.hero-card {
  position: relative; overflow: hidden; border-radius: 24px; padding: clamp(24px,4vw,40px);
  max-width: min(92vw,520px); width: 100%; background: rgba(255,255,255,0.12);
  backdrop-filter: blur(50px) saturate(1.15); -webkit-backdrop-filter: blur(50px) saturate(1.15);
  box-shadow: 4px 4px 4px rgba(0,0,0,0.15), inset 0 1px 1px rgba(255,255,255,0.25);
  display: flex; flex-direction: column; align-items: flex-start; gap: 20px;
}
.hero-card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1.4px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.2) 20%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%, rgba(255,255,255,0.2) 80%, rgba(255,255,255,0.5) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.hero-pill { position: relative; overflow: hidden; border-radius: 999px; padding: 10px 20px; background: rgba(255,255,255,0.14); box-shadow: inset 0 1px 1px rgba(255,255,255,0.3); }
.hero-pill span { font-size: 18px; font-weight: 500; color: #355E3B; letter-spacing: 0.02em; }
.hero h1 { margin: 0; font-family: 'Instrument Serif', serif; font-style: italic; font-size: clamp(32px,5.5vw,56px); line-height: 1.02; letter-spacing: -0.5px; color: #FAF9F6; text-shadow: 0 2px 16px rgba(0,0,0,0.25); display: flex; flex-wrap: wrap; row-gap: 0.1em; }
.hero h1 span { display: inline-block; margin-right: 0.28em; }
.hero h1 span.accent { color: #F28C28; }
.hero p.sub { margin: 0; max-width: 460px; font-size: 16px; line-height: 1.55; color: rgba(250,249,246,0.92); font-weight: 400; text-shadow: 0 1px 8px rgba(0,0,0,0.2); }
.trust-badges { display: flex; flex-wrap: wrap; gap: 16px; }
.trust-badges div { display: flex; align-items: center; gap: 7px; font-size: 13px; color: #FAF9F6; font-weight: 500; text-shadow: 0 1px 6px rgba(0,0,0,0.2); }

/* ---- SECTION HEADERS ---- */
.section-title { margin: 0 0 12px; font-family: 'Instrument Serif', serif; font-style: italic; font-size: clamp(30px,4.5vw,44px); color: #2D2D2D; }
.section-title.on-green { color: #FAF9F6; }
.section-title .accent { color: #F28C28; }
.section-sub { margin: 0; color: #555555; font-size: 16px; line-height: 1.5; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }

/* ---- GRIDS ---- */
.flex-grid { display: flex; flex-wrap: wrap; gap: 18px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 18px; }
.grid-auto-260 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 18px; }
.grid-auto-200 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 18px; }
.grid-auto-280 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 18px; }
.grid-plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 24px; align-items: stretch; }

.card-glass { position: relative; overflow: hidden; border-radius: 18px; padding: 24px 20px; background: rgba(53,94,59,0.04); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); box-shadow: inset 0 1px 1px rgba(255,255,255,0.5); display: flex; flex-direction: column; gap: 14px; }
.card-glass:hover { transform: scale(1.02); box-shadow: 0 14px 32px rgba(53,94,59,0.16), inset 0 1px 1px rgba(255,255,255,0.6); }
.icon-circle { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.icon-circle.sm { width: 48px; height: 48px; }
.icon-circle.orange { background: rgba(242,140,40,0.15); }
.icon-circle.sage { background: rgba(107,142,104,0.15); }
.card-glass p { margin: 0; font-size: 15px; font-weight: 500; color: #2D2D2D; line-height: 1.4; }
.span-2 { flex-grow: 2; flex-basis: 460px; min-width: 300px; }
.span-1 { flex-grow: 1; flex-basis: 230px; min-width: 200px; }

/* ---- TESTIMONIOS MARQUEE ---- */
.marquee-wrap { position: relative; overflow: hidden; max-width: 986px; margin: 0 auto; border-radius: 24px; padding: 22px; background: rgba(53,94,59,0.05); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); box-shadow: 0 16px 40px rgba(45,45,45,0.14), inset 0 1px 1px rgba(255,255,255,0.5); }
.marquee-track { overflow: hidden; width: 100%; }
.marquee-inner { display: flex; gap: 22px; width: max-content; animation: marquee 24s linear infinite; }
.marquee-wrap:hover .marquee-inner { animation-play-state: paused; }
.marquee-inner img { display: block; width: 220px; height: auto; border-radius: 16px; box-shadow: 0 8px 20px rgba(45,45,45,0.12); flex-shrink: 0; }

/* ---- PREPARA ---- */
.prep-card { position: relative; overflow: hidden; border-radius: 18px; background: rgba(53,94,59,0.04); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); box-shadow: inset 0 1px 1px rgba(255,255,255,0.5); display: flex; flex-direction: column; }
.prep-card img { display: block; width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.prep-card .prep-body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 6px; }
.prep-card h3 { margin: 0; font-family: 'Instrument Serif', serif; font-style: italic; font-size: 18px; color: #355E3B; }
.prep-card p { margin: 0; font-size: 13px; color: #555555; line-height: 1.4; }

/* ---- BONOS ---- */
.bono-card h3 { margin: 0; font-family: 'Instrument Serif', serif; font-style: italic; font-size: 22px; color: #2D2D2D; }
.bono-card p { margin: 0; font-size: 14px; color: #555555; line-height: 1.45; flex: 1; }
.bono-price { display: flex; align-items: baseline; gap: 8px; }
.bono-price .was { text-decoration: line-through; color: #555555; font-size: 14px; }
.bono-price .now { color: #F28C28; font-weight: 600; font-size: 14px; }
.bono-total { display: flex; justify-content: center; margin-top: 32px; }
.bono-total-pill { position: relative; overflow: hidden; border-radius: 999px; padding: 18px 36px; text-align: center; background: rgba(255,255,255,0.14); backdrop-filter: blur(50px) saturate(1.1); -webkit-backdrop-filter: blur(50px) saturate(1.1); box-shadow: 0 12px 30px rgba(45,45,45,0.14), inset 0 1px 1px rgba(255,255,255,0.5); }
.bono-total-pill::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1.4px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.2) 20%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%, rgba(255,255,255,0.2) 80%, rgba(255,255,255,0.5) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.bono-total-pill span { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 22px; color: #355E3B; font-weight: 600; }

/* ---- PLANES ---- */
.plan-card {
  position: relative; overflow: hidden; border-radius: 20px; padding: 32px 28px;
  background: rgba(255,255,255,0.13); backdrop-filter: blur(50px) saturate(1.1); -webkit-backdrop-filter: blur(50px) saturate(1.1);
  box-shadow: 4px 4px 4px rgba(0,0,0,0.1), inset 0 1px 1px rgba(255,255,255,0.35);
  display: flex; flex-direction: column; gap: 18px;
}
.plan-card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1.4px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.2) 20%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%, rgba(255,255,255,0.2) 80%, rgba(255,255,255,0.5) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.plan-card.featured {
  background: rgba(255,255,255,0.2);
  box-shadow: 0 20px 46px rgba(0,0,0,0.18), inset 0 1px 1px rgba(255,255,255,0.5);
}
.plan-card.featured::before { background: #F28C28; padding: 2px; }
.plan-badge { position: absolute; top: 16px; right: 16px; background: #F28C28; color: #FAF9F6; font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 999px; }
.plan-card h3 { margin: 0; font-family: 'Instrument Serif', serif; font-style: italic; font-size: 26px; color: #2D2D2D; }
.plan-price { display: flex; align-items: baseline; gap: 6px; }
.plan-price .amount { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 46px; color: #F28C28; }
.plan-price .cur { font-size: 14px; color: #3f3f3f; font-weight: 700; }
.plan-features { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan-features div { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: #2D2D2D; }
.plan-features svg { flex-shrink: 0; margin-top: 2px; }
.plan-cta {
  display: inline-flex; align-items: center; justify-content: center; text-decoration: none;
  font-weight: 600; font-size: 15px; padding: 14px 20px; border-radius: 999px; margin-top: 4px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s ease;
}
.plan-cta.primary { background: #F28C28; color: #FAF9F6; border: none; animation: btnPulse 2.4s ease-in-out infinite; }
.plan-cta.secondary { background: transparent; color: #355E3B; border: 1.5px solid #355E3B; }
.plan-cta:hover { transform: scale(1.06); box-shadow: 0 14px 30px rgba(45,45,45,0.28); animation-play-state: paused; }

/* ---- REVIEWS ---- */
.rating-summary { position: relative; overflow: hidden; border-radius: 24px; padding: 28px 32px; max-width: 520px; margin: 0 auto 44px; background: rgba(53,94,59,0.05); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px); box-shadow: 0 16px 40px rgba(45,45,45,0.12), inset 0 1px 1px rgba(255,255,255,0.5); display: flex; align-items: center; gap: 28px; }
.rating-summary::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1.4px;
  background: linear-gradient(180deg, rgba(45,45,45,0.15) 0%, rgba(45,45,45,0.06) 40%, rgba(45,45,45,0.03) 60%, rgba(45,45,45,0.15) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.rating-score { text-align: center; flex-shrink: 0; }
.rating-score .num { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 48px; color: #355E3B; line-height: 1; }
.rating-score .stars { color: #F28C28; font-size: 16px; letter-spacing: 2px; margin: 4px 0; }
.rating-score .count { font-size: 13px; color: #555555; }
.rating-bars { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.rating-bar-row { display: flex; align-items: center; gap: 8px; }
.rating-bar-row span { font-size: 12px; color: #555555; width: 10px; }
.rating-bar-track { flex: 1; height: 6px; border-radius: 999px; background: rgba(45,45,45,0.1); overflow: hidden; }
.rating-bar-fill { height: 100%; border-radius: 999px; background: #F28C28; }

.review-card { position: relative; overflow: hidden; border-radius: 18px; padding: 22px 20px; background: rgba(53,94,59,0.04); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); box-shadow: inset 0 1px 1px rgba(255,255,255,0.5); display: flex; flex-direction: column; gap: 10px; }
.review-stars { color: #F28C28; font-size: 14px; letter-spacing: 2px; }
.review-head { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; color: #FAF9F6; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; }
.review-avatar.orange { background: #F28C28; }
.review-avatar.sage { background: #6B8E68; }
.review-head p.name { margin: 0; font-size: 14px; font-weight: 600; color: #2D2D2D; }
.review-head p.date { margin: 0; font-size: 12px; color: #555555; }
.review-card > p.text { margin: 0; font-size: 14px; color: #555555; line-height: 1.5; }
.review-pills { display: flex; gap: 8px; margin-top: 4px; }
.review-pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; background: rgba(45,45,45,0.05); font-size: 12px; font-weight: 600; color: #355E3B; }

/* ---- GARANTIA ---- */
.guarantee-card { max-width: 520px; margin: 0 auto; background: #FFFFFF; border-radius: 28px; padding: 44px 36px; display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; box-shadow: 0 24px 60px rgba(45,45,45,0.1); border: 1px solid rgba(53,94,59,0.08); }
.guarantee-card img { width: 140px; height: 140px; object-fit: contain; }
.guarantee-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(107,142,104,0.14); padding: 6px 16px; border-radius: 999px; }
.guarantee-pill span { font-family: 'Barlow', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; color: #355E3B; }
.guarantee-card h3 { margin: 0; font-family: 'Instrument Serif', serif; font-style: italic; font-size: clamp(26px,4vw,34px); color: #355E3B; }
.guarantee-card > p { margin: 0; color: #5B5B5B; font-size: 15px; line-height: 1.6; max-width: 400px; }
.guarantee-card > p .hl { color: #F28C28; font-weight: 700; }

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { position: relative; overflow: hidden; border-radius: 16px; background: #FFFFFF; box-shadow: 0 4px 16px rgba(45,45,45,0.06); border: 1px solid rgba(53,94,59,0.08); }
.faq-row { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: transparent; border: none; cursor: pointer; padding: 20px 22px; text-align: left; font-family: 'Barlow', sans-serif; font-size: 16px; font-weight: 600; color: #2D2D2D; }
.faq-row svg { transition: transform 0.25s ease; flex-shrink: 0; }
.faq-item.open .faq-row svg { transform: rotate(180deg); }
.faq-answer { margin: 0; padding: 0 22px 20px; color: #5B5B5B; font-size: 14.5px; line-height: 1.6; font-family: 'Barlow', sans-serif; display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-cta { display: flex; justify-content: center; margin-top: 44px; }
