/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #1c1c1c;
  background-color: #F6F1EB;
}

.dorado {
  color: #7A9E7E;
}

.contenedor {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* HERO */
.hero {
  background-color: #fff;
  padding: 4rem 0;
}

.hero-contenedor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.hero-texto {
  max-width: 600px;
}

.hero-eyebrow {
  font-size: 0.9rem;
  font-weight: bold;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-titulo {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin: 1rem 0;
  line-height: 1.2;
}

.hero-descripcion {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.urgencia {
  color: #7A9E7E;
  font-weight: 600;
  margin-bottom: 1.6rem;
}

.hero-botones {
  display: flex;
  gap: 1rem;
}

.boton {
  padding: 0.9rem 1.6rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.boton--primario {
  background-color: #7A9E7E;
  color: #fff;
  border: none;
}

.boton--primario:hover {
  background-color: #BFA254;
}

.boton--secundario {
  background-color: transparent;
  color: #7A9E7E;
  border: 2px solid #7A9E7E;
}

.boton--secundario:hover {
  background-color: #7A9E7E;
  color: #fff;
}

.hero-imagen img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(78, 148, 79, 0.08);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-contenedor {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-botones {
    justify-content: center;
    flex-direction: column;
  }

  .boton {
    width: 100%;
  }
}

.hero-refinado {
  padding: 6rem 0;
  background: #fefefe;
}

.hero-contenedor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero-eyebrow {
  font-size: 0.95rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-titulo {
  font-family: 'Playfair Display', serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 1.2rem 0;
  color: #2F2F2F;
}

.hero-descripcion {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

.urgencia {
  color: #7A9E7E;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.hero-botones {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.boton {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.boton--primario {
  background-color: #7A9E7E;
  color: white;
  box-shadow: 0 6px 18px rgba(78, 148, 79, 0.08);
}

.boton--primario:hover {
  background-color: #BFA254;
  transform: translateY(-2px);
}

.boton--secundario {
  background: transparent;
  border: 2px solid #7A9E7E;
  color: #7A9E7E;
}

.boton--secundario:hover {
  background-color: #7A9E7E;
  color: white;
}

.hero-imagen img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 12px 32px rgba(78, 148, 79, 0.08);
  object-fit: cover;
  max-height: 460px;
}

/* Animación sutil botón */
.animado {
  animation: pulseBoton 1.6s infinite ease-in-out;
}

@keyframes pulseBoton {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-contenedor {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-botones {
    flex-direction: column;
    align-items: center;
  }

  .boton {
    width: 100%;
    max-width: 280px;
  }
}

/* Carrusel dentro del Hero */
/* Carrusel dentro del Hero */
.carrusel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 12px 32px rgba(78, 148, 79, 0.08);
}

.carrusel img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* ahora llena el contenedor */
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  border-radius: 1.5rem;
}

.carrusel img.activa {
  opacity: 1;
  z-index: 2;
}
.hero-imagen {
  width: 100%;
  max-width: 600px;
  height: 380px; /* puedes ajustar este valor */
  position: relative;
}

/*LANDING MOVILES*/
@media (max-width: 768px) {
  .hero-refinado {
    padding: 4rem 1.5rem 3rem;
  }

  .hero-eyebrow {
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
  }

  .hero-titulo {
    font-size: 2.2rem;
    line-height: 1.25;
    margin-bottom: 1.2rem;
  }

  .hero-descripcion {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
  }

  .urgencia {
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
  }

  .hero-botones {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .boton {
    font-size: 1rem;
    padding: 1rem;
    width: 100%;
    max-width: 100%;
  }

  .hero-imagen {
    margin-top: 2.5rem;
    height: 240px; /* asegura visibilidad de imagen */
  }

  .carrusel img {
    height: 240px;
    object-fit: cover;
  }
}
/* Ajuste de separación imagen ↔ texto para móviles */
@media (max-width: 768px) {
  .hero-imagen.mobile-prioridad {
    margin-bottom: 0.5rem; /* Antes estaba en 1.5rem */
  }

  .hero-refinado {
    padding-top: 1rem; /* Reduce espacio general superior */
    padding-bottom: 1.5rem;
  }

  .hero-texto {
    margin-top: 0; /* Elimina cualquier separación superior adicional */
  }

  .hero-eyebrow {
    margin-top: 0.2rem;
    margin-bottom: 0.4rem;
  }

  .hero-titulo {
    font-size: 1.75rem;     /* Reduce el tamaño para caber en dos líneas */
    line-height: 1.3;
    margin-bottom: 1rem;
  }
}


  .urgencia {
    margin-bottom: 1.2rem;
  }

  /* PANTALLAS DE DISPOSITIVOS MOVILES HERO*/
  @media (max-width: 768px) {
  .hero-refinado {
    padding-top: 2rem; /* menos espacio arriba */
    padding-bottom: 2.5rem;
  }

  .hero-contenedor {
    row-gap: 1.5rem; /* reduce el gap entre imagen y texto */
  }

  .hero-imagen {
    height: 220px; /* más compacto */
    margin-bottom: 0.8rem;
  }

  .carrusel img {
    height: 220px;
  }

  .hero-eyebrow {
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
    font-size: 0.8rem;
  }

  .hero-titulo {
    font-size: 1.9rem;
    line-height: 1.25;
    margin-bottom: 0.8rem;
  }

  .hero-descripcion {
    margin-bottom: 0.8rem;
    font-size: 1rem;
  }

  .urgencia {
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
  }

  .hero-botones {
    margin-top: 0.5rem;
  }
}


/* BENEFICIOS VISUAL PREMIUM */
.grid-beneficios {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2rem;
}

.beneficio-card.premium {
  flex: 1 1 280px;
  max-width: 300px;
  background: #ffffff;
  padding: 2.8rem 2rem;
  border-radius: 1.8rem;
  box-shadow: 0 20px 50px rgba(78, 148, 79, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.beneficio-card.premium::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 2rem;
  background: linear-gradient(135deg, #fceabb 0%, #f8b500 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.beneficio-card.premium:hover::before {
  opacity: 0.15;
}

.icono-svg {
  margin-bottom: 1.6rem;
}

.icono-svg svg {
  width: 56px;
  height: 56px;
  stroke: #c89e38;
}

.beneficio-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #2F2F2F;
}

.beneficio-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  max-width: 300px;
}
/* 🟡 Diseño Pirámide para Beneficios */
.piramide-beneficios {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  margin-top: 3rem;
}

.fila {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.fila-superior {
  justify-content: center;
}

.fila-inferior {
  justify-content: center;
}

@media (max-width: 768px) {
  .piramide-beneficios {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
  }

  .fila {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1.5rem;
  }

  .fila-superior,
  .fila-inferior {
    flex-direction: row;
  }

  .beneficio-card.premium {
    flex: 0 0 80%;
    scroll-snap-align: start;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .grid-beneficios {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 1rem;
  }

  .beneficio-card.premium {
    min-width: 260px;
    max-width: 260px;
    flex-shrink: 0;
  }

  .icono-svg svg {
    width: 48px;
    height: 48px;
  }
}
.beneficios-vida {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1.5rem;
  padding: 2rem 1rem;
  -webkit-overflow-scrolling: touch;
  scroll-padding-left: 1rem;
}

.beneficios-vida > .beneficio-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 12px 32px rgba(78, 148, 79, 0.08);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.beneficio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(78, 148, 79, 0.08);
}

.beneficio-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.beneficio-card p {
  font-size: 0.95rem;
  color: #4A4A4A;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .beneficios-vida {
    justify-content: center;
    flex-wrap: wrap;
  }

  .beneficios-vida > .beneficio-card {
    flex: 0 1 calc(20% - 1rem);
    max-width: 260px;
  }
}

/*GALERIA*/
.galeria {
  background-color: #fff;
  padding: 6rem 1.5rem;
}

.grid-galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.grid-galeria img {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  cursor: pointer;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(78, 148, 79, 0.08);
}

.grid-galeria img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(78, 148, 79, 0.08);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  padding: 1rem;
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 1rem;
  box-shadow: 0 12px 48px rgba(78, 148, 79, 0.08);
}

.lightbox.activo {
  opacity: 1;
  visibility: visible;
}

/* 🎯 RESPONSIVE: Ajustes para pantallas menores a 768px */
@media (max-width: 768px) {
  .galeria {
    padding: 4rem 1rem;
  }

  .grid-galeria {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .grid-galeria img {
    border-radius: 1.2rem;
  }

  .lightbox img {
    max-height: 80vh;
  }
}

.grid-galeria img {
  width: 100%;
  height: 240px; /* Altura fija para todas */
  object-fit: cover;
  border-radius: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(78, 148, 79, 0.08);
}

@media (max-width: 768px) {
  .grid-galeria img {
    height: 180px; /* Más bajo en móviles para no ocupar toda la pantalla */
  }
}
.grid-galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.grid-galeria img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(78, 148, 79, 0.08);
}

.grid-galeria img:hover {
  transform: scale(1.025);
  box-shadow: 0 16px 36px rgba(78, 148, 79, 0.08);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  padding: 1rem;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(78, 148, 79, 0.08);
}

.lightbox.activo {
  opacity: 1;
  visibility: visible;
}

/* Responsive */
@media (max-width: 768px) {
  .grid-galeria {
    grid-template-columns: 1fr;
  }

  .grid-galeria img {
    height: 180px;
  }

  .lightbox img {
    max-height: 80vh;
  }
}
.galeria-vida-sana {
  background-color: #ffffff;
  padding: 6rem 1.5rem;
}

.galeria-vida-sana .titulo-seccion {
  font-size: 2.4rem;
  color: #1a1a1a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

.galeria-vida-sana .intro-seccion {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem;
}

/* Scroll horizontal en móviles */
@media (max-width: 768px) {
  .galeria-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1.25rem;
    padding-bottom: 1rem;
  }

  .galeria-grid > * {
    scroll-snap-align: start;
    flex: 0 0 85%;
    max-width: 85%;
  }
}

.tarjeta-galeria {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 14px 48px rgba(78, 148, 79, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.tarjeta-galeria:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 54px rgba(78, 148, 79, 0.08);
}

.tarjeta-galeria img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.texto-galeria {
  padding: 1.5rem;
}

.texto-galeria h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2F2F2F;
  margin-bottom: 0.5rem;
}

.texto-galeria p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}
.tarjeta-galeria {
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tarjeta-galeria:hover {
  transform: scale(1.015);
  box-shadow: 0 16px 48px rgba(78, 148, 79, 0.08);
}

.tarjeta-galeria img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .tarjeta-galeria img {
    height: 160px;
  }
}

/*UBIACIÓN*/
.seccion-ubicacion {
  background-color: #fff8f0;
  padding: 6rem 1.5rem;
}

.grid-ubicacion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.mapa {
  width: 100%;
  height: 420px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(78, 148, 79, 0.08);
}

.ubicacion-texto h2 {
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.ubicacion-texto p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #4A4A4A;
}

.ubicacion-texto .resaltado {
  color: #7A9E7E;
  font-weight: 600;
}

.direccion {
  font-size: 1rem;
  color: #2F2F2F;
  margin-top: 2rem;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .grid-ubicacion {
    grid-template-columns: 1fr;
  }

  .mapa {
    height: 300px;
  }

  .ubicacion-texto h2 {
    font-size: 1.6rem;
    text-align: center;
  }

  .ubicacion-texto p {
    text-align: center;
    font-size: 1rem;
  }

  .direccion {
    text-align: center;
  }
}
.cta-mapa {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8rem 1.8rem;
  background-color: #7A9E7E;
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(78, 148, 79, 0.08);
  transition: all 0.3s ease;
  font-size: 1rem;
}
.cta-mapa:hover {
  background-color: #b8952f;
  transform: translateY(-2px);
}
/* 🗺️ Ajuste envolvente del mapa para sombra y espaciado */
.mapa-contenedor {
  background: #fff;
  border-radius: 1.5rem;
  padding: 0.5rem;
  box-shadow: 0 8px 30px rgba(78, 148, 79, 0.08);
}

/* Mejora móvil específica */
@media (max-width: 768px) {
  .mapa-contenedor {
    margin-bottom: 2rem;
  }

  .mapa {
    height: 250px;
    border-radius: 1.2rem;
  }

  .ubicacion-texto {
    text-align: center;
    padding: 0 1rem;
  }

  .ubicacion-texto h2 {
    font-size: 1.7rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .ubicacion-texto p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .cta-mapa {
    width: 100%;
    max-width: 320px;
    margin: 2rem auto 0;
    text-align: center;
  }
}

/*Formulario*/
 .form-step {
  display: none;
}
.form-step.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.formulario-contenido {
  max-width: 560px;
  margin: auto;
  padding: 1.5rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(78, 148, 79, 0.08);
}

input:invalid, select:invalid {
  border-color: red;
}
input:required:valid,
select:required:valid,
textarea:required:valid {
  border-color: #28a745;
  background-color: #e9fce9;
}

input, select, textarea {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 1.2rem auto;
  padding: 0.85rem 1rem;
  border: 1px solid #7A9E7E;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(78, 148, 79, 0.08);
  font-size: 1rem;
}

.boton-enviar {
 background: linear-gradient(135deg, #A4C3A2, #6B8F71);
  color: #000;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(78, 148, 79, 0.08);
  transition: all 0.3s ease;
  display: block;
  margin: 1rem auto;
  cursor: pointer;
}
.boton-enviar:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(78, 148, 79, 0.08);
  filter: brightness(0.95);
}

.barra-progreso {
  background: #eaeaea;
  height: 6px;
  border-radius: 5px;
  overflow: hidden;
  margin: 1.5rem auto;
  max-width: 500px;
}
.progreso {
  background: #FFC107;
  height: 100%;
  width: 33%;
  transition: width 0.4s ease;
  border-radius: 5px;
}

.card-radio {
  display: flex;
  align-items: center;
  background: #F6F1EB;
  border: 1px solid #ccc;
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.card-radio:hover {
  background-color: #fffdf3;
  border-color: #7A9E7E;
}
.card-radio input[type="radio"] {
  margin-right: 0.75rem;
  transform: scale(1.2);
  accent-color: #7A9E7E;
}
.card-radio input[type="radio"]:checked + span {
  font-weight: 600;
  color: #000;
}
.card-radio:has(input[type="radio"]:checked) {
  background-color: #F5F9F4;
  border-color: #7A9E7E;
  box-shadow: 0 0 0 3px rgba(78, 148, 79, 0.08);
}

.subtitulo-bloque {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem;
  text-align: center;
  color: #222;
}

.texto-privacidad {
  font-size: 0.8rem;
  color: #666;
  display: block;
  text-align: center;
  margin-top: 0.5rem;
}

.alerta {
  background-color: #fff7f7;
  border: 1px solid #f5c2c7;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  margin: 1.5rem auto;
  color: #b00020;
  font-weight: bold;
  max-width: 500px;
}

.nota-datos {
  font-size: 0.95rem;
  text-align: center;
  margin-top: 1.5rem;
}

.indicador {
  text-align: center;
  font-weight: 500;
  margin: 1rem 0;
  color: #555;
}

.bloque-interes {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}
.bloque-textarea {
  margin-bottom: 2rem;
}
.consentimiento-nuevo {
  background-color: #f5fdf6;
  border: 1px solid #28a745;
  border-radius: 1rem;
  padding: 1.2rem;
  max-width: 500px;
  margin: 2rem auto 1rem;
  box-shadow: 0 4px 12px rgba(78, 148, 79, 0.08);
  transition: all 0.3s ease;
}

.consentimiento-label {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.95rem;
  color: #1e4620;
  cursor: pointer;
  line-height: 1.4;
  user-select: none;
}

.consentimiento-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.checkbox-personalizado {
  width: 24px;
  height: 24px;
  border: 2px solid #28a745;
  border-radius: 6px;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  background-color: #fff;
  transition: all 0.2s ease;
}

.consentimiento-label input[type="checkbox"]:checked + .checkbox-personalizado::after {
  content: "✔";
  position: absolute;
  top: 0;
  left: 5px;
  font-size: 1rem;
  color: #28a745;
  font-weight: bold;
}

.opciones-nuevas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.tarjeta-radio {
  display: block;
  cursor: pointer;
}

.tarjeta-radio input[type="radio"] {
  display: none;
}

.contenido-tarjeta {
  background-color: #F6F1EB;
  border: 2px solid #ccc;
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(78, 148, 79, 0.08);
}

.icono {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.texto {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

.tarjeta-radio input[type="radio"]:checked + .contenido-tarjeta {
  background-color: #F5F9F4;
  border-color: #7A9E7E;
  box-shadow: 0 0 0 3px rgba(78, 148, 79, 0.08);
  font-weight: 600;
}

.contenido-tarjeta:hover {
  border-color: #7A9E7E;
  background-color: #fffef3;
}

@media (max-width: 768px) {
  input, select, textarea {
    padding: 0.65rem 0.9rem;
    font-size: 0.95rem;
  }

  .formulario-contenido {
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: none;
  }

  .form-step {
    padding-bottom: 2rem;
  }

  .boton-enviar {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    margin-top: 1rem;
  }

  .barra-progreso {
    margin: 1rem auto;
    height: 5px;
  }

  .indicador {
    font-size: 0.95rem;
    margin: 0.8rem 0;
  }

  .contenido-tarjeta {
    padding: 0.8rem 1rem;
    gap: 0.8rem;
  }

  .subtitulo-bloque {
    font-size: 1rem;
    margin: 1rem 0 0.5rem;
  }

  .alerta {
    font-size: 0.9rem;
    padding: 0.8rem;
    margin-top: 1rem;
  }
}


/*TESTIMONIOS*/
.testimonios-premium {
  background-color: #fff;
  padding: 5rem 2rem;
  text-align: center;
}

.titulo-testimonios {
  font-size: 2rem;
  font-weight: 700;
  color: #2F2F2F;
  margin-bottom: 0.5rem;
}

.intro-testimonios {
  font-size: 1rem;
  color: #666;
  margin-bottom: 3rem;
}

.grid-testimonios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.tarjeta-testimonio {
  background-color: #fffef8;
  border: 1px solid #f3e9c5;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 6px 18px rgba(78, 148, 79, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.avatar-inicial {
  background-color: #7A9E7E;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.cita {
  font-style: italic;
  font-size: 1rem;
  color: #4A4A4A;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.autor {
  font-size: 1rem;
  color: #2F2F2F;
}

/* Cierre Impactante */
.cierre-impacto {
  background: linear-gradient(to right, #F5F9F4 #fef9f3);
  padding: 4rem 2rem;
  text-align: center;
  border-top: 2px solid #f1e1b6;
  border-bottom: 2px solid #f1e1b6;
  box-shadow: 0 10px 40px rgba(78, 148, 79, 0.08);
}

.contenedor-cierre {
  max-width: 700px;
  margin: auto;
}

.titulo-cierre {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #2F2F2F;
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

.texto-cierre {
  font-size: 1.05rem;
  color: #4A4A4A;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.resaltado-cierre {
  color: #7A9E7E;
  font-weight: 600;
}

.boton-cierre-impacto {
  display: inline-block;
 background: linear-gradient(135deg, #A4C3A2, #6B8F71);
  color: #2F2F2F;
  font-weight: bold;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(78, 148, 79, 0.08);
}

.boton-cierre-impacto:hover {
  transform: translateY(-3px);
  filter: brightness(0.95);
  box-shadow: 0 10px 28px rgba(78, 148, 79, 0.08)
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .titulo-cierre {
    font-size: 1.5rem;
  }

  .texto-cierre {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .boton-cierre-impacto {
    font-size: 0.95rem;
    padding: 0.85rem 1.5rem;
  }
}


/*PREGUNTAS Y RESPUESTAS*/
.faq-section {
  background: #fefcf8;
  padding: 6rem 1rem;
  border-top: 1px solid #eee;
}
.faq-titulo {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  text-align: center;
  color: #2F2F2F;
}
.faq-sub {
  text-align: center;
  margin-bottom: 3rem;
  color: #555;
  font-size: 1.1rem;
}
.faq-grid {
  max-width: 800px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.faq-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 1rem;
  box-shadow: 0 6px 24px rgba(78, 148, 79, 0.08);
  overflow: hidden;
}
.faq-toggle {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.2rem 1.6rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2F2F2F;
  cursor: pointer;
  position: relative;
}
.faq-toggle .icono {
  float: right;
  font-size: 1.5rem;
  transition: transform 0.3s;
  color: #7A9E7E;
}
.faq-item.open .faq-toggle .icono {
  transform: rotate(45deg);
}
.faq-respuesta {
  display: none;
  padding: 0 1.6rem 1.6rem;
  font-size: 1rem;
  color: #4A4A4A;
  line-height: 1.6;
}
.faq-item.open .faq-respuesta {
  display: block;
}

/*Footer*/
.footer-premium {
  background: #0e0e0e;
  color: #f2f2f2;
  padding: 4rem 2rem 2rem;
  font-family: 'Open Sans', sans-serif;
}

.contenedor-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo-footer {
  width: 140px;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
}

.footer-descripcion {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
}

.columna-footer h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #ffc107;
}

.columna-footer p,
.columna-footer ul li {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.6rem;
}

.columna-footer ul {
  list-style: none;
  padding: 0;
}

.columna-footer ul li a {
  color: #f2f2f2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.columna-footer ul li a:hover {
  color: #ffc107;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  font-size: 0.85rem;
  color: #aaa;
}

.footer-credito {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  color: #666;
}

/*GARANTÍAS*/
.seccion-confianza-avanzada {
  background-color: #ffffff;
  padding: 6rem 2rem;
}
.grid-confianza {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.bloque-confianza {
  background: #f9f9f5;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 24px rgba(78, 148, 79, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}
.bloque-confianza:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(78, 148, 79, 0.08);
}
.icono-svg {
  margin: auto 0 1rem;
}
.bloque-confianza h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.bloque-confianza p {
  font-size: 1rem;
  color: #555;/* NUEVO: Estilos Visuales Premium */
.estrella-oro {
  color: #7A9E7E;
  font-size: 1.6rem;
  margin-right: 0.4rem;
}

.foto-arquitecto img {
  width: 220px;
  height: auto;
  border-radius: 50%;
  border: 4px solid #7A9E7E;
  box-shadow: 0 12px 30px rgba(78, 148, 79, 0.08);
  object-fit: cover;
}

.bloque-arquitecto {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.texto-arquitecto {
  flex: 1;
  min-width: 280px;
}

.texto-arquitecto .titulo-seccion {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.intro-seccion strong.resaltado {
  color: #7A9E7E;
  font-weight: 700;
}

/* Proyecto galardonado */
.proyecto-premiado {
  margin-top: 4rem;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.imagen-premio {
  position: relative;
  max-width: 500px;
  width: 100%;
}

.imagen-premio img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 12px 32px rgba(78, 148, 79, 0.08);
}

.badge-premio {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background-color: #7A9E7E;
  color: #fff;
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 1rem;
  box-shadow: 0 6px 12px rgba(78, 148, 79, 0.08);
}

.texto-premio {
  flex: 1;
  min-width: 280px;
}

.texto-premio h3 {
  font-size: 1.5rem;
  color: #2F2F2F;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.texto-premio p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .bloque-arquitecto,
  .proyecto-premiado {
    flex-direction: column;
    text-align: center;
  }

  .texto-arquitecto,
  .texto-premio {
    margin-top: 1rem;
  }

  .badge-premio {
    bottom: 12px;
    left: 12px;
    font-size: 0.8rem;
  }

  .foto-arquitecto img {
    width: 160px;
  }
}
  line-height: 1.6;
}

.bloque-arquitecto {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.foto-arquitecto img {
  width: 220px;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 8px 28px rgba(78, 148, 79, 0.08);
}
.texto-arquitecto {
  flex: 1;
  min-width: 280px;
}
.proyecto-premiado {
  margin-top: 4rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}
.proyecto-premiado img {
  width: 100%;
  max-width: 500px;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(78, 148, 79, 0.08);
}
.texto-premio {
  flex: 1;
  min-width: 280px;
}
.texto-premio h3 {
  font-size: 1.4rem;
  color: #2F2F2F;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.texto-premio p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .bloque-arquitecto,
  .proyecto-premiado {
    flex-direction: column;
    text-align: center;
  }
  .texto-arquitecto,
  .texto-premio {
    margin-top: 1rem;
  }
}

/*BOTON FLOTANTE*/
.whatsapp-premium {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  display: flex;
  align-items: center;
  padding: 0.9rem 1.4rem;
  border-radius: 40px;
  box-shadow: 0 10px 25px rgba(78, 148, 79, 0.08);
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp-premium:hover {
  background-color: #1ebe5d;
  box-shadow: 0 12px 28px rgba(78, 148, 79, 0.08);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .whatsapp-premium {
    bottom: 20px;
    right: 20px;
    font-size: 0.95rem;
    padding: 0.75rem 1.2rem;
  }

  .whatsapp-premium .texto-btn {
    display: none;
  }
}

/*Boton Flotante Movil*/
/* Sticky CTA solo para móvil */
.sticky-cta-movil {
  display: none;
}

@media (max-width: 768px) {
  .sticky-cta-movil {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -2px 12px rgba(78, 148, 79, 0.08);
    padding: 0.75rem 1rem;
    z-index: 999;
    text-align: center;
  }

  .cta-boton {
    display: inline-block;
    background-color: #7A9E7E;
    color: #000;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 32px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(78, 148, 79, 0.08);
    transition: all 0.3s ease;
  }

  .cta-boton:hover {
    background-color: #c89f2f;
    transform: translateY(-2px);
  }
}

/*SEGURIDAD*/
.sello-confianza-legal {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #f5fdf7;
  border: 1px solid #a0d4b4;
  border-radius: 1rem;
  padding: 1.25rem;
  margin: 2rem auto 1rem;
  max-width: 520px;
  box-shadow: 0 6px 18px rgba(78, 148, 79, 0.08);
}

.icono-svg {
  flex-shrink: 0;
}

.texto-sello strong {
  color: #1d5c3a;
  display: block;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.texto-sello p {
  font-size: 0.9rem;
  color: #4a5d54;
  margin: 0;
  line-height: 1.4;
}

/*SCROLL HORIZONTAL*/
/* ✅ Estilo scroll horizontal premium solo en móviles */
@media (max-width: 767px) {
  .scroll-horizontal {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 0 1rem 1.5rem;
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: 1rem;
  }

  .scroll-horizontal > * {
    scroll-snap-align: start;
    flex: 0 0 85%;
    max-width: 85%;
    min-width: 85%;
  }
}

/* 💻 En desktop se mantiene el diseño grid normal */
@media (min-width: 768px) {
  .scroll-horizontal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    overflow: visible;
  }

  .scroll-horizontal > * {
    flex: none;
    max-width: 100%;
    min-width: auto;
  }
}

/* Oculta barra scroll para diseño limpio */
.scroll-horizontal::-webkit-scrollbar {
  display: none;
}

/*BOTON DE ESPACIOS*/
.cta-galeria {
  text-align: center;
  margin-top: 3rem;
}

.boton-vermas {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #7A9E7E;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(78, 148, 79, 0.08);
}

.boton-vermas:hover {
  background-color: #b8952f;
  box-shadow: 0 12px 32px rgba(78, 148, 79, 0.08);
  transform: translateY(-2px);
}

.boton-vermas svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}
.seccion-del-valle {
  background-color: #fff;
  padding: 0;
}

.imagen-del-valle-full {
  width: 100%;
  overflow: hidden;
  border-radius: 0;
}

.imagen-del-valle-full img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0;
  max-height: 560px;
}

.texto-del-valle {
  text-align: center;
  padding: 3rem 1.5rem 4rem;
  max-width: 760px;
  margin: auto;
}

.texto-del-valle h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #2F2F2F;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.subtexto-del-valle {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}

.resaltado {
  color: #7A9E7E;
  font-weight: 700;
}

@media (max-width: 768px) {
  .imagen-del-valle-full img {
    max-height: 340px;
  }

  .texto-del-valle h2 {
    font-size: 1.6rem;
    line-height: 1.35;
  }

  .subtexto-del-valle {
    font-size: 1rem;
    padding: 0 1rem;
  }
}


.fusion-confianza {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 2rem 0;
}

.imagen-proyecto,
.foto-ernesto {
  flex: 0 0 240px;
  text-align: center;
  position: relative;
}

.imagen-proyecto img,

.foto-ernesto img {
  border-radius: 1.25rem; /* Bordes suavemente redondeados */
  border: none;
  max-width: 240px;
  box-shadow: 0 14px 34px rgba(78, 148, 79, 0.1);
  aspect-ratio: 4 / 5; /* Proporción vertical tipo retrato */
  object-fit: cover;
}

@media (max-width: 768px) {
  .foto-ernesto img {
    max-width: 180px;
    aspect-ratio: auto; /* Permite flexibilidad en tamaños pequeños */
  }
}

.badge-premio {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background-color: #7A9E7E;
  color: white;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 1rem;
  box-shadow: 0 6px 14px rgba(78, 148, 79, 0.15);
}

.texto-fusion {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
  text-align: left;
}

.texto-fusion h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2F2F2F;
}

.texto-fusion p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 1.2rem;
}

.estrella-oro {
  color: #7A9E7E;
  font-size: 1.8rem;
  margin-right: 0.4rem;
}

.resaltado {
  color: #7A9E7E;
  font-weight: 700;
}

@media (max-width: 768px) {
  .fusion-confianza {
    flex-direction: column;
    text-align: center;
  }

  .texto-fusion {
    text-align: center;
    padding: 1rem 0;
  }

  .texto-fusion h2 {
    font-size: 1.7rem;
  }

  .texto-fusion p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .badge-premio {
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
  }

  .foto-ernesto img {
    max-width: 140px;
  }

  .imagen-proyecto img {
    max-height: 240px;
  }
}


/* TITULO DE SECCIÓN DE CONFIANZA*/
.titulo-confianza {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.titulo-confianza h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2F2F2F;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.subrayado-verde {
  color: #7A9E7E;
  position: relative;
}

.subrayado-verde::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 4px;
  background-color: #E0F2E0;
  z-index: -1;
  border-radius: 2px;
}

.titulo-confianza p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .titulo-confianza h2 {
    font-size: 1.6rem;
  }

  .titulo-confianza p {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

/*MEJORA TITULO BENEFICIOS*/
.titulo-beneficio-principal {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2rem;
  line-height: 1.3;
  text-align: center;
}

.titulo-beneficio-principal .linea-1,
.titulo-beneficio-principal .linea-3 {
  font-size: 1.6rem;
  display: block;
  color: #2F2F2F;
}

.titulo-beneficio-principal .linea-2 {
  font-size: 2rem;
  color: #7A9E7E;
  display: block;
  margin: 0.3rem 0;
}

@media (min-width: 768px) {
  .titulo-beneficio-principal .linea-1,
  .titulo-beneficio-principal .linea-3 {
    font-size: 2rem;
  }

  .titulo-beneficio-principal .linea-2 {
    font-size: 2.4rem;
  }
}

/*DISEÑO TITULO GALERIA*/
.titulo-inspirador {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1a1a1a;
  font-size: 2.8rem;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 1rem;
}

.titulo-inspirador .bloque {
  display: block;
}

.titulo-inspirador .enfasis {
  font-size: 3.2rem;
  color: #2F2F2F;
  margin-top: 0.3rem;
}

.intro-seccion {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  text-align: center;
}

@media (max-width: 768px) {
  .titulo-inspirador {
    font-size: 1.6rem;
  }

  .titulo-inspirador .enfasis {
    font-size: 2rem;
  }

  .intro-seccion {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

/*TITULO ARQUITECTO*/
.titulo-confianza {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 1.5rem;
}

.titulo-confianza h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  line-height: 1.3;
  font-weight: 700;
  color: #1a1a1a;
  max-width: 700px;
  margin: 0 auto 1rem auto;
}

.subrayado-verde {
  color: #7A9E7E;
  font-weight: 700;
}

.titulo-confianza p {
  font-size: 1.05rem;
  color: #555;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .titulo-confianza h2 {
    font-size: 1.6rem;
    line-height: 1.4;
  }

  .titulo-confianza p {
    font-size: 1rem;
  }

  .solo-desktop {
    display: none;
  }
}

/* COOKIES - Versión refinada y armonizada */
.aviso-cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(78, 148, 79, 0.06); /* Verde muy suave translúcido */
  color: #2F2F2F;
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  font-family: 'Open Sans', sans-serif;
  box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(4px); /* Toque de sofisticación */
}

.aviso-cookies a {
  color: #7A9E7E;
  font-weight: 600;
  text-decoration: underline;
}

.boton-cookies {
  background-color: #7A9E7E;
  color: #fff;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(78, 148, 79, 0.18);
}

.boton-cookies:hover {
  background-color: #3a7a3c;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
  .aviso-cookies {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .boton-cookies {
    width: 100%;
    max-width: 240px;
  }
}

/*FOOTER*/
.footer-premium {
  background-color: #0e0e0e;
  color: #f2f2f2;
  padding: 4rem 2rem 2rem;
  font-family: 'Open Sans', sans-serif;
}

.contenedor-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.columna-footer h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-descripcion {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
  margin-top: 1rem;
  max-width: 320px;
}

.logo-footer {
  width: 120px;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.footer-menu,
.footer-contacto {
  list-style: none;
  padding: 0;
}

.footer-menu li,
.footer-contacto li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.footer-menu a,
.footer-contacto a {
  color: #f2f2f2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu a:hover,
.footer-contacto a:hover {
  color: #7A9E7E;
}

.footer-redes a {
  font-size: 1.3rem;
  margin-right: 1rem;
  color: #f2f2f2;
  transition: color 0.3s ease;
}

.footer-redes a:hover {
  color: #7A9E7E;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 2rem;
  color: #aaa;
}

/* === Logo flotante Vida Sana – Posición fija y responsive === */
.logo-flotante {
  position: fixed;
  top: 24px;
  right: 28px;
  width: 96px; /* Aumentado desde 88px */
  height: 96px;
  z-index: 9999;
  opacity: 0.97;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.logo-flotante img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Dispositivos móviles */
@media (max-width: 768px) {
  .logo-flotante {
    top: 18px;
    right: 18px;
    width: 85px; /* Aumentado desde 68px */
    height: 85px;
  }
}

/* Dispositivos muy pequeños (como iPhone SE o Android chico) */
@media (max-width: 400px) {
  .logo-flotante {
    top: 14px;
    right: 14px;
    width: 65px; /* Aumentado desde 58px */
    height: 65px;
  }
}







