/* 🔹 Elimina márgenes fantasmas en todo el sitio */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* evita scroll horizontal */
}


html {
  scroll-behavior: smooth;
}

#inicio,#about,#service,#portafolio,#blog, #pag-servicios {
  scroll-margin-top: 100px; /* ajusta según el alto de tu menú */
}



/* Fuente base para todo el sitio */
body {
  font-family: "Lato" !important;
  font-size: 1rem;   
  line-height: 1.4;  
  color: #333;       
  margin: 0;
  padding: 0;
}

/* Empuja el contenido hacia abajo para compensar el alto del header */

body {
  padding-top: 120px; /* ajusta según el alto real de tu header */
}

/* Fuente para párrafos */
p {
  font-family: "Lato" !important;
  font-size: 1.2rem !important;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #444;
}

/* Bloques de texto largos (ejemplo: entradas del blog) */
.single-post .entry-content {
  text-align: justify;
  text-justify: inter-word;
}
/* -------------Header--------------*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* asegúrate de que quede por encima del contenido */
  background-color: #fff; /* o el color de tu header */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Nivel superior */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
}
.logo img {
    height: 188px;
    margin-bottom: -58px;
    margin-top: -59px;
}

/* Nivel inferior */
.header-bottom {
    background: #fcdce2;
}
.site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
}
.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}
.nav-menu a {
    text-decoration: none;
    color: #000;
    font-family: "Lato";
    font-weight: bold;
    text-transform: uppercase;
}

/* Íconos sociales 
.social-icons a {
    color: #000;
    font-size: 23px;
    margin: 0 5px;
    transition: color 0.3s;
}
.social-icons a:hover {
    color: #ff5fa2;
}
*/

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}


/* Botón CTA */
.btn-reserva {
    background: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    font-weight: bold;
    color: #000;
    transition: all 0.3s ease;
}
.btn-reserva:hover {
    background: #000;
    color: #fff;
}

/* --- Desktop --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}
.menu-toggle .hamburger {
    width: 25px;
    height: 3px;
    background: #000;
    border-radius: 2px;
}

/* --- Mobile --- */
@media (max-width: 768px) {
    .site-nav {
        position: relative;
    }

    /* Botón hamburguesa visible en móvil */
    .menu-toggle {
        display: flex;
        margin-right: auto; /* ⬅️ ahora se va a la IZQUIERDA */
        padding: 0.5rem;
    }

    /* Menú oculto por defecto */
    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 15px;
        background: #fcdce2;
        position: absolute;
        top: 50px;
        left: 0; /* ⬅️ se abre desde la izquierda */
        width: 100%; /* ⬅️ ocupa todo el ancho */
        padding: 20px;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        text-align: center; /* centra los links */
    }

    /* Menú activo */
    .nav-menu.active {
        display: flex;
    }

    /* Botón CTA dentro del flujo móvil */
    .btn-reserva {
        margin-top: 15px;
        align-self: center; /* ⬅️ centrado en móviles */
    }
}



/* ------- Hero------------------------------- */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Caja translúcida */
.hero-overlay {
    background: rgba(255, 255, 255, 0.85);
    padding: 40px 50px;
    border-radius: 25px;
    max-width: 800px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Título manuscrito */
.hero-overlay h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: #000;
    text-shadow: 0em .1em .1em rgb(0 0 0 / 59%);
      
}

/* Texto */
.hero-overlay p {
    font-family: "Lato";
    font-size: 1.5rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

/* Botón degradado */
.btn-hero {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(to right, #f78fb3, #f55ca5);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-family: "Lato";
    font-size: 1rem;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.btn-hero:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Estado inicial */
.hero-overlay h1,
.hero-overlay p,
.hero-overlay .btn-hero {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

/* Título entra primero */
.hero-visible .hero-overlay h1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

/* Subtítulo entra después */
.hero-visible .hero-overlay p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/* Botón con zoom-in */
.hero-visible .hero-overlay .btn-hero {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1s ease, transform 0.8s ease;
  transition-delay: 0.8s;
}

.hero-overlay .btn-hero {
  transform: scale(0.9);
}


/*---- Móviles (pantallas pequeñas)-------- */
@media (max-width: 640px) {
  .hero {
    min-height: 80vh;
    padding: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn-hero {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}

/*  Tablets */
@media (min-width: 641px) and (max-width: 1024px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .btn-hero {
    font-size: 1rem;
  }
}

/*  Escritorios grandes */
@media (min-width: 1025px) {
  .hero h1 {
    font-size: 3.2rem;
  }

  .hero p {
    font-size: 1.5rem;
  }

  .btn-hero {
    font-size: 1.1rem;
  }
}


/*------ About home-----------------*/
.abt-home {
  padding: 41px 20px;
  background: linear-gradient(to bottom, #fff, #f8c6d8);
}

.abt-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.abt-img img {
  width: 80%;
  max-width: 64%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  margin-left: 15%;
}

.abt-text h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.7rem;
  margin-bottom: 15px;
  border-bottom: 5px solid #e58aa0;
  display: inline-block;
  padding-bottom: 5px;
  margin-left: 22px;
  text-shadow: 0em .1em .1em rgb(0 0 0 / 59%);
}

.abt-text p {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
  margin-left: -47px;
  margin-right: 59px;
  font-family: "Lato";
  text-align: justify;
}

.btn-abt {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(90deg, #e58aa0, #d63384);
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-left: 213px;
   box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}

.btn-abt:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Estado inicial */
.abt-img,
.abt-text h2,
.abt-text p,
.abt-text .btn-abt {
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}

.abt-img {
  transform: translateX(-60px);
}

.abt-text h2,
.abt-text p {
  transform: translateX(60px);
}

.abt-text .btn-abt {
  transform: scale(0.9);
  transition-delay: 0.8s;
}

/* Estado visible */
.abt-visible .abt-img {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.abt-visible .abt-text h2 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

.abt-visible .abt-text p {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.6s;
}

.abt-visible .abt-text .btn-abt {
  opacity: 1;
  transform: scale(1);
  transition-delay: 1s;
}


@media (max-width: 640px) {
  .abt-box {
    display: flex !important;
    flex-direction: column !important;  /* 🔹 Imagen arriba, texto abajo */
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;

  }

  .abt-img {
    order: -1; /* 🔹 asegura que la imagen quede primero */
    width: 100% !important;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;

  }

  .abt-img img {
    width: 90% !important;   /* 🔹 ancho proporcional */
    height: auto !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-left: 1px;
    max-width: 66%;
  }

  .abt-text {
    width: 95% !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .abt-text h2 {
    font-size: 1.8rem !important;
    margin-bottom: 1rem !important;
    margin-left: -9px;
  }

  .abt-text p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
    margin-left: 17px;
    margin-right: 26px;
  }

  .abt-text .btn-abt {
    margin: 1rem auto 0 auto !important;
    display: inline-block !important;
  }
}


/* 📲 Tablet */
@media (min-width: 641px) and (max-width: 1024px) {
  .abt-box {
    flex-direction: column;
    text-align: center;
  }

  .abt-text h2 {
    font-size: 2.2rem;
    text-align: center;
  }

  .abt-text p {
    font-size: 1.05rem;
    text-align: center;
  }
}



/*--------- Sección Servicios------------------------ */
.servicios {
    padding: 8px 20px;
    background: linear-gradient(to bottom, #fff 50%, #fcdce2 50%);
    text-align: center;
}
.section-title {
    font-size: 3rem;
    font-family: 'Dancing Script', cursive;
    margin-bottom: 10px;
    font-weight: bold;
    text-shadow: 0em .1em .1em rgb(0 0 0 / 59%);
    border-bottom: 5px solid #e58aa0;
}
.section-subtitle {
    font-size: 1.5rem;
    margin-bottom: 50px;
    font-family: "Lato";
}

/* Grid de servicios */
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columnas fijas */
    gap: 30px;
    margin-bottom: 40px; /* separación entre fila 1 y 2 */
}

.servicio-card {
  text-align: center;
  background: #fff;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-color: #383A91;
  border-color: #383A91;
  border-radius: 10px 10px 10px 10px;
  box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.5);
}

.servicio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.servicio-card h3 {
  margin: 15px 0 10px;
  font-size: 1.4rem;
  color: #d63384;
}

.servicio-desc {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 15px;
  line-height: 1.5;
  font-family: "Lato";
}



/* Card de servicio */
.servicio-card {
    background: #fff;
    border-color: #e48bb2;
    border-color: #e48bb2;
    border-style: solid;
    border-width: 0px 0px 5px 0px;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.5);
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.servicio-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}
.servicio-card h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 10px 0;
    font-family: "Lato";
}
.btn-ver {
    display: inline-block;
    margin-top: auto;
    padding: 8px 20px;
    background: linear-gradient(to right, #f78fb3, #f55ca5);
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}
.btn-ver:hover {
    opacity: 0.85;
}


/* Responsive */
@media (max-width: 992px) {
    .servicios-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas en tablet */
    }
}
@media (max-width: 600px) {
    .servicios-grid {
        grid-template-columns: 1fr; /* 1 columna en móvil */
    }
}


/*-------------PRODUCTOS-------------------*/

.productos {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 60px 20px; /* antes 100px */
  color: #fff;
  text-align: center;
}


.productos-text {
  max-width: 700px;
  margin: 0 auto;
}

.productos-subtitle {
  font-family: 'Dancing Script', cursive;
  font-size: 3.1rem;
  margin-bottom: 15px;
  color: #222;
  width: 21em;
  text-shadow: 0em .1em .1em rgb(0 0 0 / 59%);
  margin-left: -151px;
}

.productos h2 {
  font-size: 3rem;
  margin-bottom: 25px;
  font-weight: bold;
  font-family: "Lato";
  color: #222;
  text-shadow: 0em .1em .1em rgb(0 0 0 / 59%);
}

.btn-productos {
  display: inline-block;
  padding: 12px 30px;
  background: #e38bae;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  font-family: "Lato";
}

.btn-productos:hover {
  background: #a65d79;
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */

/* Tablets grandes (hasta 992px) */
@media (max-width: 992px) {
  .productos {
    padding: 80px 20px;
  }

  .productos-subtitle {
    font-size: 2.3rem;
    width: auto;
    margin-left: 0;
    display: block;
  }

  .productos h2 {
    font-size: 2.5rem;
  }

  .btn-productos {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
}

/* Tablets y móviles medianos (hasta 768px) */
@media (max-width: 768px) {
  .productos {
    padding: 70px 15px;
  }

  .productos-subtitle {
    font-size: 1.8rem;
    width: auto;
    margin-left: 0;
    line-height: 1.3;
  }

  .productos h2 {
    font-size: 2rem;
  }

  .btn-productos {
    padding: 10px 22px;
    font-size: 0.9rem;
  }
}

/* Móviles pequeños (hasta 480px) */
@media (max-width: 480px) {
  .productos {
    padding: 60px 10px;
  }

  .productos-subtitle {
    font-size: 1.4rem;
    width: auto;
    margin-left: 0;
    margin-bottom: 10px;
  }

  .productos h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .btn-productos {
    padding: 9px 20px;
    font-size: 0.85rem;
  }
}



/* ----------PORTAFOLIO-------- */
.portafolio {
    background: #fff url('../img/pattern.png'); /* patrón de fondo rosa claro */
    background-repeat: repeat;
    padding: 12px 20px;
    text-align: center;
}

/* Título manuscrito */
.portafolio-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.9rem;
    margin-bottom: 20px;
    color: #000;
    text-shadow: 0em .1em .1em rgb(0 0 0 / 59%);
}

/* Texto principal */
.portafolio-text {
    font-family: "Lato";
    font-size: 1.4rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 20px auto;
    color: #333;
}

/* Texto destacado */
.portafolio-highlight {
    font-family: "Lato";
    font-size: 1.3rem;
    font-weight: bold;
    color: #b33b5a;
    margin-bottom: 40px;
}

/* Galería */
.portafolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}
.portafolio-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}
.portafolio-grid img:hover {
    transform: scale(1.05);
}


/* Botón degradado */
.btn-portafolio {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(to right, #f78fb3, #f55ca5);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    font-family: "Lato";
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.btn-portafolio:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 992px) {
    .portafolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .portafolio-grid {
        grid-template-columns: 1fr;
    }
}

/* ------------BLOG--------------- */
/* Sección Blog */
.home-blog {
  padding: 32px 20px;
  background: #fff;
  text-align: center;
}

.home-blog-title {
  font-size: 3.5rem;
  margin-bottom: 10px;
  font-family: 'Dancing Script', cursive;
  color: #333;
  text-shadow: 0em .1em .1em rgb(0 0 0 / 59%);
  
}

.home-blog-subtitle {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 40px;
  font-family: "Lato";
}

.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.home-blog-card {
  background: #fdf1f4;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.home-blog-card:hover {
  transform: translateY(-5px);
}

.home-blog-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.home-blog-content {
  padding: 20px;
}

.home-blog-card a {
  text-decoration: none !important;
}

.home-blog-content h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #222;
  font-family: "Lato";
  text-decoration: none !important;
}

.home-blog-content p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 20px;
  font-family: "Lato";
  text-decoration: none !important;
}

.home-blog-btn {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(to right, #f78fb3, #f55ca5);
  color: #fff;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: 0.3s;
  font-family: "Lato";
}

.home-blog-btn:hover {
 background: linear-gradient(to right, #f78fb3, #f55ca5);
}

/* Botón inferior */
.home-blog-more {
  margin-top: 40px;
}

.home-blog-more .home-blog-btn-main {
  padding: 12px 30px;
  background: linear-gradient(to right, #f78fb3, #f55ca5);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Lato";
}

.home-blog-more .home-blog-btn-main:hover {
  background: #7a4f71;
}

/* -------OPINIONES-------- */
.opiniones {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
}

.opiniones .section-title {
    font-size: 2.2rem;
    margin-bottom: 50px;
    font-family: 'Dancing Script', cursive;
    font-weight: bold;
    text-shadow: 0em .1em .1em rgb(0 0 0 / 59%);
}

/* Grid de tarjetas */
.opiniones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Tarjeta */
.opinion-card {
    background: #fcdce2;
    border-radius: 20px;
    padding: 30px 20px 50px 20px;
    position: relative;
    text-align: center;
}

/* Foto circular */
.opinion-foto {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-top: -80px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Texto */
.opinion-text {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #333;
    font-family: "Lato";
}

/* Nombre y empresa */
.opinion-nombre {
    font-weight: bold;
    font-size: 1.1rem;
    color: #2b1c5c;
    margin-bottom: 0;
}
.opinion-empresa {
    font-size: 1rem;
    color: #2b1c5c;
}

/* Icono + */
.opinion-plus {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 1.5rem;
    background: #fff;
    color: #333;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}
.opinion-plus:hover {
    background: #f78fb3;
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .opiniones-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .opiniones-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------Contacto------------- */
.contacto {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.contacto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.contacto-col {
    text-align: center;
}

.contacto h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.contacto-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contacto-list li {
    margin-bottom: 12px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contacto-list i {
    color: #e58ca3;
    font-size: 1.2rem;
}

.contacto-logo img {
    max-width: 200px;
    margin: 0 auto;
    display: block;
}

/*  Móviles */
@media (max-width: 640px) {
  .contacto-grid {
    grid-template-columns: 1fr; /* Una columna */
    text-align: center;
  }

  .contacto-col h2 {
    font-size: 1.5rem;
  }

  .contacto-col p,
  .contacto-list li {
    font-size: 1rem;
  }

  .contacto-logo img {
    max-width: 150px;
  }
}

/*  Tablets */
@media (min-width: 641px) and (max-width: 1024px) {
  .contacto-grid {
    grid-template-columns: 1fr 1fr; /* Dos columnas */
    gap: 1.5rem;
  }

  .contacto-col h2 {
    font-size: 1.6rem;
  }
}

/*  Escritorio */
@media (min-width: 1025px) {
  .contacto-grid {
    grid-template-columns: repeat(3, 1fr); /* Tres columnas */
  }

  .contacto-col h2 {
    font-size: 1.8rem;
  }
}

/*----------- FOOTER ------------------------ */

.site-footer {
  background-color: #ffe3eb;
  padding: 0.5rem 0;
  font-family: 'Poppins', sans-serif;
  color: #000;
  text-align: center;
  border-top: 3px solid #f4a6b7;
}

/* Contenedor general */
.footer-content {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
  text-align: left;
}

/* Columna genérica */
.footer-column {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.4rem;
}

/* Títulos */
.footer-column h3 {
  color: #d15d7a;
  font-family: 'Dancing Script', cursive;
  font-size: 2.3rem;
  margin-bottom: 0.8rem;
  text-align: left;
}

/* Para “Síguenos” que debe verse igual pero más firme */
.footer-logo-social h3 {
  font-family: 'Dancing Script', cursive;
  font-weight: 300;
  color: #d15d7a;
  margin-left: 127px;
  margin-top: 90px;
}

/* Texto base */
.footer-column p {
  font-size: 1rem;
  margin: 0.2rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1.4;
}

/* Íconos */
.footer-column i {
  color: #d15d7a;
  font-size: 1.1rem;
}

/* Logo */
.footer-logo img {
  width: 133px;
  margin-bottom: -7.4rem;
  object-fit: contain;
  border-radius: 8px;
  margin-top: -54px;
  margin-left: 110px;
}

/* Redes */
.footer-social {
  text-align: center;
  margin-left: 95px;
  margin-top: -19px;
}

.footer-social a {
  color: #d15d7a;
  background: #fff;
  border-radius: 50%;
  padding: 0.6rem 0.8rem;
  margin: 0 0.3rem;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-social a:hover {
  background-color: #d15d7a;
  color: #fff;
  transform: translateY(-3px);
}

/* Línea inferior */
.footer-bottom {
  text-align: center;
  padding-top: 1.2rem;
  margin-top: 2rem;
  border-top: 1px solid #f4a6b7;
  font-size: 0.9rem;
  color: #555;
}

/* ===============================
   RESPONSIVE
   =============================== */
/* Tablets */
@media (max-width: 992px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-column {
    align-items: center;
    text-align: center;
  }

  .footer-column h3 {
    text-align: center;
    font-family: 'Dancing Script', cursive;
  }

  .footer-logo img {
    margin: 0 auto;
    display: block;
    width: 200px;
  }

  .footer-logo-social h3 {
    margin-left: 0;
    text-align: center;
    margin-top: -20px;
  }

  .footer-social {
    margin-left: 0;
    margin-top: 10px;
  }

  .footer-contact p,
  .footer-schedule p {
    justify-content: center;
  }
}

/* Móviles */
@media (max-width: 576px) {
  .site-footer {
    padding: 2rem 1rem;
  }

  .footer-logo img {
    width: 140px;
    margin: 0 auto;
  }

  .footer-logo-social h3 {
    margin-left: 0;
    font-size: 2.3rem;
    text-align: center;
  }

  .footer-social {
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
  }

  .footer-social a {
    padding: 0.5rem 0.7rem;
    font-size: 1rem;
  }

  .footer-bottom {
    font-size: 0.8rem;
    margin-top: 1.5rem;
  }
}


/*-------------PAGE SERVICES---------------*/

/*-------Hero Servicios--------- */
.hero-services {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    padding: 56px;
}

/* Overlay con animación sutil */
.hero-services-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.56);
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
}

.hero-services-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 800px;
    animation: slideUp 1.2s ease forwards;
}

.hero-services h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'Dancing Script', cursive;
     color: #ffffff;
    text-shadow: 0em .1em .1em rgb(0 0 0);
    

}

.hero-services p {
    font-size: 1.7rem;
    line-height: 1.6;
    color: #ffffff;
    font-family: "Lato";
}

/* Responsivo */
@media (max-width: 768px) {
    .hero-services {
        height: 40vh;
        padding: 20px;
    }
    .hero-services h1 {
        font-size: 2rem;
    }
    .hero-services p {
        font-size: 1rem;
    }
}

/* Animaciones */
@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/*----------Cards Servicios------------------ */
.cards-services {
    padding: 60px 20px;
    background: #fff;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    justify-content: center;
}

.card-service {
    background: #fff;
    border-color: #e48bb2;
    border-color: #e48bb2;
    border-style: solid;
    border-width: 0px 0px 5px 0px;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.5);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, border 0.3s;
}

.card-service:hover {
    transform: translateY(-8px);
    border: 2px solid #e8a2b8;
}


.card-service img {
  width: 100%;
  height: 250px;          
  object-fit: cover;       
  border-radius: 10px;
  margin-bottom: 15px;
}

.card-service h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
    font-family: "Lato";
}

.card-service p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 15px;
    font-family: "Lato";
}

/* Botón */
.btn-cita {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(45deg, #f78fb3, #e84393);
    color: #fff;
    font-weight: bold;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.btn-cita:hover {
    background: linear-gradient(45deg, #e84393, #f78fb3);
    transform: scale(1.05);
}


/*--------------------Servicio extra----------------*/
.servicios-extra {
  padding: 70px 20px;
  background: linear-gradient(to bottom, #fff, #f8c6d8);
  text-align: center;
}

.servicios-extra .section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  font-family: 'Dancing Script', cursive;
  color: #333;
}

.servicios-extra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.servicio-extra-card {
  background: #fff;
  padding: 20px;
  border-color: #e48bb2;
  border-color: #e48bb2;
  border-style: solid;
  border-width: 0px 0px 5px 0px;
  border-radius: 10px 10px 10px 10px;
  box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicio-extra-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 10px 20px rgba(0,0,0,0.15);
  border: 3px solid #e8a2b8;
}

.servicio-extra-card img {
  width: 100%;
  height: 250px;          
  object-fit: cover;       
  border-radius: 10px;
  margin-bottom: 15px;
}

.servicio-extra-card h3 {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 10px;
}

.servicio-extra-card p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 15px;
  font-family: "Lato";
}

.servicio-extra-card .btn-reserva {
  display: inline-block;
  padding: 10px 18px;
  background: linear-gradient(45deg, #e48bb2, #d65b9f);
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.servicio-extra-card .btn-reserva:hover {
  background: linear-gradient(45deg, #d65b9f, #e48bb2);
}

/*----------Servicios decorados------------*/
.servicios-decorados {
  padding: 70px 20px 0 20px;
  background: #fff;
  text-align: center;
  position: relative;
}

.servicios-decorados .section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  font-family: 'Dancing Script', cursive;
  color: #333;
}

.servicios-decorados .servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.servicios-decorados .servicio-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicios-decorados .servicio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 10px 20px rgba(0,0,0,0.15);
  border: 3px solid #e8a2b8;
}

.servicios-decorados .servicio-card img {
  width: 100%;
  height: 250px;          
  object-fit: cover;       
  border-radius: 10px;
  margin-bottom: 15px;
}

.servicios-decorados .servicio-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #222;
}

.servicios-decorados .servicio-card p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 15px;
  font-family: "Lato";
}

.servicios-decorados .servicio-card .btn-reserva {
  display: inline-block;
  padding: 10px 18px;
  background: linear-gradient(45deg, #e48bb2, #d65b9f);
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.servicios-decorados .servicio-card .btn-reserva:hover {
  background: linear-gradient(45deg, #d65b9f, #e48bb2);
}

/* 🔹 Borde inferior con patrón */
.servicios-decorados-border {
  background: url('<?php echo get_template_directory_uri(); ?>/assets/img/pattern.png') repeat-x;
  height: 60px;
  margin-top: 40px;
}

/*------------Servicios cuidados-----------------*/

.servicios-cuidados {
  padding: 70px 20px;
  background: linear-gradient(to bottom, #fff, #f8c6d8);
  text-align: center;
}

.servicios-cuidados .section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  font-family: 'Dancing Script', cursive;
  color: #333;
}

.servicios-cuidados .servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.servicios-cuidados .servicio-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicios-cuidados .servicio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 12px 20px rgba(0,0,0,0.15);
  border: 3px solid #e8a2b8;
}

.servicios-cuidados .servicio-card img {
   width: 100%;
  height: 250px;          
  object-fit: cover;       
  border-radius: 10px;
  margin-bottom: 15px;
}

.servicios-cuidados .servicio-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #222;
}

.servicios-cuidados .servicio-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
  font-family: "Lato";
}

.servicios-cuidados .servicio-card .btn-reserva {
  display: inline-block;
  padding: 10px 18px;
  background: linear-gradient(45deg, #e48bb2, #d65b9f);
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.servicios-cuidados .servicio-card .btn-reserva:hover {
  background: linear-gradient(45deg, #d65b9f, #e48bb2);
}

/*---------------------Servicio bienestar----------------------*/
/* Fondo y padding */
.servicios-bienestar {
    padding: 2px 0px 0;
    position: relative;
}

.pattern-bienestar {
    padding: 80px 0;
    background: #fff url('../img/pattern.png') repeat; /* opcional si quieres fondo decorado */
}


/* Título */
.servicios-bienestar .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

/* Grid */
.servicios-bienestar .servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Tarjetas */
.servicios-bienestar .servicio-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    margin-right: 23px;
    margin-left: 2px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
}
.servicios-bienestar .servicio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    border: 3px solid #e8a2b8;
}

.servicios-bienestar .servicio-card img {
   width: 100%;
  height: 250px;          
  object-fit: cover;       
  border-radius: 10px;
  margin-bottom: 15px;
}

.servicios-bienestar .servicio-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: #555;
}

.servicios-bienestar .servicio-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
    font-family: "Lato";
}

/* Botón */
.servicios-bienestar .btn-reserva {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(45deg, #f78da7, #e75480);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease;
}
.servicios-bienestar .btn-reserva:hover {
    background: linear-gradient(45deg, #e75480, #f78da7);
}

/* Divider con patrón floral */
.pattern-divider-bienestar {
    width: 100%;
    height: 60px;
    background-image: url('<?php echo get_template_directory_uri(); ?>/assets/img/pattern.png');
    background-repeat: repeat-x;
    background-size: contain;
    margin-top: 50px;
}

/*------------------ PAGINA FACIALES-----------------------------------
/* Hero Faciales */
.hero-faciales {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #000;
    text-align: center;
    padding: 60px 20px;
}

.hero-faciales-overlay {
    position: absolute;
    opacity: 0;
    inset: 0px;
    background: rgba(0, 0, 0, 0.57);
    animation: 1.5s ease 0s 1 normal forwards running fadeIn;
}

.hero-faciales-content {
   margin-top: 133px;
}

.hero-faciales h1 {
    font-size: 4.3rem;
    font-family: 'Dancing Script', cursive;
    margin-bottom: 15px;
     color: #ffffff;
    text-shadow: 0em .1em .1em rgb(0 0 0);
}

.hero-faciales p {
    font-size: 1.6rem;
    color: #ffffff;
    font-family: "Lato";
}

/* Efecto Fade-in */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 🌸 Corrección total para el hero en móviles */
@media (max-width: 768px) {
  .hero-faciales {
    padding: 40px 15px;
    min-height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-position: center;
    background-size: cover;
    position: relative;
  }

  /* Hace visible el overlay para dar contraste */
  .hero-faciales-overlay {
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }

  /* Centra el texto sin margen fijo */
  .hero-faciales-content {
    margin-top: 0 !important;
    padding: 10px;
    z-index: 2;
    position: relative;
    width: 90%;
  }

  .hero-faciales h1 {
    font-size: 2.1rem;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
    line-height: 1.3;
  }

  .hero-faciales p {
    font-size: 1.1rem;
    color: #f7f7f7;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  }
}

@media (max-width: 480px) {
  .hero-faciales {
    min-height: 240px;
    padding: 0px 10px;
  }

  .hero-faciales h1 {
    font-size: 2rem;
    padding-top: 110px;
  }

  .hero-faciales p {
    font-size: 0.95rem;
  }
}




/*---------------------------SECCIONES FACIALES---------------- */
.faciales-alt {
    padding: 60px 20px;
    position: relative;
    background: linear-gradient(8deg, #f9f9f9, #fcdce26b);
}


.faciales-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}


/* Imagen */
.faciales-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0px 6px 21px rgba(0, 0, 0, 0.15);
}
.faciales-img img:hover {
    transform: scale(1.05);
}

/* Texto */
.faciales-text {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.15);
    width: 886px;
}
.faciales-text h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: bold;
    color: #222;
    border-bottom: 4px solid #e88eb0;
}
.faciales-text p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #444;
    font-family: "Lato";
}
.faciales-text .btn-reserva {
    display: inline-block;
    background: linear-gradient(45deg, #e86a9c, #f3a2c7);
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}
.faciales-text .btn-reserva:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

/* Alternancia */
.faciales-alt.reverse .faciales-grid {
    flex-direction: row-reverse;
}

/* Animación */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/*  RESPONSIVO OPTIMIZADO */
@media (max-width: 1024px) {
  .faciales-grid {
    gap: 20px;
    padding: 0 15px;
  }
  .faciales-text {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .faciales-alt {
    padding: 40px 15px;
  }

  .faciales-grid {
    flex-direction: column-reverse !important;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .faciales-img img {
    width: 100%;
    max-width: 480px;
    border-radius: 10px;
  }

  .faciales-text {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  }

  .faciales-text h2 {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .faciales-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .faciales-text .btn-reserva {
    font-size: 1rem;
    padding: 10px 22px;
  }
}

@media (max-width: 480px) {
  .faciales-alt {
    padding: 30px 10px;
  }

  .faciales-text {
    padding: 15px;
  }

  .faciales-text h2 {
    font-size: 1.2rem;
  }

  .faciales-text p {
    font-size: 0.95rem;
  }

  .faciales-text .btn-reserva {
    display: block;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    padding: 12px 0;
    border-radius: 30px;
  }
}


/*-------------------PAGINA PAQUETES---------------*/
/*--------------Hero paquetes------------------ */
.hero-paquetes {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #000;
    text-align: center;
    padding: 60px 20px;
}

.hero-paquetes-overlay {
    position: absolute;
    opacity: 0;
    inset: 0px;
    background: rgba(0, 0, 0, 0.57);
    animation: 1.5s ease 0s 1 normal forwards running fadeIn;
    padding: 9px;
}

.hero-paquetes-content {
   margin-top: 133px;
}

.hero-paquetes h1 {
    font-size: 4.3rem;
    font-family: 'Dancing Script', cursive;
    margin-bottom: 15px;
     color: #ffffff;
    text-shadow: 0em .1em .1em rgb(0 0 0);
}

.hero-paquetes p {
    font-size: 1.7rem;
    color: #ffffff;
    font-family: "Lato";
}

/* Efecto Fade-in */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .hero-paquetes {
        padding: 40px 15px;
        height: auto !important;
    }

    .hero-paquetes h1 {
        font-size: 2rem;
    }

    .hero-paquetes p {
        font-size: 1rem;
        font-family: "Lato";
    }
}

/*-------------Sección Paquetes------------------------------ */
.paquetes-grid {
  padding: 60px 20px;
  background: url('../img/pattern.png') repeat;
}

.paquetes-grid .grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.paquete-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 300px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.paquete-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.20);
}

.paquete-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.paquete-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: bold;
  border-bottom: 4px solid #e88eb0;
}

.paquete-desc {
  font-size: 1.3rem;
  color: #222;
  margin: 10px 0;
  line-height: 1.5;
  font-family: "Lato";
}

.paquete-card .paquete-sesiones {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 15px;
  border: 2px solid #f3a8c9;
  padding: 5px 10px;
  border-radius: 20px;
  display: inline-block;
}

.btn-paquete {
  background: linear-gradient(90deg, #f28ebc, #d76da0);
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-paquete:hover {
  background: linear-gradient(90deg, #d76da0, #f28ebc);
}


/* Responsivo */
/*  Móviles */
@media (max-width: 640px) {
  .hero-paquetes {
    height: auto !important;  /* Anula altura fija */
    min-height: 40vh;         /* Altura proporcional */
    padding: 1rem;
  }

  .hero-paquetes-content h1 {
    font-size: 2.1rem;
    line-height: 1.3;
  }

  .hero-paquetes-content p {
    font-size: 1.1rem;
    line-height: 1.4;
    padding: 0 1rem;
  }
}

/*  Tablets */
@media (min-width: 641px) and (max-width: 1024px) {
  .hero-paquetes {
    min-height: 70vh;
  }

  .hero-paquetes-content h1 {
    font-size: 2.2rem;
  }

  .hero-paquetes-content p {
    font-size: 1.1rem;
  }
}

/*-------------------PAGINA MOMENTOS---------------*/
/*--------------Hero planes------------------ */
.hero-planes {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #000;
    text-align: center;
    padding: 60px 20px;
}

.hero-planes-overlay {
    position: absolute;
    opacity: 0;
    inset: 0px;
    background: rgb(147 105 105 / 57%) !important; 
    animation: 1.5s ease 0s 1 normal forwards running fadeIn;
    padding: 9px;
}

.hero-planes-content {
   margin-top: 133px;
}

.hero-planes h1 {
    font-size: 4.3rem;
    font-family: 'Dancing Script', cursive;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 0em .1em .1em rgb(0 0 0);
}

.hero-planes p {
    font-size: 1.7rem;
    color: #ffffff;
    font-family: "Lato";
}

/* Efecto Fade-in */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsivo */
/* 📱 Móviles */
@media (max-width: 640px) {
  .hero-planes {
    height: auto !important;   /* Anula altura fija */
    min-height: 40vh;          /* Usa altura proporcional */
    padding: 1rem;
  }

  .hero-planes-content h1 {
    font-size: 2.3rem;
    line-height: 1.3;
  }

  .hero-planes-content p {
    font-size: 1rem;
    line-height: 1.4;
    padding: 0 1rem;
  }
}

/* 📲 Tablets */
@media (min-width: 641px) and (max-width: 1024px) {
  .hero-planes {
    min-height: 70vh;
  }

  .hero-planes-content h1 {
    font-size: 2.2rem;
  }

  .hero-planes-content p {
    font-size: 1.1rem;
  }
}

/*-----------------Planes Especiales------------------------- */

/* Sección Planes Especiales */
.planes-especiales {
  position: relative;
  overflow: hidden;
  padding: 70px 20px;
  background: linear-gradient(to bottom, #fff 50%, #fcdce2 50%);
}

/* Overlay rosado */
.planes-especiales::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #fff 50%, #fcdce2 50%);
  z-index: 1;
}

/* Contenedor interno */
.planes-especiales .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* Grid responsivo */
.planes-especiales .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* Cards */
.planes-especiales .plan-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  max-width: 300px;
  width: 100%;
}

.planes-especiales .plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

/* Imagen circular */
.planes-especiales .plan-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #e91e63;
  margin-bottom: 15px;
  transition: transform 0.3s;
  margin-left: 54px;
}

.planes-especiales .plan-card img:hover {
  transform: scale(1.05);
}

/* Título */
.planes-especiales .plan-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
font-family: "Lato";
}

/* Botón */
.planes-especiales .btn-plan {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  border-radius: 25px;
  background: linear-gradient(90deg, #ff7eb3, #ff4f81);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
  font-family: "Lato";
}

.planes-especiales .btn-plan:hover {
  background: linear-gradient(90deg, #ff4f81, #ff7eb3);
  transform: scale(1.05);
}

/* Responsivo en móviles */
@media (max-width: 768px) {
  .planes-especiales {
    padding: 40px 15px;
  }

  .planes-especiales .plan-card {
    max-width: 100%;
    width: 83%;
    margin-left: 5%;
  }

  .planes-especiales .plan-card img {
    width: 140px;
    height: 140px;
    margin-left: 1px;
  }


