/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {

  font-style: none;
  text-decoration: none;
  color: none;
  text-decoration: underline;
}

/* Body general */
body {
   background-color: #F3EDE6;

  color: #3E3E3E;
}

/* Header */
.main-header {
  background-color: #000000;
}

/* HEADER FIJO Y CENTRADO */
.main-header {
  background-color: #f2f0ef00;
  position: absolute;            /* <- El header es el que se fija */
  top: 0;
  width: 100%;
  z-index: 1000;
}

/* CONTENEDOR INTERNO CENTRADO */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.logo img {
  height: 8rem;
  margin-bottom: 1rem;
}

.menu a {
  color: #F3EDE6;;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  text-transform: uppercase;

  font-family: 'Poppins', sans-serif;
}

/* Botón hamburguesa oculto en escritorio */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #3e3e3e;
  cursor: pointer;

  z-index: 1000;
}

.menu a:hover {
  text-decoration: underline;
}


/* Estilos responsivos */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #F2F0EF;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    display: none;
    border-radius: 8px;
  }

  .show {
    display: flex;
    flex-direction: column;
  }
}

/* Hero Section */

.hero {
  padding: 80px 20px;
  background-color: #D9D9D9;
  min-height: 100vh;
  background-image: 
  linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
  url("/img/sala de espera spa.jpeg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  margin-bottom: 2rem;

}


.boton-whassap {
  padding: 1rem 0.5rem;
  color: #ffffff;
   background: linear-gradient(
    to bottom,
    #d4af37 0%,
    #e6c96a 40%,
    #c39a2e 100%
  );
  border: none;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  margin-top: 1rem;
  font-family: 'Playfair Display', sans-serif;
  font-weight: bold;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;

  transition: all 500ms;
}

.boton-whassap:hover {
  background-color: #028378;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1500px;
  margin: 0 auto;
  flex-wrap: wrap;

  padding-top: 9rem;
}

@media (max-width: 1170px) {

  .hero-content {
    flex-direction: column;
  }

}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-text h1 {
  font-family: 'Playfair Display', sans-serif;
  font-weight: 400;
  font-size: 75px;
  margin-bottom: 20px;
  color: #F3EDE6;;
}

.hero-text p {
  font-size: 28px;
  line-height: 1.6;
  font-weight: 500;
  text-align: justify;
  padding: 5px;
  color: #F3EDE6;;
}

@media (max-width: 1380px) {

  .hero-text h1 {
    font-size: 65px;
  }

}

@media (max-width: 1200px) {

  .hero-text h1 {
    font-size: 55px;
  }

  .hero-text p {
    font-size: 20px;
  }

}

@media (max-width: 550px) {

  .hero-text h1 {
    font-size: 45px;
  }

  .hero-text p {
    font-size: 18px;
  }

}

@media (max-width: 550px) {

  .hero-text h1 {
    font-size: 35px;
  }

  .hero-text p {
    font-size: 18px;
  }

}



.hero-image {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}


.hero-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 15rem;
  border: 5px solid white;

}

/* Card Profile Section */

.card-profile {
  display: flex;
  justify-content: center;

  font-family: 'Playfair', serif;
  padding: 1rem;
}

@media (max-width: 600px) {

  .card-profile {
    padding: 1rem;
  }

}

.card {
  display: flex;
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  max-width: 600px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);

  position: relative;
}

@media (max-width: 500px) {

  .card {
    flex-direction: column;
  }

}



.img-container {
  background-color: #327F65;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;

  z-index: 1;
}

.img-container img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid white;
  z-index: 2;
  /* Imagen por encima */
  background-color: white;
}

.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-content h2 {
  margin: 0 0 0.5rem 0;
  font-size: 1.4rem;
  color: #3E3E3E;
}

.card-content p {
  margin: 0 0 1rem 0;
  font-size: 1.3rem;
  color: #3E3E3E;
}

/* Clientes Section */

/* CSS */
.testimonios {
  padding: 4rem 1rem;
  text-align: center;
  font-family: 'Playfair', serif;

  font-weight: 300;
  /* Light */
  letter-spacing: 0.5px;
  font-style: normal;
  max-width: 1600px;
  margin: 0 auto;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  padding: 1rem;
}

@media (max-width: 1170px) {

  h2 {
    font-size: 1.9rem;
  }

}



.flex-testimonios {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 0 auto 3rem auto;
  text-align: justify;
}

.testimonial-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 20px;
  max-width: 600px;
  font-family: 'Georgia', serif;
  position: relative;
}


.stars {
  font-size: 24px;
  margin-bottom: 10px;
  color: #f8b400;
}

.testimonial-text {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 12px;
}

.author {
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.emoji {
  font-size: 20px;
  position: absolute;
  bottom: 10px;
  right: 15px;
}


.leer-mas a {
  font-weight: bold;
  text-decoration: none;
  color: #3e3e3e;
  letter-spacing: 1px;
  border-bottom: 2px solid #3e3e3e;
  padding-bottom: 0.2rem;
  transition: all 0.3s ease;
}

.leer-mas a:hover {
  color: #8a6e63;
  border-color: #8a6e63;
}


.cta-section {
  background-color: #327F65;
  /* o #3b8671 según tu estilo */
  font-family: 'Playfair', serif;
  color: #F3EDE6;
  position: relative;
  margin-top: -10px;

  display: flex;
  display: flex;
  justify-content: center;
}

@media screen {}

.cta-section_img {
  height: 200px;
}

.rama {
  position: absolute;
  width: 5rem;
  top: -1px;
  left: 0;
}

.invertido {
  transform: rotate(180deg);
  margin-top: -5px;
}

.cta-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1170px) {

  .hero-content {
    flex-direction: column;
  }

}

.cta-section h2 {
  font-size: 3rem;
  font-family: 'Playfair', serif;
  margin-bottom: 0.5rem;
  font-weight: bold;
  padding: 1rem;
}

@media (max-width: 1170px) {

  .hero-content {
    flex-direction: column;
  }

}


.cta-section p {
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: lighter;
  padding: 1rem;
}

.cta-button {
  background-color: #48c774;
  /* verde tipo WhatsApp */
  color: #fff;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #3bb66e;
}


/* Banner Section */

.banner-texto {
  min-height: 85vh;
  position: relative;
  padding: 4rem 1rem;
  font-family: 'Playfair', serif;

  font-weight: 300;
  /* Light */
  letter-spacing: 0.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.banner-header-1 {
  font-size: 32px;
  font-style: oblique;
}

.banner-header-2 {
  font-style: oblique;
  font-size: 50px;
}

.planta {
  position: absolute;
  left: -100px;
  bottom: 0;
  width: 45rem;
  transform: rotate(5deg);
}

@media (max-width: 1900px) {

  .planta {
    width: 33rem;
  }

}

@media (max-width: 850px) {

  .planta {
    left: -35px;
    bottom: -133px;
    width: 26rem;
  }

}

@media (max-width: 750px) {

  .planta {
    width: 14rem;
  }

}

.planta-2 {
  position: absolute;
  right: -100px;
  bottom: 0;
  width: 45rem;
  transform: rotate(180deg);
}

/* Servicios Section */

.section_servicios {
  padding: 6rem 10rem;
  text-align: center;
  font-family: 'Playfair', serif;
  margin: 0 auto;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media (max-width: 1170px) {

  .section_servicios {
    padding: 6rem 1rem;

  }

}


.flex-img {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;

}


.card-tratamiento {
  background-color: #f2f2f2;
  border-radius: 8px;
  max-width: 600px;
  padding: 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  max-width: 700px;
  font-family: 'Playfair', serif;
}

@media (max-width: 650px) {
  .card-tratamiento {
    width: 100%;
  }
}



.icono img {
  width: 200px;
  height: auto;
}

@media (max-width: 650px) {
  .icono img {
    width: 85px;
  }
}

.contenido {
  flex: 1;
}

.contenido h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  color: #3E3E3E;
}

.contenido p {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #3E3E3E;
  text-align: justify;
}

@media (max-width: 650px) {
  .contenido p {
    display: none;
  }
}

.ver-link {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  color: #000;
  text-decoration: none;
}


.top-services {
  width: 100%;
  text-align: center;

  font-family: 'Playfair Display', sans-serif;
  margin-bottom: 4rem;
}

.services-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.service-card {
  flex-basis: 420px;
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 450px;
  height: 300px;
  /* La imagen ocupa todo el ancho de la tarjeta */
}

@media (max-width: 430px) {

  .service-card img {
    width: 100%;
    height: 260px;
    /* La imagen ocupa todo el ancho de la tarjeta */
  }

}


.service-name {
  font-size: 1.5rem;
  margin: 1rem 0 0.5rem 0;
}

.service-price {
  font-family: 'Playfair Display', sans-serif;
  font-size: 1.25rem;
  margin: 0 0 1rem 0;
}


.buy-button {
  background-color: #252525;
  /* Fondo negro/gris oscuro */
  color: #FDFBF8;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 1rem;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.buy-button:hover {
  background-color: #4a4a4a;
  /* Color ligeramente más claro al pasar el mouse */
}

/* --- Ubicacion --- */


.ubicacion {
  padding: 4rem 15rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  color: #F3EDE6;
}

@media (max-width: 1320px) {

  .ubicacion {
    padding: 4rem 2.5rem
  }

}

@media (max-width: 750px) {
  .ubicacion {
    padding: none;
    display: flex;
    justify-content: center;
}
}

.ubicacion h3 {
  font-size: 2rem;
  font-weight: 300;

  font-weight: lighter;
}



.ubicacion p {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  text-align: justify;
}


.datos-ubicacion {
  display: flex;
  gap: 20px;
}

@media (max-width: 830px) {

  .datos-ubicacion {
    flex-wrap: wrap;
  }

}


.datos-ubicacion .mapa {
  min-width: 40vw;
  border-radius: 8px;
}

@media (max-width: 830px) {

  .datos-ubicacion .mapa {
    width: 100%;
  }

}

@media (max-width: 680px) {

  .datos-ubicacion .mapa {
    min-width: 50%;
  }

}

footer {
  background-image: url(/img/layered-waves-haikei.svg);
  padding: 1rem;
}

.texto-ubicacion .leer-mas a {
  color: #F3EDE6;
}

.informacion_footer {

  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5rem;
  color: #F3EDE6;
}

.informacion_footer h3 {
  font-family: 'Playfair', serif;
  font-size: 3rem;
}

.informacion_texto p {
  font-family: 'Playfair', serif;
  font-size: 1.2rem;
}

.redes_sociales {
  display: flex;
  justify-content: center;
  gap: 20px;
  opacity: 0.6;
  margin-top: 2rem;
}



.language-switch {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 6px;
  padding: 15px 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  font-family: sans-serif;
  font-weight: bold;
  z-index: 9999;
  cursor: pointer;
  gap: 8px;
  color: #3E3E3E;
}

.language-switch img {
  width: 28px;
  height: 18px;
  border-radius: 2px;
  object-fit: cover;
}

.language-switch .arrow {
  font-size: 12px;
}

.contacto-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  cursor: pointer;
  gap: 8px;
  color: #3E3E3E;

  animation: latido-lento 2.5s ease-in-out infinite;
  transition: transform 0.3s ease;
}

/* Animación de palpitar */
@keyframes latido-lento {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.08);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.06);
  }
}

.btn-agenda-pro {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 30px;
  background: linear-gradient(
    to bottom,
    #d4af37 0%,
    #e6c96a 40%,
    #c39a2e 100%
  );
    color: white !important;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    border-radius: 50px; /* Bordes redondeados modernos */
    text-transform: uppercase;
    transition: transform 0.3s ease, background-color 0.3s ease;
    font-family: 'Poppins', sans-serif; 
    
    /* ANIMACIÓN LLAMATIVA */
    animation: pulse-animation 2s infinite;
}

.btn-agenda-pro:hover {
    background-color: #1ba970;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(34, 196, 136, 0.5);
}

/* Definición del movimiento de pulso */
@keyframes pulse-animation {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 196, 136, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(34, 196, 136, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 196, 136, 0);
    }
}

.menu_reserva {
    padding: 15px 30px;
    background-color: #22c488; /* Verde AgendaPro */
    color: white !important;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px; /* Bordes redondeados modernos */


    /* ANIMACIÓN LLAMATIVA */
    animation: pulse-animation 2s infinite;
}


