/* ---page Nosotros --- */
/* --- Hero Nosotros --- */
.hero-nosotros {
    background-size: cover;       
    background-position: center;   
    background-repeat: no-repeat;  
    width: 100%;                   
    overflow: hidden;
    padding: 56px;              
}


.hero-nosotros-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    text-align: center;
    padding: 7px;
    margin-right: 96px;
    background: rgb(245 239 239 / 64%);
    border-radius: 32px;
}

.hero-nosotros-content h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    color: #a12c56;
    margin-bottom: 10px;
    margin-top: -58px;
     color: #ffffff;
    text-shadow: 0em .1em .1em rgb(0 0 0);
}

.hero-nosotros-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    color: #000; /* Negro */
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: "Lato";
}

/* Estado inicial (invisible) */
.hero-nosotros-content h1,
.hero-nosotros-content .hero-nosotros-subtitle {
  opacity: 0;
  transform: translateY(40px); /* empieza un poco abajo */
  transition: opacity 1s ease, transform 1s ease;
}

/* Estado visible */
.hero-nosotros-visible .hero-nosotros-content h1,
.hero-nosotros-visible .hero-nosotros-content .hero-nosotros-subtitle {
  opacity: 1;
  transform: translateY(0);
}


/*---------Responsivo móvil--------- */
/* === Tablets grandes (hasta 992px) === */
@media (max-width: 992px) {
  .hero-nosotros {
    padding: 40px;
  }

  .hero-nosotros-overlay {
    margin-right: 0;
    padding: 20px;
    border-radius: 25px;
  }

  .hero-nosotros-content h1 {
    font-size: 3rem;
    margin-top: -30px;
  }

  .hero-nosotros-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
  }
}

/* === Tablets y móviles medianos (hasta 768px) === */
@media (max-width: 768px) {
  .hero-nosotros {
    padding: 30px 15px;
  }

  .hero-nosotros-overlay {
    margin-right: 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
  }

  .hero-nosotros-content h1 {
    font-size: 2.4rem;
    margin-top: -20px;
  }

  .hero-nosotros-subtitle {
    font-size: 1.05rem;
    padding: 0 10px;
    line-height: 1.5;
  }
}

/* === Móviles pequeños (hasta 480px) === */
@media (max-width: 480px) {
  .hero-nosotros {
    padding: 25px 10px;
  }

  .hero-nosotros-overlay {
    margin-right: 0;
    padding: 26px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    margin-left: -16px;
  }

  .hero-nosotros-content h1 {
    font-size: 1.9rem;
    margin-top: -10px;
  }

  .hero-nosotros-subtitle {
    font-size: 0.95rem;
    line-height: 1.4;
  }
}

/* ------------Nosotros about----------------------- */

.about-welcome {
    padding: 80px 0;
    background: #fff url('../img/pattern.png') repeat; /* opcional si quieres fondo decorado */
}

.about-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.about-img img {
    border: 8px solid #f8cdd1; /* marco rosa como en el mockup */
    border-radius: 8px;
    height: auto;
    width: 160%;
    margin-left: 43px;
}

.about-text h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    margin-left: 254px;
    margin-top: 2px;
    border-bottom: 5px solid #e88eb0;
}

.about-text p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #333;
    margin-left: 251px;
    margin-right: 18px;
    text-align: justify;
    font-family: "Lato";
}

/*---------------Animaciones sutiles--------- */
.about-img, 
.about-text {
  opacity: 0;
  transform: translateY(40px); /* baja un poco antes de entrar */
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Cuando está visible */
.about-visible .about-img,
.about-visible .about-text {
  opacity: 1;
  transform: translateY(0);
}

/* 📱 Ajustes móviles */
@media (max-width: 640px) {
  .about-grid {
    flex-direction: column;
    text-align: center;
    padding: 0 1rem; /* margen lateral */
  }

  .about-img img {
    max-width: 84%;  /* evita desbordes */
    height: auto;     /* mantiene proporción */
    display: block;
    margin: 0 auto;   /* centra la imagen */
  }

  .about-text {
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center; /* centra texto */
  }

  .about-text h2 {
    font-size: 2.3rem;
    margin: 1rem 0;
    margin-left: 0 !important; /* elimina margen heredado */
  }

  .about-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    text-align: justify; /* opcional: justificado */
    margin-left: 0 !important; /* 🔹 corrige alineación */
    margin-right: 0 !important;
  }
}

/* Tablets */
@media (min-width: 641px) and (max-width: 1024px) {
  .about-grid {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .about-text h2 {
    font-size: 2.2rem;
  }

  .about-text p {
    font-size: 1.05rem;
  }
}
/* ------------Sección sobre nosotros---------- */

.sobre-nosotros {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* efecto parallax */
  color: #333;
  padding: 80px 20px;
  overflow: hidden;
  z-index: 1;
}

/* --- Overlay rosado dinámico desde el Customizer --- */
.sobre-nosotros .sobre-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  background: rgba(248, 201, 207, 0.6); /* fallback */
  transition: background-color 0.3s ease;
}

/* --- Contenedor del contenido principal --- */
.sobre-nosotros .sobre-grid {
  position: relative;
  z-index: 2; /* por encima del overlay */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* --- Imagen --- */
.sobre-nosotros .sobre-img img {
  width: 85%;
  max-width: 700px;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
  transition: transform 0.5s ease;
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
}

.sobre-nosotros .sobre-img img:hover {
  transform: scale(1.05);
}

/* --- Caja de texto --- */
.sobre-nosotros .sobre-text {
  background: rgba(255, 255, 255, 0.85);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.sobre-nosotros .sobre-text h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
  border-bottom: 5px solid #e88eb0;
}

.sobre-nosotros .sobre-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
  text-align: justify;
  font-family: "Lato";
  margin-left: 14px;
  margin-right: 14px;
}

.sobre-nosotros .sobre-highlight {
  font-weight: bold;
  color: #b45a5a;
  font-size: 1.2rem;
  font-family: "Lato";
}

/* --- Animaciones suaves --- */
.sobre-nosotros .sobre-img,
.sobre-nosotros .sobre-text {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.sobre-nosotros.sobre-visible .sobre-img,
.sobre-nosotros.sobre-visible .sobre-text {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   🔹 Responsivo
   ========================================== */

/* --- Móviles --- */
@media (max-width: 640px) {
  .sobre-nosotros {
    padding: 60px 15px;
    background-attachment: scroll; /* desactiva parallax en móviles */
  }

  .sobre-nosotros .sobre-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }

  .sobre-nosotros .sobre-img img {
    width: 95%;
    margin-bottom: 20px;
  }

  .sobre-nosotros .sobre-text {
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
  }

  .sobre-nosotros .sobre-text h2 {
    font-size: 2.3rem;
  }

  .sobre-nosotros .sobre-text p {
    font-size: 1rem;
  }
}

/* --- Tablets --- */
@media (min-width: 641px) and (max-width: 1024px) {
  .sobre-nosotros .sobre-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .sobre-nosotros .sobre-text h2 {
    font-size: 2.2rem;
  }

  .sobre-nosotros .sobre-text p {
    font-size: 1.05rem;
  }
}

/*------------Sección Filosofía y Valores--------------*/
.filosofia-valores {
    padding: 22px 20px;
    text-align: center;
    background: #fff;
}

.valores-grid {
    display: flex;
    justify-content: space-between; /* distribuye los elementos */
    align-items: center; /* alinea en el centro vertical */
    gap: 30px;
    flex-wrap: wrap; /* permite que se acomode en pantallas pequeñas */
}

/* Tarjetas */
.valor-card {
    flex: 1 1 30%;
    text-align: center;
}

.valor-card img {
    max-width: 90px;
    margin-bottom: 15px;
}

.valor-card h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 34px;
    color: #333;
    margin-bottom: 10px;
    margin-top: 1px;
}

.valor-card p {
    font-size: 21px;
    line-height: 1.5;
    color: #333;
    font-family: "Lato";
}

/* Botón ahora al final de la fila */
.btn-reserva {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    background: linear-gradient(90deg, #e88eb0, #d36ba5);
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
    white-space: nowrap; /* evita que se corte en varias líneas */
}

.btn-reserva:hover {
    background: linear-gradient(90deg, #d36ba5, #e88eb0);
    transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 992px) {
    .valores-grid {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .btn-reserva {
        margin-top: 20px;
    }
}

/*--------------------- Sección Equipo----------------------- */
.equipo-section {
    padding: 60px 20px;
    background: #fdf2f6; /* rosa claro de fondo */
}

.equipo-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Caja blanca para el texto */
.equipo-text-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 12px;
    flex: 1 1 45%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.equipo-text-box h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 42px;
    color: #333;
    margin-bottom: 15px;
    border-bottom: 5px solid #e88eb0;
    display: inline-block;
    padding-bottom: 5px;
}

.equipo-text-box p {
    font-size: 19px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
    font-family: "Lato";
    text-align: justify;
}

.btn-equipo {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(90deg, #e88eb0, #d36ba5);
    color: #fff;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-equipo:hover {
    background: linear-gradient(90deg, #d36ba5, #e88eb0);
    transform: scale(1.05);
}

/* Imagen */
.equipo-img {
    flex: 1 1 45%;
    text-align: center;
}

.equipo-img img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/* Estado inicial */
.equipo-text-box,
.equipo-img {
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}

.equipo-text-box {
  transform: translateY(40px); /* baja */
}

.equipo-img {
  transform: translateX(60px); /* derecha */
  transition-delay: 0.3s; /* retraso para escalonar */
}

/* Estado visible */
.equipo-visible .equipo-text-box,
.equipo-visible .equipo-img {
  opacity: 1;
  transform: translate(0, 0);
}


/* Responsivo */
@media (max-width: 992px) {
    .equipo-grid {
        flex-direction: column-reverse;
        text-align: center;
    }

    .equipo-text-box {
        margin-top: 20px;
    }
}