/* === RESET === */
*, *::before, *::after { box-sizing: border-box; }
html { height: 100%; scroll-behavior: smooth; }
body { margin: 0; padding: 0; font-size: 15px; line-height: 1.6; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* === LANDING WRAP === */
.landing-wrap *, .landing-wrap *::before, .landing-wrap *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}
.landing-wrap {
  --green: #007a3f;
  --bg: #e8f1df;
  --white: #ffffff;
  background: var(--bg);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--green);
  overflow-x: hidden;
}

/* === TICKER === */
.landing-wrap .ticker-wrap {
  background: var(--green); color: var(--white);
  padding: 11px 0; overflow: hidden; white-space: nowrap;
  position: sticky; top: 0; z-index: 100;
}
.landing-wrap .ticker-track {
  display: inline-flex;
  animation: ticker 30s linear infinite;
}
.landing-wrap .ticker-track span {
  font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; padding: 0 28px;
}
.landing-wrap .ticker-track span::after { content: '✦'; margin-left: 28px; opacity: 0.5; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === HERO === */
.landing-wrap .hero {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 0 60px; overflow: hidden;
}
.landing-wrap .food-row {
  display: flex; justify-content: center; align-items: flex-end;
  gap: 16px; padding: 28px 20px 0; width: 100%;
}
.landing-wrap .food-bubble-wrap {
  border-radius: 50%; overflow: hidden; flex-shrink: 0;
  border: 5px solid var(--white);
  box-shadow: 0 16px 40px rgba(0,80,30,0.18);
}
.landing-wrap .food-bubble-wrap.big { width: 148px; height: 148px; animation: floatA 7s ease-in-out infinite; will-change: transform; }
.landing-wrap .food-bubble-wrap.mid { width: 122px; height: 122px; animation: floatB 8s ease-in-out infinite 0.8s; will-change: transform; }
.landing-wrap .food-bubble {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transform: scale(1.15);
}
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.landing-wrap .hero-inner {
  text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: 20px; padding: 32px 28px 0;
  width: 100%; max-width: 480px;
}
.landing-wrap .woman-img {
  width: min(82vw, 340px); border-radius: 20px;
  box-shadow: 0 24px 70px rgba(0,122,63,0.18);
  animation: floatWoman 6s ease-in-out infinite;
  will-change: transform;
}
@keyframes floatWoman { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

.landing-wrap h1 {
  font-family: 'Raleway', sans-serif; font-weight: 900;
  font-size: clamp(26px,7.5vw,48px); line-height: 1.18; color: var(--green);
}
.landing-wrap .highlight { position: relative; display: inline; }
.landing-wrap .highlight::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 5px;
  background: var(--green); border-radius: 4px; opacity: 0.25;
}
.landing-wrap .subtitle {
  font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: clamp(17px,4.5vw,22px); color: var(--green); line-height: 1.4;
}
.landing-wrap .body-text {
  font-size: clamp(14px,3.8vw,17px); line-height: 1.75; color: var(--green); opacity: 0.78;
}
.landing-wrap .divider {
  width: 50px; height: 3px; background: var(--green); border-radius: 4px; opacity: 0.25;
}

/* === PARA TI SI === */
.landing-wrap .para-ti {
  background: var(--green); width: 100%; padding: 40px 28px 48px;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.landing-wrap .para-ti h2 {
  font-family: 'Raleway', sans-serif; font-weight: 900;
  font-size: clamp(18px,5.2vw,42px); color: var(--white);
  text-align: center; line-height: 1.2;
}
.landing-wrap .para-ti h2 .dim { opacity: 0.55; font-weight: 700; }
.landing-wrap .para-ti-list {
  list-style: none; display: flex; flex-direction: column; gap: 20px;
  width: 100%; max-width: 440px;
}
.landing-wrap .para-ti-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: clamp(14px,4vw,17px); color: rgba(255,255,255,0.88); line-height: 1.55;
}
.landing-wrap .para-ti-list li .icon {
  flex-shrink: 0; width: 28px; height: 28px;
  background: rgba(255,255,255,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 13px; margin-top: 1px;
}
.landing-wrap .para-ti-list li strong { color: var(--white); font-weight: 700; }

/* === QUÉ ENCONTRARÁS === */
.landing-wrap .que-encontraras {
  background: var(--bg); width: 100%; padding: 52px 24px 60px;
  display: flex; flex-direction: column; align-items: center; gap: 32px;
}
.landing-wrap .que-encontraras h2 {
  font-family: 'Raleway', sans-serif; font-weight: 900;
  font-size: clamp(20px,6vw,38px); color: var(--green); text-align: center; line-height: 1.2;
}
.landing-wrap .que-encontraras h2 span {
  display: block; font-weight: 400; font-size: clamp(14px,3.8vw,18px); opacity: 0.6; margin-top: 6px;
}
.landing-wrap .receta-list {
  list-style: none; display: flex; flex-direction: column; gap: 18px; width: 100%; max-width: 440px;
}
.landing-wrap .receta-item {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); border-radius: 18px; padding: 14px 16px;
  box-shadow: 0 4px 20px rgba(0,80,30,0.08);
}
.landing-wrap .receta-img-wrap {
  width: 120px; height: 120px; border-radius: 50%; overflow: hidden;
  flex-shrink: 0; border: 4px solid var(--bg);
  box-shadow: 0 6px 20px rgba(0,80,30,0.15); background: #fff;
}
.landing-wrap .receta-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transform: scale(1.6);
}
.landing-wrap .receta-text { display: flex; flex-direction: column; gap: 4px; }
.landing-wrap .receta-title {
  font-family: 'Raleway', sans-serif; font-weight: 800;
  font-size: clamp(14px,4vw,17px); color: var(--green); line-height: 1.2;
}
.landing-wrap .receta-desc {
  font-size: clamp(12px,3.2vw,14px); color: var(--green); opacity: 0.7; line-height: 1.45;
}
.landing-wrap .img-desayunos  { transform: scale(2.2); object-position: center center; }
.landing-wrap .img-comidas    { transform: scale(1.6); object-position: center center; }
.landing-wrap .img-cenas      { transform: scale(1.8); object-position: center center; }
.landing-wrap .img-meriendas  { transform: scale(1.8); object-position: center center; }
.landing-wrap .img-airfryer   { transform: scale(1.8); object-position: center 30%; }
.landing-wrap .img-smoothies  { transform: scale(1.4); object-position: center 30%; }
.landing-wrap .img-bowls      { transform: scale(1.3); object-position: center center; }
.landing-wrap .img-ensaladas  { transform: scale(1.8); object-position: center center; }
.landing-wrap .img-vegetarianas { transform: scale(1.6); object-position: center center; }

/* === CONSEGUIRÁS === */
.landing-wrap .conseguiras {
  background: var(--green); width: 100%; padding: 52px 24px 64px;
  display: flex; flex-direction: column; align-items: center; gap: 36px;
}
.landing-wrap .conseguiras h2 {
  font-family: 'Raleway', sans-serif; font-weight: 900;
  font-size: clamp(22px,6.5vw,40px); color: var(--white); text-align: center; line-height: 1.2;
}
.landing-wrap .beneficio-list {
  list-style: none; display: flex; flex-direction: column; gap: 16px; width: 100%; max-width: 440px;
}
.landing-wrap .beneficio-item {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 18px; padding: 20px 18px; display: flex; flex-direction: column;
  gap: 8px; position: relative; overflow: hidden;
}
.landing-wrap .beneficio-item::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: rgba(255,255,255,0.5); border-radius: 4px 0 0 4px;
}
.landing-wrap .beneficio-titulo {
  font-family: 'Raleway', sans-serif; font-weight: 800;
  font-size: clamp(15px,4.2vw,18px); color: var(--white); line-height: 1.25;
}
.landing-wrap .beneficio-desc {
  font-size: clamp(13px,3.5vw,15px); color: rgba(255,255,255,0.75); line-height: 1.55;
}

/* === ASÍ VERÁS / OFERTA === */
.landing-wrap .asi-veras {
  background: var(--bg); width: 100%; padding: 40px 20px 48px;
  display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center;
}
.landing-wrap .asi-veras h2 {
  font-family: 'Raleway', sans-serif; font-weight: 900;
  font-size: clamp(28px,8vw,48px); color: var(--green); line-height: 1.15;
}
.landing-wrap .asi-veras-sub {
  font-size: clamp(13px,3.5vw,15px); color: var(--green); opacity: 0.6; margin-top: -4px;
}
.landing-wrap .ipads-img {
  width: min(96vw,500px); border-radius: 16px;
  filter: drop-shadow(0 20px 50px rgba(0,80,30,0.18));
}
.landing-wrap .compra-box {
  display: flex; flex-direction: column; align-items: center; gap: 4px; padding-top: 12px; width: 100%;
}
.landing-wrap .compra-con {
  font-family: 'Raleway', sans-serif; font-weight: 900;
  font-size: clamp(24px,7vw,36px); color: var(--green);
}
.landing-wrap .compra-hoy {
  font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: clamp(17px,5vw,22px); color: var(--green); opacity: 0.75; margin-bottom: 16px;
}

/* === PRODUCT CARD === */
.landing-wrap .producto-card {
  background: var(--white); border-radius: 24px; padding: 24px 20px 28px;
  width: min(92vw,440px); box-shadow: 0 8px 40px rgba(0,80,30,0.12);
  display: flex; flex-direction: column; gap: 16px;
}
.landing-wrap .producto-cover { width: 100%; border-radius: 16px; object-fit: cover; }
.landing-wrap .producto-titulo {
  font-family: 'Raleway', sans-serif; font-weight: 900;
  font-size: clamp(20px,5.5vw,26px); color: var(--green); line-height: 1.2;
}
.landing-wrap .producto-titulo small { font-size: 0.65em; font-weight: 500; opacity: 0.6; }
.landing-wrap .producto-precio-wrap { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.landing-wrap .precio-nuevo {
  font-family: 'Raleway', sans-serif; font-weight: 900;
  font-size: clamp(28px,8vw,38px); color: var(--green);
}
.landing-wrap .precio-viejo { font-size: clamp(16px,4.5vw,20px); color: #999; text-decoration: line-through; }
.landing-wrap .badge-descuento {
  background: #ff4d4d; color: #fff; font-family: 'Raleway', sans-serif;
  font-weight: 800; font-size: 13px; padding: 4px 10px; border-radius: 100px;
}
.landing-wrap .producto-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.landing-wrap .producto-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: clamp(13px,3.5vw,15px); color: var(--green); line-height: 1.4;
}
.landing-wrap .producto-features li .check {
  flex-shrink: 0; width: 22px; height: 22px; background: var(--green);
  border-radius: 50%; color: white; font-size: 12px;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.landing-wrap .social-proof {
  background: #fff8e1; border: 1px solid #ffe082; border-radius: 12px;
  padding: 12px 14px; display: flex; align-items: flex-start; gap: 10px;
  font-size: clamp(12px,3.2vw,14px); color: #7a5800; line-height: 1.4;
}
.landing-wrap .trust-badge {
  background: #f0faf4; border: 1px solid rgba(0,122,63,0.2); border-radius: 12px;
  padding: 10px 14px; font-size: clamp(11px,3vw,13px); color: var(--green);
  font-weight: 600; text-align: center; letter-spacing: 0.02em;
}
.landing-wrap .btn-comprar {
  background: var(--green); color: var(--white); font-family: 'Raleway', sans-serif;
  font-weight: 900; font-size: clamp(16px,4.5vw,19px); padding: 18px;
  border-radius: 100px; border: none; cursor: pointer; width: 100%; text-align: center;
  box-shadow: 0 8px 30px rgba(0,122,63,0.35); letter-spacing: 0.01em;
  display: block; text-decoration: none; transition: background 0.2s;
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
.landing-wrap .btn-comprar:hover { background: #005e2f; }
.landing-wrap .recibiras .btn-comprar { background: var(--white); color: var(--green); box-shadow: 0 8px 30px rgba(0,0,0,0.18); }
.landing-wrap .recibiras .btn-comprar:hover { background: #f0f0f0; }
.landing-wrap .btn-trust {
  font-size: 11px; color: var(--green); opacity: 0.55;
  text-align: center; margin-top: 10px; letter-spacing: 0.02em;
  white-space: nowrap;
}
.landing-wrap .pagos-wrap {
  display: flex; justify-content: center; align-items: center;
  gap: 8px; margin-top: 14px; flex-wrap: nowrap;
}
.landing-wrap .pagos-wrap svg { flex-shrink: 0; }

/* === FAQ === */
.landing-wrap .faq {
  background: var(--bg); width: 100%; padding: 52px 20px 64px;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.landing-wrap .faq h2 {
  font-family: 'Raleway', sans-serif; font-weight: 900;
  font-size: clamp(22px,6.5vw,40px); color: var(--green); text-align: center; line-height: 1.2;
}
.landing-wrap .faq-list {
  list-style: none; width: 100%; max-width: 440px; display: flex; flex-direction: column; gap: 10px;
}
.landing-wrap .faq-item {
  background: var(--white); border-radius: 16px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,80,30,0.07);
}
.landing-wrap .faq-question {
  width: 100%; background: none; border: none; padding: 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  cursor: pointer; text-align: left;
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
.landing-wrap .faq-question .faq-text {
  font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: clamp(14px,3.8vw,16px); color: var(--green); line-height: 1.3;
}
.landing-wrap .faq-icon {
  flex-shrink: 0; width: 28px; height: 28px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 20px; line-height: 1; font-weight: 300;
  transition: transform 0.3s ease;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.landing-wrap .faq-item.open .faq-icon { transform: rotate(45deg); }
.landing-wrap .faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 18px;
}
.landing-wrap .faq-item.open .faq-answer { max-height: 400px; padding: 0 18px 18px; }
.landing-wrap .faq-answer p {
  font-size: clamp(13px,3.5vw,15px); color: var(--green); opacity: 0.78; line-height: 1.65;
  border-top: 1px solid rgba(0,122,63,0.1); padding-top: 14px;
}

/* === RECIBIRÁS === */
.landing-wrap .recibiras {
  background: var(--green); width: 100%; padding: 52px 20px 64px;
  display: flex; flex-direction: column; align-items: center; gap: 28px; text-align: center;
}
.landing-wrap .recibiras .sec-label {
  font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: clamp(11px,3vw,13px); color: rgba(255,255,255,0.6);
  letter-spacing: 0.14em; text-transform: uppercase;
}
.landing-wrap .recibiras h2 {
  font-family: 'Raleway', sans-serif; font-weight: 900;
  font-size: clamp(26px,8vw,44px); color: var(--white); line-height: 1.1; margin-top: -12px;
}
.landing-wrap .portadas-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; width: 100%; max-width: 440px;
}
.landing-wrap .portada-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.landing-wrap .portada-img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.landing-wrap .portada-nombre {
  font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: clamp(10px,2.8vw,13px); color: rgba(255,255,255,0.9); line-height: 1.3; text-align: center;
}
.landing-wrap .total-recetas {
  font-family: 'Raleway', sans-serif; font-weight: 900;
  font-size: clamp(26px,7.5vw,40px); color: var(--white); text-align: center; line-height: 1.2; padding-top: 8px;
}
.landing-wrap .precio-total-wrap { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.landing-wrap .precio-tachado { font-size: clamp(14px,4vw,17px); color: rgba(255,255,255,0.55); }
.landing-wrap .precio-tachado span { text-decoration: line-through; }
.landing-wrap .precio-hoy {
  font-family: 'Raleway', sans-serif; font-weight: 900;
  font-size: clamp(28px,8vw,42px); color: var(--white); line-height: 1.1;
}
.landing-wrap .precio-hoy em {
  font-style: normal; font-size: clamp(12px,3.2vw,15px); font-weight: 700;
  background: #e53935; color: white; padding: 3px 10px; border-radius: 100px;
  margin-right: 8px; vertical-align: middle; letter-spacing: 0.06em;
}
.landing-wrap .oferta-badge {
  background: var(--white); border-radius: 100px; padding: 12px 24px;
  font-family: 'Raleway', sans-serif; font-weight: 800;
  font-size: clamp(13px,3.8vw,16px); color: var(--green); letter-spacing: 0.04em;
}
.landing-wrap .oferta-badge span { color: #e53935; }
.landing-wrap .bonus-sep {
  width: 100%; max-width: 440px; display: flex; align-items: center; gap: 10px;
}
.landing-wrap .bonus-sep::before, .landing-wrap .bonus-sep::after {
  content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.25);
}
.landing-wrap .bonus-sep span {
  font-family: 'Raleway', sans-serif; font-weight: 800;
  font-size: clamp(12px,3.2vw,14px); color: var(--white); white-space: nowrap; letter-spacing: 0.06em;
}
.landing-wrap .bonus-center-wrap {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 14px;
  width: 100%; max-width: 440px;
}
.landing-wrap .bonus-wrap { position: relative; width: 100%; }
.landing-wrap .bonus-tag {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  background: #e53935; color: white; font-family: 'Raleway', sans-serif;
  font-weight: 900; font-size: 10px; letter-spacing: 0.1em;
  padding: 4px 10px; border-radius: 100px; white-space: nowrap;
}

/* === GARANTÍA === */
.landing-wrap .garantia {
  background: var(--bg); width: 100%; padding: 24px 0;
  display: flex; flex-direction: column; align-items: center; overflow: hidden;
}
.landing-wrap .garantia-img { width: 100%; max-width: 500px; display: block; margin: 0 auto; }

/* === INCLUYE === */
.landing-wrap .incluye {
  background: var(--white); width: 100%; padding: 40px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
.landing-wrap .incluye h2 {
  font-family: 'Raleway', sans-serif; font-weight: 900;
  font-size: clamp(22px,6.5vw,38px); color: var(--green); text-align: center; line-height: 1.2;
}
.landing-wrap .incluye-list {
  list-style: none; width: 100%; max-width: 440px; display: flex; flex-direction: column;
}
.landing-wrap .incluye-item {
  display: flex; align-items: flex-start; gap: 14px; padding: 16px 0;
  border-bottom: 1px solid rgba(0,122,63,0.1);
}
.landing-wrap .incluye-item:last-child { border-bottom: none; }
.landing-wrap .incluye-emoji { font-size: 22px; flex-shrink: 0; margin-top: 1px; }
.landing-wrap .incluye-texto { display: flex; flex-direction: column; gap: 2px; }
.landing-wrap .incluye-titulo {
  font-family: 'Raleway', sans-serif; font-weight: 800;
  font-size: clamp(14px,4vw,16px); color: var(--green); line-height: 1.25;
}
.landing-wrap .incluye-desc {
  font-size: clamp(12px,3.2vw,14px); color: var(--green); opacity: 0.65; line-height: 1.5;
}

/* === FOOTER === */
.landing-wrap .site-footer {
  background: #1a1a1a; color: rgba(255,255,255,0.65); padding: 40px 24px;
}
.landing-wrap .footer-inner {
  display: flex; flex-direction: column; gap: 24px; max-width: 440px; margin: 0 auto;
}
.landing-wrap .footer-social { display: flex; gap: 16px; flex-wrap: wrap; }
.landing-wrap .social-link {
  display: flex; align-items: center; gap: 8px; font-size: 14px;
  font-weight: 600; color: rgba(255,255,255,0.8); transition: color 0.2s;
}
.landing-wrap .social-link:hover { color: #ffd700; }
.landing-wrap .footer-pay { display: flex; flex-direction: column; gap: 8px; }
.landing-wrap .payment-methods { display: flex; flex-wrap: wrap; gap: 6px; }
.landing-wrap .payment-methods span {
  font-size: 11px; font-weight: 600; padding: 3px 9px;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 4px; color: rgba(255,255,255,0.65);
}
.landing-wrap .footer-copy { font-size: 12px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 16px; }
.landing-wrap .footer-copy a { color: rgba(255,255,255,0.55); text-decoration: underline; }

/* === STICKY CTA MOBILE === */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  padding: 12px 20px; background: #fff;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  display: flex; justify-content: center;
  transform: translateY(100%); transition: transform 0.35s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .btn-comprar { width: 100%; max-width: 440px; font-size: 16px; padding: 16px; margin: 0; }

@media (min-width: 900px) { .sticky-cta { display: none; } }
@media (max-width: 899px) { body { padding-bottom: 72px; } }

@media (prefers-reduced-motion: reduce) {
  .landing-wrap .ticker-track { animation: none; }
  .landing-wrap .food-bubble-wrap.big,
  .landing-wrap .food-bubble-wrap.mid { animation: none; }
  .landing-wrap .woman-img { animation: none; }
  .sticky-cta { transition: none; }
  .landing-wrap .faq-answer { transition: none; }
}
