/* Fuente global */

* {
    box-sizing: border-box; /* Asegura que el padding y el borde no afecten el ancho total */
    margin: 0; /* Restablece márgenes por defecto */
    padding: 0; /* Restablece relleno por defecto */
}

body {
    font-family: 'Bahnschrift', sans-serif;
    max-width: 100%; /* Limita el ancho del body */
    overflow-x: hidden; /* Evita el desbordamiento horizontal */
   margin: 0;
    padding: 0;
}

/* Barra superior */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 10px 20px;
    border-bottom: 2px solid #97D37B; /* Línea verde debajo */
}

.top-bar .icon {
    color: #97D37B; /* Verde pistache */
    margin-right: 10px;
}

.top-bar .link {
    color: #706F6F; /* Gris */
    text-decoration: none;
}

.top-bar .link:hover {
    text-decoration: underline;
}

.top-bar .left, .top-bar .center, .top-bar .right {
    display: flex;
    align-items: center;
}

/* Header fijo */
header {
    position: sticky;
    top: 0;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
    width: 100px;
}

.contact {
    display: flex;
    align-items: center;
}

.contact-icon {
    color: #E98D8D; /* Coral */
    font-size: 24px;
    margin-right: 10px;
}

.contact-number {
    color: #706F6F; /* Gris */
    text-decoration: none;
}

.cta-button {
    background-color: #E98D8D; /* Coral */
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #d77d7d;
}

/* Responsividad */
@media (max-width: 768px) { /* Pantallas pequeñas */
.logo img {
    width: 50px;
}
.contact{
  font-size:-.5em
}

.cta-button {
    background-color: #E98D8D; /* Coral */
    color: white;
    padding: 5px 5px;
    border-radius: 50px;
    text-decoration: none;
    font-size:-.5em;
}

.cta-button:hover {
    background-color: #d77d7d;
}
}



/* Menú */
.menu {
    background-color: #97D37B; /* Verde pistache */
    text-align: center;

}

.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.menu ul li {
    display: inline-block;
}

.menu ul li a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    font-size:.8em;
}

.menu ul li a:hover {
    background-color: #86c469;
}

/* Sección de imagen de cabecera */
.header-image {
    background-image: url('reiki.jpg'); /* Ruta de la imagen */
    background-size: cover; /* Cubrir el 100% del ancho */
    background-position: center; /* Centrar la imagen */
    height: 400px; /* Altura de la imagen */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.header-image h1 {
    font-size: 3rem;
    font-family: 'Cinzel', serif; /* Aplicar la fuente Cinzel Black */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Sombra para el texto */
}
/* Sección de Terapias Alternativas */
.terapias-section {
    background-color: white;
    padding: 40px;

}

.terapias-section h2 {
    font-family: 'Cinzel', serif;
    color: #846A37;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align:center;
}

.terapias-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.left-column {
    width: 66.66%; /* 2/3 del ancho */
    font-family: 'Bahnschrift', sans-serif;
    color: #706F6F;
   font-size:1.5em;
text-align: justify; /* Justificar texto */}

.left-column p {
   
text-align: justify; /* Justificar texto */
}

.right-column {
    width: 33.33%; /* 1/3 del ancho */
}

.right-column img {
    width: 70%;
    cursor: pointer;
    border-radius: 5px;
    margin:auto;
}

/* Pop-up para el video */
.popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.popup-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}

.popup-content iframe {
    width: 100%;
    height: auto;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
}




/* Sección ¿Por qué elegir estas terapias? */
.terapias-section2 {
    background-color: white;
    padding: 40px;
    text-align: center;
}

.terapias-section2 h2 {
    font-family: 'Cinzel', serif;
    color: #846A37;
    font-size: 2rem;
    margin-bottom: 30px;
}

.terapias-content2 {
    font-family: 'Bahnschrift', sans-serif;
    color: #706F6F;
    text-align: left;
    margin: 0 auto;
   padding:0;
   font-size:1.5em;
text-align: justify; /* Justificar texto */
}

/* Sección inferior con imagen y botón */
.terapias-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.left-column2 {
    display: flex;
    flex-direction: column;
    align-items: left;
    width: 50%;
}

.about-img {
    width: 60%;
    border-radius: 5px;
    margin-bottom: 10px;
}

.left-column2 a {
    text-decoration: none;
    color: #706F6F;
    font-family: 'Bahnschrift', sans-serif;
    font-size: 1.2rem;

}

.right-column2 {
    width: 50%;
    text-align: right;
}

.btn-contact {
    background-color: #E98D8D;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Bahnschrift', sans-serif;
    font-size: 1.2rem;
}

/* Media query para pantallas pequeñas */
@media (max-width: 768px) {
    .terapias-footer {
        flex-direction: column;
        align-items: center;
    }

    .left-column2, 
    .right-column2 {
        width: 100%;
        text-align: center;
    }

     .right-column2 {
        width: 100%;
        text-align: center;
margin-top:40px;
    }
}


/* Sección de Terapias */
.servicios-section {
    text-align: center;
}

.header-image2 {
    width: 100%;
    height: auto;
}

.servicios-section h2 {
    font-family: 'Cinzel', serif;
    color: #846A37;
    margin: 20px 0;
font-size:2.5em;
}

/* Contenedor de servicios */
.servicios-container {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    flex-wrap: wrap;
}

.servicio {
    width: 30%;
    margin: 10px;
    text-align: center;
}

.servicio-img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.servicio h3 {
    font-family: 'Cinzel', serif;
    color: #846A37;
    margin: 10px 0;
   font-size:1.3em;
}

.servicio p {
    font-family: 'Bahnschrift', sans-serif;
    color: #706F6F;
    text-align: justify;
    margin: 10px 0;
}

.btn-servicio {
    background-color:  #97D37B; /* Verde pistache */
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
}

/* Media query para pantallas pequeñas */
@media (max-width: 768px) {
    .servicio {
        width: 90%;
        margin: 10px auto;
    }
}




/* Texto de oferta */
.oferta-texto {
    margin:60px 0 0 0;
    font-size:3rem; /* Ajusta el tamaño según lo necesites */
}

.oferta-gris {
    color: #706F6F;
}

.oferta-coral {
    color: #E98D8D;
}


/* Nueva sección de oferta */
.oferta-container {
    display: flex;
    justify-content: space-between;
font-size:1.5em;
color:#706F6F;
align-items: flex-end; /* Alinea los elementos hacia abajo */
}

.oferta-columna {
    width: 30%;
    text-align: left;
    padding: 0% 2%;
}

.oferta-boton {
    width: 50%;
   padding:2%;
}

.btn-agendar {
    background-color: #E98D8D;
    color: white;
    padding:2%;
    border-radius: 30px;
    text-decoration: none;
    display: block;
    text-align: center;
    width: 90%;
    margin:auto;
}



/* Media query para pantallas pequeñas */
@media (max-width: 768px) {
   
    .oferta-container {
        flex-direction: column;
        align-items: center;
    }

    .oferta-columna, 
    .oferta-boton {
        width: 100%;
        text-align: center;
        margin: 0; /* Restablecer margen en pantallas pequeñas */
    }

    .btn-agendar {
        margin-top: 20px;
    }
}



/* Estilos para pantallas pequeñas */
@media (max-width: 768px) {
    .top-bar {
        display: none; /* Ocultar barra superior en pantallas pequeñas */
    }

    .menu ul {
        display: none; /* Menú oculto inicialmente */
        flex-direction: column;
    }

    .menu ul li {
        display: block;
    }

    .menu-toggle {
        display: block;
        background-color: #97D37B;
        color: white;
        padding: 10px;
        border: none;
        cursor: pointer;
        font-size: 20px;
        width: 100%;
    }

    .menu-toggle:hover {
        background-color: #86c469;
    }

    .menu.show ul {
        display: flex; /* Mostrar menú al hacer clic */
    }
}

/* Estilos para pantallas grandes */
@media (min-width: 769px) {
    .menu-toggle {
        display: none; /* Quitar el botón en pantallas grandes */
    }

    .menu ul {
        display: flex; /* Mostrar el menú en pantallas grandes */
    }
}
/* Media query para pantallas pequeñas */
@media (max-width: 768px) {
    .terapias-content {
        flex-direction: column; /* Apilar las columnas */
        gap: 10px; /* Reducir el espacio entre columnas */
    }
    
    .left-column, 
    .right-column {
        width: 100%; /* Las columnas ocupan el 100% del ancho */
    text-align:center;
    }
}


.testimonials-section {
    background-color: white; /* Fondo blanco */
    padding: 20px;
    max-width: 100%; /* Asegúrate de que el contenedor no exceda el 100% */
    margin: 0 auto; /* Centra el contenedor */
}
.testimonials-section h2{
  font-family: 'Cinzel', serif;
    color: #846A37;
    margin: 20px 0;
font-size:2.5em;
text-align:center;
}

.testimonial-container {
    display: flex;
    overflow: hidden; /* Oculta el contenido que excede */
    width: 100%;
    position: relative;
margin:0;
}

.testimonial {
    flex: 0 0 33.33%; /* 3 testimonios a la vez en pantallas grandes */
    padding: 5px;
    box-sizing: border-box; /* Para que el padding no afecte el ancho */
    transition: transform 0.5s ease; /* Transición suave al cambiar */
}

.testimonial-image {
    width: 100px; /* Ajusta según tu diseño */
    height: 100px; /* Ajusta según tu diseño */
    border-radius: 50%; /* Imagen redondeada */
}

.testimonial-text {
    color: #706F6F; /* Texto gris */
}

/* Responsividad */
@media (max-width: 768px) { /* Pantallas pequeñas */
    .testimonial {
        flex: 0 0 100%; /* 1 testimonio a la vez */
    }
}







.faq-section {
    background-color: white; /* Fondo blanco */
    padding: 0px;
    max-width: 90%; /* Asegúrate de que el contenedor no exceda el 100% */
    margin: 0 auto; /* Centra el contenedor */
   
}
.faq-section h2{
    font-family: 'Cinzel', serif;
    color: #846A37;
    margin: 20px 0;
font-size:2.5em;
text-align:center;
}

.faq-container {
    max-width: 100%; /* Ancho máximo de la sección */
    margin: 0 auto; /* Centra el contenedor */

}

.faq-button {
    background-color: #97D37B; /* Botón verde */
    color: white;
    border: none;
    padding: 15px;
    margin: 10px 0;
    width: 100%; /* Botón al 100% de ancho */
    text-align: left; /* Alinea el texto a la izquierda */
    cursor: pointer;
    font-size: 1.5em; /* Tamaño de la letra */
    border-radius: 5px; /* Bordes redondeados */
    transition: background-color 0.3s;
    font-family: 'Bahnschrift', sans-serif;
}

.faq-button:hover {
    background-color: #88C772; /* Color del botón al pasar el mouse */
}

.faq-answer {
    display: none; /* Inicialmente oculto */
    color: #706F6F; /* Texto gris */
    padding: 10px 0;
}


/* Responsividad */
@media (max-width: 768px) { /* Pantallas pequeñas */
   .faq-section {
   margin:auto;
    max-width: 90%; /* Asegúrate de que el contenedor no exceda el 100% */
    }
  .form-container {
   margin:auto;
    max-width: 90%; /* Asegúrate de que el contenedor no exceda el 100% */
    
}
}





.form-container {
    background-color: #846A37;
    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;
}



.footer {
    background-color: gray;
    padding-top: 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: auto;
    flex-wrap: wrap; /* Permite que las columnas se ajusten en pantallas pequeñas */
}

.footer-column {
    flex: 1;
    min-width: 200px; /* Establece un ancho mínimo para las columnas */
    margin: 10px; /* Espacio entre las columnas */
}
.footer-column img {
   width:50%;
}

.footer-menu {
    list-style-type: none;
    padding: 0;
 
}

.footer-menu a {
    text-decoration: none;
    color: white;
font-size:1.5em;
}

.footer-map {
    width: 100%;
    height: 80px;
    border: 0;
}

.footer-bottom {
    background-color: #97D37B;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: auto;
    color: white;
    font-family: 'Bahnschrift';
}

.footer-bottom a {
    color: white;
    text-decoration: none;
}
/* Responsividad */
@media (max-width: 768px) { /* Pantallas pequeñas */
   
.footer-bottom {
 font-size:.8em;}
.footer {
  text-align:center;
}
}

.whatsapp-button {
    position: fixed;
    bottom: 20px; /* Distancia desde el borde inferior */
    right: 20px; /* Distancia desde el borde derecho */
    background-color: #25D366; /* Color de fondo del botón */
    border-radius: 50%; /* Bordes redondeados */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Sombra */
    z-index: 1000; /* Asegura que el botón esté por encima de otros elementos */
}

.whatsapp-button img {
    max-width: 100%;
    height: auto;
}
/* Contenido principal */
.content {
    padding: 2rem;
    max-width: 1200px;
    margin: auto;
}

/* Descripción */
.description {
    margin-bottom: 2rem;
}

.description h2 {
    color: #97D37B;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Beneficios */
.benefits h2 {
    color: #E98D8D;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.benefits ul {
    list-style-type: none;
    padding: 0;
}

.benefits li {
    background-color: #F2F2F2;
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
    border-left: 4px solid #97D37B;
}

/* Galería */
.gallery {
    margin-top: 2rem;
    text-align: center;
}

.gallery h2 {
    color: #97D37B;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.gallery-images {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.gallery-images img {
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
}

/* Responsividad */
@media (max-width: 768px) {
    .header-text h1 {
        font-size: 1.8rem;
    }

    .header-text p {
        font-size: 1rem;
    }

    .content {
        padding: 1rem;
    }

    .gallery-images {
        flex-direction: column;
    }
}
