* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f9f9f9;
    background-image: url("https://images.unsplash.com/photo-1750126833705-ba98013f16f3?q=80&w=871&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");

}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(33, 78, 202, 0.425);
    z-index: 1;
}

.dropdown-content a {
    color: rgb(179, 150, 150);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #e6b4b4
}

.dropdown.show .dropdown-content {
    display: block;
}
.logo{
    width: 32px;
    height: 32px;
   
}
.logop{
    width: 150px;
    height: 150px;
}



.header {
    background-color: #f4f4f4;
    padding: 20px;
    text-align: center;
}

.header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.header p {
    font-size: 18px;
    color: #666;
}

.header a {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    animation: breathe 2s ease-in-out infinite;
}

/*Estilos solo al icono whatsapp*/
.whatsapp-btn i {
    color: #fff;
    font-size: 24px;
    animation: beat 2s ease-in-out infinite;
    text-decoration: none;
}

/*Estilos con animation contorno respirando*/
@keyframes breathe {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

/*Estilos de animacion del icono latiendo*/
@keyframes beat {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.about {
    background-color: #fff;
    background-image: url(img/ykeaf.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 20px;
    text-align: center;
}

.sobre {
    width: 100%;
    height: 300px;
}

.sobre .desc {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

.sobre .desc-text {
    font-size: 10px;
    color: #333;
    margin-top: 10px;
}

.about h2 {
    font-size: 25px;
    margin-bottom: 20px;
}

.desc-2 {
    font-size: 16px;
    color: #666;
    margin-top: 10px;

}

.about img {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    margin-top: 20px;
    transition: transform 0.3s;

}

.about img:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.servicios_container {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.servicios_container h2 {
    text-align: center;
    margin-bottom: 20px;
}

.servicios_container .servicio {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    width: 30%;
    text-align: center;
}

.servicios_container .servicio img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    transform: rotateY('180deg');
    transition: transform 0.3s;

}

.servicios_container .servicio img:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.servicios_container .servicio h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.servicios_container .servicio p {
    font-size: 16px;
    color: #666;
}

.contacto_container {
    background-color: #f4f4f4;
    padding: 20px;
    text-align: center;
}

.contacto_container h2 {
    margin-bottom: 20px;
}

.contacto_container i {
    font-size: 24px;
    color: #007bff;
    margin-right: 10px;
}

.contacto_container .bx {
    font-size: 24px;
    color: #007bff;
    margin-right: 10px;
}

.contacto_container form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contacto_container form input,
.contacto_container form textarea {
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contacto_container form button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contacto_container form button:hover {
    background-color: #0056b3;
}

.contacto_container form hr {
    width: 80%;
    margin: 20px 0;
    border: 1px solid #ddd;
}

.contacto_container form p {
    font-size: 14px;
    color: #666;
    text-align: center;

}

.ubicacion {
    background-color: #fff;
    padding: 20px;
    text-align: center;
}

.ubicacion iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 5px;
}

.header .mision {
    background-color: #f4f4f4;
    padding: 20px;
    text-align: center;
}

footer {
    background-color: #4730ac;
    color: white;
    text-align: center;
    padding: 20px;
}

footer p {
    margin: 0;
}

.social-icons {
    justify-content: space-between;
    align-items: center;



}




@media(max-width: 768px) {

    .nav .nav__links,
    .nav .nav__icons {
        flex-direction: column;
        align-items: center;
    }

    .servicios_container {
        flex-direction: column;
        align-items: center;
    }

    .servicios_container .servicio {
        width: 80%;
        margin-bottom: 20px;
    }

    .header h1 {
        font-size: 28px;
    }

    .header p {
        font-size: 16px;
    }

    .contacto_container form input,
    .contacto_container form textarea {
        width: 90%;
    }

    .contacto_container form button {
        width: 90%;
    }

    .ubicacion iframe {
        height: 300px;
    }

    .header .mision {
        font-size: 20px;
    }

    .header img {
        width: 80px;
        height: auto;
    }

    .nav__logo img {
        height: 30px;
    }

    .nav__logo {
        font-size: 20px;
    }

    .nav__links a {
        padding: 8px;
        font-size: 14px;
    }

    .nav__icons a i {
        font-size: 20px;
        margin: 0 5px;
    }

    .servicios_container h2 {
        font-size: 24px;
    }

    .servicios_container .servicio h3 {
        font-size: 20px;
    }

    .servicios_container .servicio p {
        font-size: 14px;
    }

    .contacto_container h2 {
        font-size: 24px;
    }


}