body {
    margin: 0;
 padding-top: 80px !important;
 background-color: #000 !important;
    color: #fff;
}




.floating-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.floating-icons a {
  width: 50px;
  height: 50px;
  background-color: #088335; /* WhatsApp por defecto */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.floating-icons a:hover {
  transform: scale(1.1);
}




.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
}

.hero-rays {
  height: 1em; /* se ajusta al tamaño de la fuente */
  width: auto;
}

.hero-title {

  opacity: 0;
  font-family: "Oswald", sans-serif;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-title.show {
  opacity: 1;
  transform: translateY(0);
}



.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  top: 50%;
  transform: translateY(-50%);
}

.hero-content h1 {
  font-size: 6rem;
  margin: 0;
  font-family: 'Oswald', sans-serif;
}

.hero-content h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 10px 0 20px;
  font-family: 'Roboto', sans-serif;
}


@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 4rem;
  }


}

.btn-yellow {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  color: black;
font-family: 'Oswald', sans-serif;
  background-color: #ffb700; /* amarillo */
  border: none;
  position: relative;
  text-decoration: none;
  z-index: 2; /* botón por encima */
  transition: transform 0.3s ease;
}

.btn-yellow::before {
  content: "";
  position: absolute;
  top: -8px;  /* desplaza hacia arriba */
  right: -8px; /* desplaza hacia la derecha */
  width: 100%;
  height: 100%;
  border: 2px solid white; /* borde blanco */
  z-index: 1; /* detrás del botón */
}

.btn-yellow:hover {
  transform: translateY(-3px);
}


.btn-black {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
font-family: 'Oswald', sans-serif;
  background-color: #000000; /* amarillo */
  border: none;
  position: relative;
  text-decoration: none;
  z-index: 2; /* botón por encima */
  transition: transform 0.3s ease;
}

.btn-black::before {
  content: "";
  position: absolute;
  top: -8px;  /* desplaza hacia arriba */
  right: -8px; /* desplaza hacia la derecha */
  width: 100%;
  height: 100%;
  border: 2px solid rgb(255, 196, 0); /* borde blanco */
  z-index: 1; /* detrás del botón */
}

.btn-black:hover {
  transform: translateY(-3px);
}


.btn-blackwhite {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
font-family: 'Oswald', sans-serif;
  background-color: #000000; /* amarillo */
  border: none;
  position: relative;
  text-decoration: none;
  z-index: 2; /* botón por encima */
  transition: transform 0.3s ease;
}

.btn-blackwhite::before {
  content: "";
  position: absolute;
  top: -8px;  /* desplaza hacia arriba */
  right: -8px; /* desplaza hacia la derecha */
  width: 100%;
  height: 100%;
  border: 2px solid rgb(255, 255, 255); /* borde blanco */
  z-index: 1; /* detrás del botón */
}

.btn-blackwhite:hover {
  transform: translateY(-3px);
}

.read-more-btn {
  display: inline-block;
  margin-top: 10px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #000000; /* negro */
}

.read-more-btn i {
  margin-right: 5px;
}



/* Solo para pantallas pequeñas */
@media (max-width: 768px) {





  .about-description p {
    max-height: 206px; /* altura inicial visible */
    overflow: hidden;
    transition: max-height 0.5s ease;
  }

  .about-description.expanded p {
    max-height: 500px; /* altura suficiente para mostrar todo */
  }

  .read-more-btn {
    display: inline-block;
    margin-top: 10px;
    cursor: pointer;
    font-size: 18px;
  }
}




/* About Section */
.about {
  position: relative;
  padding: 50px 20px;
  background-color: #f9f9f9; /* Fondo claro para diferenciar del hero */
}

.about h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 20px;
  color: #222;
}


.about img {
  width: 80%;
  height: auto;
}



.about-title {
  padding: 8px 12px;         /* espacio alrededor */
  border-radius: 6px;        /* esquinas redondeadas opcionales */
  display: inline-block;     /* para que solo ocupe lo del texto */
}


.about-location {
      background-color: #000000; /* amarillo dorado */
font-family: 'Oswald', sans-serif !important;
  font-size: 1.2rem;
  font-weight: 400;
  padding: 0.5rem;
  color: #ffffff !important;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-signature {
  margin-top: 20px;
  font-family: 'Roboto', sans-serif;
  color: #333;
}

.about-signature strong {
  font-size: 1.1rem;
  display: block;
  font-weight: 700;
}

.about-signature span {
  font-size: 0.9rem;
  color: #777;
}

.about-title {
  position: relative; 
  display: inline-block; /* para que el título se ajuste al contenido */
}

.arrow-side {
  position: absolute;
  bottom: -10px;   /* espacio debajo del texto */
  left: 50%;
  transform: translateX(-50%); /* centrado respecto al título */
}

.arrow-side img {
  width: 50px; /* tamaño ajustado */
  animation: slideArrow 2s infinite ease-in-out;
}

/* Animación */
@keyframes slideArrow {
  0%   { transform: translate(-50%, 0) translateX(-100px); opacity: 0; }
  50%  { transform: translate(-50%, 0) translateX(0); opacity: 1; }
  100% { transform: translate(-50%, 0) translateX(100px); opacity: 0; }
}




.about-description {
    font-family: "montserrat", sans-serif;
    font-size: 1.1rem;
color: rgb(0, 0, 0);
}




/* Estado inicial (oculto y desplazado) */
.fade-left, .fade-right, .fade-up, .fade-down {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}


/* Animaciones personalizadas */
.fade-left { transform: translateX(-50px); }
.fade-right { transform: translateX(-150px); }
.fade-up { transform: translateY(50px); }
.fade-down { transform: translateY(-50px); }

/* Cuando aparecen */
.show {
  opacity: 1;
  transform: translateX(0) translateY(0);
}



/* Centrado solo en móviles */
@media (max-width: 767px) {
  .about {
    text-align: start;

  }

  .text-container {
  position: relative;
  max-height: 800px; /* antes era 120px, ahora se corta más abajo */
  overflow: hidden;
  transition: max-height 0.5s ease;
}
}





/* Services Section */
/* Services Section */
.services {
  background-color: #000;
  color: #fff;
  padding: 100px 20px;
}

.services-location {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 10px;
}

.services-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.services-description {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}


/* Estado inicial oculto (desplazado hacia abajo) */
.section-animate2 {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

/* Estado final visible */
.section-animate2.visible {
  opacity: 1;
  transform: translateY(0);
}



/* ==========================
   SECCIÓN BASE (Servicios y Tratamientos)
   ========================== */
.section-dark {
  background-color: #000;
  color: #fff;
  padding: 100px 20px;
}

 .section-location {
  font-size: 0.9rem;
  color: #000000;
  background-color: #FFD700;

  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.5rem;
font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-dark .section-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-title img{
    width: 2rem ;

}

 .section-description {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
  font-family: "montserrat", sans-serif;
  color: #ffffff !important;
}

/* ==========================
   TABS (Selector Servicios / Tratamientos)
   ========================== */
.services-tabs {
  background-color: #000;
  color: #fff;
    font-family: "Oswald", sans-serif !;
   
}

.nav-tabs .nav-link {
  color: #fff;
    font-family: "Oswald", sans-serif !;
  border: none !important;
  border-radius: 0 !important;
}

#servicios-tab, #tratamientos-tab, #eventos-tab {
  font-family: "Oswald", sans-serif !important;
  font-size: 1rem;
  padding: 5px 10px;
}
.nav-tabs .nav-link.active {
  background-color: #f1c40f;
  color: #000;
  font-weight: 500;

    border: none !important;
    font-family: "Oswald", sans-serif;
   
}

.nav-tabs {
      font-family: "Oswald", sans-serif !;
  --bs-nav-tabs-border-color: unset;
}

.navbar-text {
    color: #fff !important;
    font-weight: 500 !important;
    font-family: "Oswald", sans-serif;
}

/* ==========================
   CARDS BASE
   ========================== */


.services-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.row.justify-content-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centra horizontalmente */
  gap: 30px; /* separación entre cards */
}

.services-card-img {
  width: 100%;
  display: block;
  height: auto;
}

.services-card-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #fff;
  text-align: center;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.services-card-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}


.services-card-price span {
  margin-top: 6px;
  background-color: #FFD700; /* Amarillo */
  color: #000; /* Texto negro sobre amarillo */
  padding: 2px 8px; /* Ajusta según quieras */
  border-radius: 4px; /* Opcional, para bordes redondeados */
  display: inline-block; /* Para que solo ocupe el ancho del texto */
}

.services-carousel {
  position: relative;
  display: flex;
  align-items: center;
}

.services-carousel-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 15px;
  padding: 10px 0;
}

.services-card {
  min-width: 250px;
  flex: 0 0 auto;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.services-card-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}






/* ========================== */
/* ESTILOS PARA TREATMENTS */
/* ========================== */
/* CARD BASE */
.treatment-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
      border: 1px solid yellow;
}

.treatment-card-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

/* CONTENIDO DENTRO DE LA IMAGEN */
.treatment-card-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #fff;
  background: rgba(0, 0, 0, 0.4); /* filtro sutil para resaltar el texto */
}

/* TITULO */
.treatment-card-title {
  font-size: 1.4rem;
  font-weight: 500;
  text-align: start;
  margin-bottom: 0.3em;
  font-family:"oswald", sans-serif;
}

/* PRECIO */
.treatment-card-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: black;
  background-color: yellow;
  padding: 4px 8px;
  border-radius: 6px;
  align-self: flex-start; /* se queda a la izquierda */
  margin-bottom: 0.5em;
  font-family: "Oswald", sans-serif;
}

/* DESCRIPCIÓN */
.treatment-card-desc {
  font-size: 1rem;
  line-height: 1.4;
  margin-top: auto; /* empuja hacia abajo si hay espacio */
  font-family: "Roboto", sans-serif;
}



/* ========================== */
/* BOTONES DEL CARRUSEL DE TREATMENTS */
/* ========================== */

.treatments-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: yellow;       /* fondo amarillo */
  color: black;             /* flecha negra */
  border: none;
  padding: 1px 15px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1.5rem;
  z-index: 10;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.treatments-carousel-btn:hover {
  background: #e6e600; /* un amarillo más fuerte al pasar */
  transform: translateY(-50%) scale(1.1);
}

/* Botón izquierdo */
.treat-prev {
  left: -15px;
}

/* Botón derecho */
.treat-next {
  right: -15px;
}


@media (max-width: 767px) {


}

/* ========================== */
/* CARRUSEL DE TREATMENTS */
/* ========================== */

.treatments-carousel {
  position: relative;
  display: flex;
  align-items: center;
}


.treatments-carousel-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 15px;
  padding: 10px 0;
}

.treatment-card {
  min-width: 250px;
  flex: 0 0 auto;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.treatment-card-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.treatment-card-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  text-align: center;
}





/* ==========================
   SECCIÓN REVIEWS CON INCLINACIÓN
   ========================== */
.reviews-section {
  background-color: #FFD700;
  padding: 120px 20px !important;
  color: #000;
  position: relative;
  clip-path: polygon(0 10%, 100% 0, 100% calc(90% - 2rem), 0% 100%);
  transform: translateY(-2rem);
}

.reviews-small-title {
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  margin-bottom: 10px;
}

.reviews-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  margin-bottom: 15px;
}

.reviews-description {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 40px;
}


/* Contenedor de los indicadores del carrusel específico */
#reviewsCarousel .carousel-indicators {
  position: static; /* Evita superposición */
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

/* Indicadores inactivos */
#reviewsCarousel .carousel-indicators button {
  width: 30px;          /* Largo de la barra */
  height: 5px;          /* Grosor de la barra */
  border-radius: 2px;   /* Bordes redondeados */
  background-color: #ffffff; /* Color de fondo inactivo */
  border: none;
  transition: all 0.3s;
}

/* Indicador activo */
#reviewsCarousel .carousel-indicators .active {
  background-color: #000000 !important; /* Amarillo brillante */
  width: 40px;               /* Barra más larga que las inactivas */
}





/* Estado inicial (oculto a la izquierda) */
.reviews-section {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s ease-out;
}

/* Estado final (visible en su lugar) */
.reviews-section.visible {
  opacity: 1;
  transform: translateX(0);
}



.review-card {
background-image: url('/assets/images/review-fondo.jpg');
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  height: 100%;          /* Ocupa toda la altura */
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 400px;     /* Ajusta según lo que quieras */
}

.review-photo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 15px;
  display: block;
}


@media (max-width: 768px) {
  .review-photo img{
    width: 70px;
    height: 70px;
  }

.review-text {
  font-size: 1rem !important;
}

}

.review-text {
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 10px auto 20px;
  max-width: 90%;
  font-family: "montserrat", sans-serif;
  font-weight: 300  ;
  font-style: oblique;
}

.review-name {
  font-size: 1.2rem;
  margin: 10px 0 5px;
}

.review-service {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 10px;
}

.review-stars {
  font-size: 1.2rem;
  color: gold;
}



/* ==========================
   SECCIÓN GALERÍA
   ========================== */
.gallery-section {
  background-color: #000;
  color: #fff;
  padding: 100px 20px;

  font-family: "Oswald", sans-serif;
}

.gallery-small-title {
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.5REM;
  color: #000;
  margin-bottom: 10px;
  background-color: rgb(255, 255, 255);
}

.gallery-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  background-color: ;
  margin-bottom: 20px;
}

.gallery-description {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ddd;
}
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

/* Efecto hover opcional */
.gallery-card:hover img {
  transform: scale(1.05);
}

/* Overlay oscuro en la parte inferior */
.gallery-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%; /* ajusta según la altura del texto */
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  pointer-events: none;
}

/* Texto centrado y blanco sobre la overlay */
.gallery-label {
  position: absolute;
  bottom: 30px; /* distancia desde abajo */
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-weight: 500;
  text-align: center;
  z-index: 2;
  font-size: 1.2rem;
  letter-spacing: 2px;
  font-family: "kanit", sans-serif;
  width: 90%;
}


.gallery-small-title,
.gallery-main-title,
.gallery-description {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.gallery-small-title.visible,
.gallery-main-title.visible,
.gallery-description.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Indicador activo con barra amarilla */
.carousel-indicators {
  position: static; /* Evita que se superponga */
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.carousel-indicators button {
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background-color: #ccc; /* Color base */
  border: none;
  transition: all 0.3s;
}

.carousel-indicators .active {
  background-color: #FFD700; /* Amarillo */
  width: 40px; /* Barra más larga */
}





.footer {
  background-color: #000;
  border-top: 2px solid rgb(255, 162, 0); /* Borde superior rojo */
  color: #fff;
}

.border-top {
  border-top: 2px solid gold !important; /* Borde dorado */
}

.footer-icon {
  color: #FFD700; /* Dorado */
  font-size: 1.5em; /* 1.5x más grande */
  margin-right: 8px;
}

.footer .col-md-4 {
  text-align: center; /* Centrar en todas las columnas */
}

.footer ul {
  padding-left: 0;
  list-style: none;
}

.footer a {
  color: #fff;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #FFD700; /* Dorado al pasar el ratón */
}

.footer .row {
  row-gap: 10px; /* Reduce espacio entre columnas */
}






/* ==========================
   SECCIÓN Barra navegacion
   ========================== */

.navbar {
  background-color: #000 !important;
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-family: "Oswald", sans-serif;
}

.navbar-nav .nav-link:hover {
  color: #FFD700 !important; /* dorado */
}

.navbar-text {
  color: #ffffff !important;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}


.banner-section {
  background: url('/assets/images/fondo-hero1.webp') no-repeat center center/cover;
  background-attachment: fixed; /* efecto parallax */
  color: white;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.1rem;
  position: relative;
  padding: 100px 0;
}
.highlight {
  color: #ffc107; /* Amarillo */
}

.banner-title img{
  width:1.5rem;
}

.banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4); /* capa oscura para resaltar texto */
  z-index: 0;
}

.banner-content {
  position: relative;
  z-index: 1; /* para que esté encima del overlay */
}

.banner-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6); /* para que resalte sobre cualquier fondo */
}

.banner-description {
  font-size: 1.25rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
  .banner-title {
    font-size: 2rem;
  }
  .banner-description {
    font-size: 1rem;
  }
}














/* Sección Hero Servicios */
.hero-servicios {
  position: relative;
  background: url('/assets/images/fondo-hero1.webp') no-repeat center center;
  background-size: cover;
  color: #fff;
  padding: 100px 0;
  overflow: hidden;
}

/* Overlay oscuro */
.hero-servicios::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* negro con 40% de opacidad */
  z-index: 1;
}

/* Contenido sobre el overlay */
.hero-servicios .row {
  position: relative;
  z-index: 2;
}

.hero-servicios-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-servicios-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Botón amarillo */
.hero-servicios .btn-yellow {
  background-color: #FFC107;
  color: #000;
  padding: 12px 25px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.hero-servicios .btn-yellow:hover {
  background-color: #e0a800;
}

/* Responsivo */
@media (max-width: 991px) {
  .hero-servicios {
    padding: 70px 15px;
    text-align: center;
  }

  .hero-servicios .col-lg-6 {
    margin-bottom: 30px;
  }
}




.servicios-precios {
  padding: 80px 0;
  background-color: #000; /* fondo negro */
  color: #fff;
  font-family: 'Oswald', sans-serif;
  text-align: center;
}

.servicios-precios-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.servicios-precios-description {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 50px;
}

/* Contenedor de las columnas de precios con borde dorado */
.servicios-precios-table {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border: 4px solid #FFD700; /* borde dorado */
  border-radius: 12px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

/* Columnas internas */
.servicios-precios-column {
  flex: 1;
  min-width: 300px; /* para responsive */
  padding: 20px;
}

/* Lista de precios */
.precio-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #333;
  font-size: 1rem;
}

.precio-nombre {
  font-weight: 500;
}

.precio-amount {
  font-weight: 700;
  color: #FFC107; /* amarillo */
}

/* Responsive: una columna en móviles */
@media (max-width: 991px) {
  .servicios-precios-column {
    min-width: 100%;
    padding: 10px;
  }

  .precio-item {
    font-size: 0.95rem;
  }
}







.hero-title-tratamientos img{
  width: 1.5rem;
}



@media (max-width:768px) {

.hero-title-tratamientos{
  font-size: 3rem;
  font-family: "Oswald", sans-serif;
}


.hero-title-tratamientos img{
  width: 1.5rem;


}



}


.hero-tratamientos{

  position: relative;
  background: url('/assets/images/fondo-hero1.webp') no-repeat center center;
  background-size: cover;
  color: #fff;
  padding: 100px 0;
  overflow: hidden;


}


/* HERO GALERÍA - título con imagen */
.hero-title-galeria img {
  width: 1.5rem;
}

  .hero-title-galeria {
    font-size: 4rem;
    font-family: "Oswald", sans-serif;
  }

  .hero-subtitle-galeria{
    font-size: 1.2rem;
  }
/* Responsivo */
@media (max-width:768px) {
  .hero-title-galeria {
    font-size: 3rem;
    font-family: "Oswald", sans-serif;
  }

  .hero-galeria{
    padding: 50px !important;
  }

  .hero-title-galeria img {
    width: 1.5rem;
  }
}


.galeria-card {
  border-radius: 10px;
  transition: transform 0.3s;
}

.galeria-card:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}







/* Fondo del hero galería */
.hero-galeria {
  position: relative;
  background: url('/assets/images/fondo-hero-galeria1.webp') no-repeat center center;
  background-size: cover;
  color: #fff;
  padding: 200px 0 ;
  overflow: hidden;
}

.hero-nosotros::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Negro con 50% de transparencia */
  z-index: 1; /* Se asegura de estar detrás del contenido */
}

.hero-nosotros .container {
  position: relative; 
  z-index: 2; /* Para que el contenido quede por encima de la capa negra */
}

/* HERO NOSOTROS - título con imagen */
.hero-title-nosotros img {
  width: 1.5rem;
}

/* Responsivo */
@media (max-width:768px) {
  .hero-title-nosotros {
    font-size: 3rem;
    font-family: "Oswald", sans-serif;
  }

  .hero-nosotros{
    padding: 50px 0 !important;
  }

  .hero-title-nosotros img {
    width: 1.5rem;
  }
}

/* Fondo del hero nosotros */
.hero-nosotros {
  position: relative;
  background: url('/assets/images/fondo-hero1.webp') no-repeat center center;
  background-size: cover;
  color: #fff;
 padding: 200px 0;
  overflow: hidden;
}


  .hero-title-nosotros {
    font-size: 4rem;
    font-family: "Oswald", sans-serif;
  }

  .hero-subtitle-nosotros{
    font-size: 1.2rem;
  }



  /* Bloque 1 - Imagen y contenido */
.nosotros-contenido-img {
  width: 80%; /* Reducir imagen al 80% */
  height: auto;
  object-fit: cover;
  border-radius: 10px; /* opcional, para suavizar bordes */
}

/* Título con tipografía Oswald y colores divididos */
.nosotros-contenido-subtitulo {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white; /* color por defecto */
}

/* Para aplicar mitad en amarillo, se recomienda envolver la parte en un span */
.nosotros-contenido-subtitulo .text-yellow {
  color: #FFD700; /* amarillo brillante */
}

/* Subtítulo sobre fondo negro y letras blancas */
.nosotros-contenido-ubicacion {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  background-color: rgb(255, 208, 0);
  color: rgb(0, 0, 0);
  padding: 0.3rem 0.8rem;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 1rem;
}

/* Descripción en Montserrat */
.nosotros-contenido-texto {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #ffffff;
}



/* Bloque 1 - Imagen y contenido */
.nosotros-contenido-img {
  width: 80%; /* Reducir imagen al 80% */
  height: auto;
  object-fit: cover;
  border-radius: 10px; /* opcional, para suavizar bordes */
}

/* Título con tipografía Oswald y colores divididos */
.nosotros-contenido-subtitulo {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white; /* color por defecto */
}

/* Subtítulo sobre fondo amarillo y letras negras */
.nosotros-contenido-ubicacion {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  background-color: rgb(255, 208, 0);
  color: rgb(0, 0, 0);
  padding: 0.3rem 0.8rem;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 1rem;
}

/* Dirección dentro del bloque */
.direccion-barrio {
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  display: inline-block;
}

/* Descripción en Montserrat */
.nosotros-contenido-texto {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #ffffff;
}




/* Firma de Marta debajo del texto */
.nosotros-firma {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-top: 1.5rem;
  font-style: italic;
}





/* Banner nosotros */
.banner-nosotros {
  background-color: #FFD700; /* amarillo brillante */
  padding: 3rem 0; /* espacio arriba y abajo */
}

.banner-nosotros-titulo {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #000000; /* texto negro sobre amarillo */
  margin: 0;
}











/* Sección Hero Tratamientos */
.hero-tratamientos {
  position: relative;
  background: url('/assets/images/fondo-hero1.webp') no-repeat center center;
  background-size: cover;
  color: #fff;
  padding: 200px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}



/* Responsivo */
@media (max-width:768px) {
  .hero-tratamientos{
      padding: 50px 0;
  }}

/* Overlay oscuro */
.hero-tratamientos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* negro con 40% de opacidad */
  z-index: 1;
}

/* Contenido sobre el overlay */
.hero-tratamientos .row {
  position: relative;
  z-index: 2;
}

.hero-title-tratamientos {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: 'Oswald', sans-serif;
}

.hero-title-tratamientos .text-yellow {
  color: #FFD700; /* amarillo brillante */
}

.hero-rays-tratamientos {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

.hero-subtitle-tratamientos {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.5;
  font-family: 'Montserrat', sans-serif;
}

/* Botón amarillo */
.btn-tratamientos {
  background-color: #FFC107;
  color: #000;
  padding: 12px 25px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn-tratamientos:hover {
  background-color: #e0a800;
}




