body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: white;
  color: #111;
}

.top-bar {
  padding: 1rem 2rem;
  background-color: white;
  display: flex;
  align-items: center;
}

.logo {
  height: 80px;
  margin-left: 25vh;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  max-width: 1200px;
  height: 85vh;
  margin: 0 auto;
}

.hero-left img.profile-photo {
  max-width: 300px;
  height: auto;
  border-radius: 50%;
}

.hero-right {
  max-width: 600px;
}

.hero-right h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-right p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.btn-llamar {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 2rem;
  background-color: #c49a00;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-llamar:hover {
  background-color: #a87f00;
}


.swiper {
  width: 100%;
  height: 100vh;
  position: relative;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  position: relative;
}

.overlay-text {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  color: white;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
  max-width: 90%;
}

.swiper-pagination-bullet {
  background: white;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: #c49a00;
  opacity: 1;
}

.promocion {
  text-align: center;
  padding: 4rem 1rem;
  color: #b37d2d; /* tono dorado */
  background-color: white;
}

.promocion h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: normal;
}

.promocion h2 {
  font-size: 2.2rem;
  font-weight: normal;
  line-height: 1.4;
}

.prevision {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 2rem;
  gap: 2rem;
  background-color: white;
  flex-wrap: wrap;
  height: 95vh;
}

.prevision-texto {
  flex: 1;
  max-width: 600px;
}

.prevision-texto h2 {
  font-size: 2.2rem;
  font-style: bold;
  margin-bottom: 1rem;
}

.decoracion-linea {
  width: 60px;
  height: 4px;
  background-image: url('img/linea-decorativa.svg'); /* o puedes usar border si no tienes SVG */
  background-size: contain;
  background-repeat: no-repeat;
  margin: 1rem 0;
}

.prevision-texto p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.prevision-imagen {
  flex: 1;
  text-align: right;
}

.prevision-imagen img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
}

.ventajas {
  background-color: white;
  padding: 4rem 2rem;
  text-align: center;
  height: 78vh;
}

.ventajas-titulo h2 {
  color: #b37d2d;
  font-size: 2rem;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  line-height: 1.4;
}

.ventajas-lista {
  display: flex;
  justify-content: space-between; /* antes: center */
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 90%; /* eliminar restricciones */
  width: 100%;
  padding: 0 4rem; /* margen horizontal opcional */
}


.ventaja-item {
  flex: 1;
  min-width: 200px;
  max-width: 100%;
}


.ventaja-item h3 {
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.decoracion-linea {
  width: 60px;
  height: 4px;
  background-image: url('img/linea-decorativa.svg'); /* o cambiar por línea básica */
  background-repeat: no-repeat;
  background-size: contain;
  margin: 1rem auto;
}

.ventaja-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

.contacto {
  background-color: white;
  margin-top: 4rem;
}

.liston-superior {
  height: 30px;
  background-color: #c49a00;
  width: 100%;
}

.contacto-titulo {
  text-align: left;
  padding: 3rem 2rem 1rem 2rem;
}

.contacto-titulo h2 {
  font-size: 4rem;
  font-weight: bold;
  margin: 0;
}

.contacto-contenido {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 2rem;
  gap: 3rem;
}

.contacto-info {
  flex: 1;
  min-width: 300px;
}

.contacto-info p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #333;
}

.form-suscripcion label {
  font-size: 0.9rem;
  display: block;
  margin: 0.5rem 0;
}

.input-submit-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.input-submit-group input[type="email"] {
  flex: 1;
  border: none;
  border-bottom: 1px solid #444;
  padding: 0.5rem;
  background-color: transparent;
}

.input-submit-group button {
  padding: 0.4rem 1.5rem;
  border: 1px solid #000;
  background: transparent;
  cursor: pointer;
  font-weight: bold;
  border-radius: 20px;
}

.checkbox {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contacto-formulario {
  flex: 1;
  min-width: 300px;
}

.contacto-formulario input,
.contacto-formulario textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: #f4e5c9;
  border: none;
  font-family: inherit;
  font-size: 1rem;
}

.contacto-formulario .form-row {
  display: flex;
  gap: 1rem;
}

.contacto-formulario button {
  background-color: #c49a00;
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
}

.footer {
  background-color: #f9f9f9;
  padding-top: 3rem;
  margin-top: 5rem;
  font-size: 0.95rem;
  color: #333;
}

.footer-card {
  max-width: 1000px;
  margin: 0 auto;
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.footer-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: left;
}

.footer-info div {
  flex: 1;
  min-width: 200px;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  font-size: 0.85rem;
  color: #999;
}

.whatsapp-btn {
  margin-top: 2rem;
}

.whatsapp-btn a {
  display: inline-block;
  background-color: #25d366;
  color: white;
  font-weight: bold;
  padding: 0.8rem 1.8rem;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.whatsapp-btn a:hover {
  background-color: #1ebe57;
}

.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-in-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}



@keyframes slide {
  0%   { transform: translateX(0%); }
  33%  { transform: translateX(-100%); }
  66%  { transform: translateX(-200%); }
  100% { transform: translateX(0%); }
}

@media (max-width: 768px) {
  .prevision {
    flex-direction: column;
    text-align: center;
  }

  .prevision-texto,
  .prevision-imagen {
    max-width: 100%;
  }

  .prevision-imagen img {
    margin-top: 1.5rem;
  }
}


