

/* Fuente base y ajustes generales */
body {
  margin: 0;
  font-family: 'Century Gothic', sans-serif;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Barra superior */
.top-bar {
  background-color: white;
  border-bottom: 1px solid #ccc;
  padding: 0.5rem 0;
  text-align: center;
}

.top-bar-icons a {
  margin: 0 10px;
  color: #C69C6D; /* Dorado */
  font-size: 1.2rem;
}

/* Header principal */
.main-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  padding: 10px 20px;
  position: relative;
}

/* Logo */
.logo img {
  width: 200px;
  height: auto;
}

/* Botón */
.cta-button .btn-agendar {
  background-color: #C69C6D; /* Dorado */
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button .btn-agendar:hover {
  background-color: #b59a46;
}

/* Menú */
.navbar {
  position: relative;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-list li a {
  color: gray;
  font-weight: bold;
}
.nav-list li a:hover {
color:#C69C6D; /* Dorado */
}
/* Ícono del menú hamburguesa */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #C69C6D; /* Dorado */
}

/* Responsive */
@media (max-width: 768px) {
  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    width: 100%;
    border: 1px solid #ccc;
    z-index: 1000;
  }

  .nav-list.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .main-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo, .cta-button, .navbar {
    width: 100%;
    margin: 10px 0;
    text-align: center;
  }

  .cta-button {
    order: 2;
  }

  .navbar {
    order: 3;
  }
}


.portada {
  position: relative;
  width: 100%;
  height: 300px;
  background-image: url('fondo.jpg'); /* tu imagen de fondo */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;

}

/* Texto centrado */
.texto-portada {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size:4rem;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  z-index: 3;
  padding: 0 1rem;
  font-family: 'Great Vibes', cursive;
margin-top:20px;
}

@media (max-width: 768px) {
  

  .texto-portada {
    font-size: 3rem;
    bottom: 10%;
  }
}



.seccion-presentacion {
  background-color: #ffffff;
  padding: 2rem;
  text-align: center;
}

.seccion-presentacion .contenedor {
  max-width: 900px;
  margin: 0 auto;
}

/* TÍTULO CON ÍCONOS A LOS LADOS */
.titulo-con-iconos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.titulo-con-iconos h2 {
  color:#C69C6D; /* Dorado */
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
}



.seccion-presentacion h3 {
  color:#C69C6D; /* Dorado */
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 2rem;
}

.seccion-presentacion p {
  color: #706F6F;
  font-size: 1.1rem;
  line-height: 1.8;

}

@media (max-width: 768px) {
  .titulo-con-iconos {
    flex-direction: column;
  }

  .titulo-con-iconos h2 {
    font-size: 2rem;
  }

  .seccion-presentacion h3 {
    font-size: 1.2rem;
  }

  .seccion-presentacion p {
    font-size: 1rem;
  }

  .icono-flor {
    width: 30px;
  }
}
.icono-flor {
  width: 40px;
  transition: transform 0.4s ease, filter 0.3s ease;
  fill: #C69C6D; /* Dorado */
  filter: drop-shadow(0 0 3px #C89B3C);
}

/* Animación al hacer hover */
.icono-flor:hover {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 0 8px #FFD700) brightness(1.2);
}


.seccion-maestra {
  background-color: #FEEDE5;
  padding: 60px 20px;
border-bottom:30px solid  #C69C6D; /* Dorado */
}

.contenedor-maestra {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
text-align:center;
}

.foto-maestra {
  flex: 1 1 300px;
  text-align: center;
}

.foto-maestra img {
  width: 100%;
  max-width: 300px;
  border-radius: 20px;
  object-fit: cover;
}

.texto-maestra {
  flex: 1 1 400px;
  color: #706F6F;
}

.texto-maestra h2 {
  color: #C69C6D; /* Dorado */
  font-size: 28px;
  margin-bottom: 20px;
}

.texto-maestra p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.botones-maestra {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-dorado {
  background-color:#C69C6D; /* Dorado */
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
}

.btn-dorado:hover {
  background-color: #b3872d;
  transform: scale(1.05);
}

.seccion-servicios {
  background-color: white;
  padding: 5%;
  text-align: center;
}

.seccion-servicios h2 {
  color: #C69C6D; /* Dorado */
  font-size: 36px;
  margin-bottom: 40px;
 
}

.servicio {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  gap: 20px;
}

.imagen-servicio {
  flex: 0 0 200px; /* Fija el ancho de la imagen */
}

.imagen-servicio img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.texto-servicio {
  flex: 1;
  text-align: left;
}

.texto-servicio h3 {
  font-size: 28px;
  color: #706F6F;
  margin-bottom: 15px;
}

.texto-servicio p {
  font-size: 18px;
  color: #706F6F;
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-ver-mas {
  background-color: #C89B3C;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
}

.btn-ver-mas:hover {
  background-color: #b3872d;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .servicio {
    flex-direction: column;
    text-align: center;
  }

  .imagen-servicio {
    margin-bottom: 20px;
  }
}

.seccion-comunidad {
  background-color: #C69C6D; /* Dorado */
  padding: 60px 20px;
  color: white;
  font-family: Bahnschrift, sans-serif;
}

.contenido-comunidad {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.texto-comunidad {
  flex: 1;
  text-align: left;
}

.texto-comunidad h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: white;
}

.texto-comunidad p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.botones-comunidad {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn-comunidad {
  background-color: white;
  color:#C69C6D; /* Dorado */
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: background 0.3s, transform 0.2s;
}

.btn-comunidad:hover {
  background-color: #E8D3A0; /* Fondo dorado más claro en hover */
  color: white;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .contenido-comunidad {
    flex-direction: column;
    text-align: center;
  }

  .botones-comunidad {
    align-items: center;
  }
}

.seccion-testimonios {
  background-color: #FEEDE5;
  padding: 60px 20px;
}

.seccion-testimonios h2 {
  text-align: center;
  font-size: 36px;
  color: #706F6F;
  margin-bottom: 40px;
}

.contenedor-imagenes {
  display: flex;
  }

.columna {
 width:20%;
padding:2.5%;
}

.columna img {
  width: 100%;
}

@media (max-width: 768px) {
  .contenedor-imagenes {
    flex-direction: column;
    align-items: center;
text-align:center; }

.columna {
 width:100%;
 }
  .columna img {
    max-width: 80%;
  }
}

.porque-elegir {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: left;
  max-width:90%;
  margin:auto;
}

.porque-elegir h2 {
  color: #C69C6D;
  font-size: 2em;
  margin-bottom: 20px;
}

.porque-elegir p {
  color: #706F6F;
  font-size: 1.1em;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.porque-elegir p.lista {
  white-space: pre-line;
}

/* Responsivo */
@media (max-width: 600px) {
  .porque-elegir h2 {
    font-size: 1.5em;
  }

  .porque-elegir p {
    font-size: 1em;
    padding: 0 10px;
  }
}

.comunidad {
  background-color: #C69C6D;
  display: flex;
  flex-wrap: wrap;
  padding: 60px 5%;
  color: #ffffff;
  text-align: left;
  gap: 40px;
}

.columna-izquierda {
  flex: 0 0 60%;
 
}

.columna-izquierda h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #ffffff;
}

.columna-izquierda p {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #ffffff;
}

.iconos-redes {
  display: flex;
  margin-bottom: 20px;
 }

.iconos-redes a {
  font-size: 50px;
  color: #ffffff;
  margin-right: 20px;
  transition: transform 0.2s ease-in-out;
margin:auto;
}

.iconos-redes a:hover {
  transform: scale(1.1);
  color: #eee;
}

.columna-derecha {
  flex: 0 0 33%;
  text-align: center;
}

.columna-derecha img {
  width: 60%;
  max-width: 300px;
  margin-bottom: 10px;
}

.columna-derecha p {
  font-size: 1em;
  line-height: 1.6;
  color: #ffffff;
}

.columna-derecha a {
  color: #ffffff;
  font-weight: bold;
  text-decoration: underline;
}

/* Responsivo */
@media (max-width: 768px) {
  .comunidad {
    flex-direction: column;
    text-align: center;
  }

  .columna-izquierda,
  .columna-derecha {
    flex: 0 0 100%;
  }

  .columna-derecha img {
    margin: 0 auto 20px;
  }
}

.galeria {
  padding: 60px 5%;
  background-color: #fff;
  text-align: center;
  font-family: 'Bahnschrift', sans-serif;
}

.galeria h2 {
  font-size: 2em;
  color: #C69C6D;
  margin-bottom: 40px;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px; /* límite opcional para centrar la galería */
  margin: 0 auto; /* centra horizontalmente */
}

.galeria-grid img {
  width: 100%;
  height: 200px; /* alto uniforme */
  object-fit: cover; /* mantiene proporción y recorta lo necesario */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.galeria-grid img:hover {
  transform: scale(1.03);
}
/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
  border-radius: 10px;
}

.lightbox .cerrar {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
.footer {
  background-color: #fff;
  padding: 40px 5%;
}

.footer-line {
  height: 5px;
  background-color: #C69C6D;
  margin-bottom: 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-col img {
  width: 100%;
  max-width: 150px;
  margin-bottom: 20px;
}

.footer-col a {
  color: #C69C6D;
  font-size: 2em;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #a6744d; /* color más oscuro para hover */
}

.qr-text {
  color: #706F6F;
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}

.agendar-cita-btn {
  background-color: #C69C6D;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  display: inline-block;
}

.agendar-cita-btn:hover {
  background-color: #a6744d;
}

/* 🔄 Responsivo para pantallas medianas */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* 🔄 Responsivo para pantallas pequeñas */
@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col {
    margin-bottom: 20px;
  }

  .footer-col a {
    font-size: 28px; /* Hacemos los íconos un poco más grandes en móviles */
  }

  .agendar-cita-btn {
    padding: 10px 20px;
    font-size: 16px;
  }
}

/* Barra de copyright */
.copyright-bar {
  background-color: #706F6F; /* gris */
  color: white;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
  font-family: 'Bahnschrift', sans-serif;
}



.portada2 {
  position: relative;
  width: 100%;
  height: 300px;
  background-image: url('img9.jpg'); /* tu imagen de fondo */
  background-size: cover;
  background-position: top;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Texto centrado */
.texto-portada2 {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size:4rem;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  z-index: 3;
  padding: 0 1rem;
  font-family: 'Great Vibes', cursive;
}

@media (max-width: 768px) {
  

  .texto-portada2 {
    font-size: 3rem;
    bottom: 10%;
  }
}
.portada3 {
  position: relative;
  width: 100%;
  height: 300px;
  background-image: url('portada3.jpg'); /* tu imagen de fondo */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Texto centrado */
.texto-portada3 {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size:4rem;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  z-index: 3;
  padding: 0 1rem;
  font-family: 'Great Vibes', cursive;
}

@media (max-width: 768px) {
  

  .texto-portada3 {
    font-size: 3rem;
    bottom: 10%;
  }
}

.portada4 {
  position: relative;
  width: 100%;
  height: 300px;
  background-image: url('portada4.jpg'); /* tu imagen de fondo */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Texto centrado */
.texto-portada4 {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size:4rem;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  z-index: 3;
  padding: 0 1rem;
  font-family: 'Great Vibes', cursive;
}

@media (max-width: 768px) {
  

  .texto-portada4 {
    font-size: 3rem;
    bottom: 10%;
  }
}




.form-container {
    background-color: gray;
    padding: 20px;
    border-radius: 10px;
    max-width: 90%;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin:40px auto;
}

.form-container h2 {
    text-align: center;
    color: white;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-family: 'Cinzel Black', serif;
}

label {
    display: block;
    color: white;
    margin-bottom: 5px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1rem;
}

.inline-fields {
    display: flex;
    justify-content: space-between;
}

.field {
    width: 48%;
}

.spam-and-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spam-question {
    flex: 1;
    margin-right: 10px;
}

#spam-label {
    margin-bottom: 5px;
    display: block;
}

#spam-check {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
}

button {
    width: 50%;
    padding: 10px;
    background-color: #E98D8D;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

button:hover {
    background-color: #d77f7f;
}

.white-text {
    color: white;
}

}


.reseñas-section {
    background-color: #fff;
    padding: 50px 20px;
    font-family: 'Montserrat', sans-serif;
}

.reseñas-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: flex-start; /* alineación vertical superior */
    flex-wrap: wrap;
}

/* Columna izquierda */
.reseñas-left {
    flex: 1 1 350px;
    max-width: 400px;
}

.reseñas-left h2 {
    font-weight: bold;
    margin-bottom: 20px;
}

.rating {
    font-size: 2rem;
    color: #ffde59;
    cursor: pointer;
    margin-bottom: 15px;
}

.rating span:hover,
.rating span:hover ~ span {
    color: #ccc;
}

.reseñas-left textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    resize: none;
}

.reseñas-left button {
    background-color: #000;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
}

.reseñas-left button:hover {
    background-color: #333;
}

/* Columna derecha */
.reseñas-right {
    flex: 1 1 400px;
    max-width: 500px;
    text-align: center;
}

.reseñas-right h2 {
    font-weight: bold;
    margin-bottom: 20px;
}

.carousel {
    position: relative;
    height: 120px;
    overflow: hidden;
}

.carousel-item {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    font-weight: bold;
    font-size: 1rem;
}

.carousel-item.active {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .reseñas-container {
        flex-direction: column;
        align-items: center;
    }
    .reseñas-left, .reseñas-right {
        max-width: 100%;
    }
}






