/* estilos.css */

body, html {
    font-family: 'YourFontFamily', sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

header {
    background-color: #582b7e;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 150px;
}

@media (max-width: 768px) {
    header {
        padding: 15px 50px;
    }
    .hero {
        height: 50vh;
    }
    .content-section {
        flex-direction: column;
    }
    .service {
        flex-direction: column;
    }
    .service-image {
        width: 100%;
    }
}

/* Añade aquí el resto de tus estilos */


.logo {
    width: 170px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}



.hero {
    background-image: url('../img/banner01.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.about-us {
    background-color: #F6E0E1;
    padding: 30px 10px;
    text-align: center;
}

.title-section {
    text-align: center;
    margin-bottom: 5px;
}

.title-section h2 {
    font-family: 'Lobster', cursive;
    font-size: 2.5em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.title-section .icon {
    width: 40px;
    height: auto;
    margin-right: 10px;
}

.content-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    text-align: center;
}

.about-content {
    max-width: 800px;
}

.about-content p {
    font-size: 1.3em;
    margin-top: 10px;
    margin-bottom: 20px;
}

.therapy-image {
    max-width: 80%;
    height: auto;
}

.svg-section {
    width: 100%;
    align-items: center;
    justify-content: center;
    background-color: #F6E0E1;
}

.svg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.holistic-medicine {
    background-color: #f6e0e1;
    padding: 50px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.holistic-medicine .image-left,
.holistic-medicine .image-right {
    flex: 1;
}

.holistic-medicine .image-left img,
.holistic-medicine .image-right img {
    width: 17%;
    height: auto;
}

.holistic-medicine .text-content {
    flex: 2;
    max-width: 900px;
    margin: 0 20px;
}

.holistic-medicine h2 {
    font-family: 'Lobster', cursive;
    font-size: 2.5em;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.holistic-medicine h2 .icon {
    width: 40px;
    height: auto;
    margin-right: 10px;
}

.holistic-text {
    font-size: 1.2em;
    text-align: left;
}

.holistic-text p {
    margin-bottom: 20px;
}

.holistic-medicine {
    position: relative; /* Esto permite posicionar absolutamente las imágenes dentro */
}

.top-right-image {
    position: absolute;
    top: -20px;
    right: 1250px;
    width: 10%; /* Ajusta el tamaño según sea necesario */
}

.bottom-left-image {
    position: absolute;
    bottom: 5px;
    left: 100;
    width: 10%; /* Ajusta el tamaño según sea necesario */
}


.services {
    background-color: white;
    padding: 50px 20px;
    text-align: center;
}

.services .title-section {
    text-align: center;
    margin-bottom: 30px;
}

.services .title-section h2 {
    font-family: 'Lobster', cursive;
    font-size: 2.5em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.services .title-section .icon {
    width: 40px;
    height: auto;
    margin-right: 10px;
}

.service-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100;
}

.service {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #582b7e;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    max-width: 1180px;
    box-shadow: 0 4px 7px rgba(221, 187, 250, 50);
    transition: transform 0.3s ease;
    padding: 20px;
}

.service:hover {
    transform: translateY(-10px);
}

.service-image-container {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-image {
    width: 400px;
    height: auto;
}

.service-description {
    padding: 20px;
    text-align: left;
    flex: 1;
}

.service-description h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.service-description p {
    font-size: 1em;
    margin-bottom: 10px;
    line-height: 1.5;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #9C6EC2;
    color: white;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1em;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    margin-left: 250px;
    margin-right: auto;
}

.button:hover {
    background-color: #451a5e;
    color: white; /* Aseguramos que el texto sea blanco cuando el botón esté en hover */
}

/* Nueva sección de ofertas */
.offer-banner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
}

.banner-image {
    width: 100%;
    max-width: 2100px;
    height: auto;
    object-fit: cover;
}

/* Sección de contacto */
.contact-section {
    background-color: #F6E0E1;
    padding: 20px;
}

.contact-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-title {
    font-family: 'Lobster', cursive;
    font-size: 36px;
    color: #582B7E;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.contact-info p {
    margin: 5px 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
}

.contact-form button {
    padding: 10px;
    background-color: #582B7E;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #3e1d60;
}

.contact-note {
    font-family: 'Lobster', cursive;
    color: #582B7E;
    text-align: center;
    margin-top: 20px;
    font-size: 35px;
}

/* Estilos para la sección de testimonios */
.testimonial-section {
    background-color: white;
    padding: 40px 0;
    display: flex;
    justify-content: center;
}

.carousel {
    max-width: 1200px;
    width: 100%;
}

.carousel-inner {
    background-color: #F6E0E1;
    border-radius: 20px;  /* Aumentado el radio del borde para un efecto más redondeado */
    padding: 40px 20px;
    position: relative;
}

.testimonial {
    text-align: center;
    font-size: 1.2em;
    color: #333;
    position: relative;  /* Añadido para posicionar las imágenes */
    padding-top: 20px;   /* Añadido para espacio para las imágenes */
}

.left-decor {
    position: absolute;
    top: 150px;
    left: -30px;
    width: 170px;
    height: auto;
}

.right-decor {
    position: absolute;
    top: 120px;
    right: -30px;
    width: 170px;
    height: auto;
}

.user-info {
    margin-top: 20px;
}

.user-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.user-info h3 {
    font-size: 1.5em;
    margin-top: 10px;
}

.user-info p {
    font-size: 1em;
    color: #9C6EC2;
}

/* Estilos para los controles del carrusel */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #9C6EC2;
    border-radius: 50%;
}

/* Nueva sección de divider */
.cenefa {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.banner-image-cenefa {
    width: 100%;
    height: 30px;  /* Ajusta la altura a 100px */
    object-fit: cover;  /* Mantiene el ancho mientras ajusta la altura */
}



/* Estilos para la sección de preguntas frecuentes */
.faq-section {
    background-color: white;
    padding: 40px 0;
}

.faq-section .title-section {
    text-align: center;
    margin-bottom: 30px;
}

.faq-section .faq-content {
    background-color: #F6E0E1;
    padding: 20px;
    border-radius: 20px;
    margin: 20px auto; /* Centra el recuadro */
    width: 1200px;
    
    
}

.faq-section .faq-content .row .col-md-6 {
    margin-bottom: 20px;
}

.faq-section .faq-content p {
    margin: 0;
    font-size: 1.2em;
    
}

.faq-section .faq-content p i {
    margin-right: 10px;
}


/* Footer */

@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

footer {
    background-color: #582b7e;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
}

.footer-container div {
    flex: 1;
    margin: 10px;
    min-width: 200px;
}

.footer-container img {
    vertical-align: middle;
    margin-right: 10px;
}

.logo-section img.logo-img {
    display: block;
    margin: 0 auto 10px;
    width: 160px; /* Ajusta el tamaño aquí */
    height: auto; /* Mantiene la proporción */
}

.menu ul {
    list-style: none;
    padding: 35;
    text-align: right; /* Alinea el texto a la izquierda */
}

.menu li {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.contact p {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.contact img {
    margin-right: 15px;
}

.social-media a {
    display: inline-block;
    margin: 0 10px;
}

.social-media img {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    border-top: 1px solid #ffffff;
    padding-top: 10px;
    margin-top: 10px;
}

h3 {
    font-family: 'Lobster', cursive;
}



body {
    font-family: Arial, sans-serif;
}


.menu a {
    color: white; /* Cambia el color del texto de los enlaces a blanco */
    text-decoration: none; /* Opcional: elimina el subrayado de los enlaces */
}



#cabecera {
    height: 700px; /* Ajusta según el tamaño de tu cabecera */
    background-color: #f1f1f1; /* Ajusta según el color de tu cabecera */
}

.btn-sube, .btn-whats {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}


.btn-whats {
    margin-bottom: 70px; /* Ajusta la distancia entre los botones según tus necesidades */
}

.btn-sube img, .btn-whats img {
    width: 50px; /* Ajusta el tamaño del botón según tus necesidades */
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(222, 195, 245, 0.5);
    transition: transform 0.3s;
}

.btn-sube img:hover, .btn-whats img:hover {
    transform: scale(1.1);
}












