/* ============================================================
   PROTOCOLO INTESTINO SALUDABLE - ESTILOS
   ============================================================ */

/* RESET GENERAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #FDFCF8;
  color: #2c3e3a;
  font-size: 1.05em;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* TIPOGRAFÍA SERIF PARA TÍTULOS */
h1, h2, h3 {
  font-family: 'Lora', serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* HERO */
.hero {
  background: url('https://images.unsplash.com/photo-1556228893-4d56aa5000d4?auto=format&fit=crop&w=1500&q=80') no-repeat center center/cover;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 40px 20px;
  color: #fff;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(168, 213, 186, 0.85);
  z-index: 1;
}

.hero-texto {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  font-family: 'Lora', serif;
  font-size: 3em;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-family: 'Inter', sans-serif;
  font-size: 1.2em;
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1.7;
}

.btn {
  display: inline-block;
  background-color: #ffffff;
  color: #2c3e3a;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.05em;
  font-family: 'Inter', sans-serif;
  border: 2px solid #A8D5BA;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #A8D5BA;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(75, 107, 92, 0.2);
}

.btn.grande {
  font-size: 1.15em;
  padding: 16px 36px;
}

/* MAIN */
main.contenido {
  max-width: 900px;
  margin: auto;
  padding: 60px 20px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

h2 {
  font-family: 'Lora', serif;
  font-size: 1.9em;
  color: #4b6b5c;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.3;
}

h3 {
  font-family: 'Lora', serif;
  font-size: 1.4em;
  color: #4b6b5c;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 600;
}

p {
  font-family: 'Inter', sans-serif;
  margin-bottom: 20px;
}

ul {
  padding-left: 20px;
  margin: 20px 0;
}

ul li {
  font-family: 'Inter', sans-serif;
  margin-bottom: 10px;
}

.nota {
  font-family: 'Lora', serif;
  font-style: italic;
  color: #666;
  margin-top: 20px;
}

/* TESTIMONIOS */
.testimonios {
  margin-top: 60px;
}

.testimonio {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.testimonio img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #A8D5BA;
}

.testimonio p {
  margin: 0;
  font-size: 1em;
  font-family: 'Inter', sans-serif;
}

.testimonio p strong {
  font-family: 'Lora', serif;
  font-weight: 600;
  color: #4b6b5c;
}

/* CTA FINAL */
.cta-final {
  text-align: center;
  margin: 60px 0;
}

/* ============================================================
   FOOTER COMPLETO MUNDPAY-READY
   ============================================================ */
.footer {
  background-color: #f5f5f3;
  padding: 50px 20px 30px;
  text-align: center;
  font-size: 0.9em;
  color: #5a6e68;
  border-top: 1px solid #e5e9e6;
}

.footer-marca {
  font-family: 'Lora', serif;
  font-size: 1.3em;
  color: #4b6b5c;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 0.02em;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 20px 0;
  font-size: 0.95em;
}

.footer-links a {
  color: #4b6b5c;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #7FB89C;
  text-decoration: underline;
}

.footer-links .separador {
  color: #c9d1cb;
}

.footer-contacto {
  margin: 20px 0 10px;
  font-size: 0.95em;
  color: #5a6e68;
}

.footer-contacto a {
  color: #4b6b5c;
  text-decoration: none;
  font-weight: 500;
}

.footer-contacto a:hover {
  color: #7FB89C;
  text-decoration: underline;
}

.footer-empresa {
  font-size: 0.88em;
  color: #5a6e68;
  margin: 20px 0;
  line-height: 1.7;
}

.footer-empresa strong {
  color: #2c3e3a;
  font-weight: 600;
}

.footer-disclaimer {
  font-family: 'Lora', serif;
  font-size: 0.85em;
  color: #7a8a85;
  font-style: italic;
  max-width: 720px;
  margin: 20px auto 0;
  line-height: 1.7;
}

.footer-copyright {
  font-size: 0.85em;
  color: #7a8a85;
  margin-top: 20px;
  letter-spacing: 0.05em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2em;
  }

  .hero p {
    font-size: 1em;
  }

  .btn {
    font-size: 1em;
    padding: 12px 24px;
  }

  .hero {
    height: auto;
    padding: 60px 20px;
  }

  main.contenido {
    padding: 40px 16px;
  }

  h2 {
    font-size: 1.6em;
  }

  h3 {
    font-size: 1.25em;
  }

  .testimonio {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer {
    padding: 40px 20px 25px;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  .footer-links .separador {
    display: none;
  }
}

/* ============================================================
   HERO CON FONDO COMPLETO (banner del producto)
   ============================================================ */
.hero-fondo {
  position: relative;
  background: url('imagenes/protocolo-portada.png') no-repeat center center/cover;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero-fondo .hero-texto {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-fondo .hero-texto h1 {
  font-family: 'Lora', serif;
  font-size: 3em;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.hero-fondo .hero-texto p {
  font-family: 'Inter', sans-serif;
  font-size: 1.2em;
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-fondo .hero-texto h1 {
    font-size: 2.2em;
  }

  .hero-fondo .hero-texto p {
    font-size: 1em;
  }

  .hero-fondo {
    height: auto;
    padding: 80px 20px;
  }
}
