/* Estilos principales del sitio web */
html {
    scroll-behavior: smooth;
}
body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

/* Logotipo y encabezado */
.div01 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    background-color: silver;
}
.logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Menú */
.div02 {
    background: linear-gradient(to right, #00c6ff, #0072ff);
    padding: 10px 0;
    text-align: center;
}
.div02 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.div02 li {
    display: inline-block;
    margin: 0 15px;
}
.div02 a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s, transform 0.3s;
}
.div02 a:hover {
    color: #ffdf00;
    transform: scale(1.1);
}

/* Sección ¿Quiénes somos? */
.acerca {
    background-color: #ffffff;
    padding: 50px 20px;
    animation: fadeIn 1.5s ease-in;
}
.acerca-contenido {
    padding: 40px;
    background-color: #f9f9f9;
    text-align: center;
}
.acerca-contenido h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2a2a2a;
}
.acerca-texto {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.dark {
    width: 200px;
    height: 200px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Galería */
#galeria {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}
#galeria h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2a2a2a;
}
.contenedor-galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}
.imagen img {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}
.imagen img:hover {
    transform: scale(1.05);
}

/* Ubicación */
#ubicacion {
    padding: 40px;
    background-color: #f9f9f9;
    text-align: center;
}
#ubicacion h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2a2a2a;
}

/* Portada */
.imagen-completa {
    height: 100vh;
    overflow: hidden;
}
.imagen-completa img {
    width: 100%;
    object-fit: cover;
    display: block;
}

/* Redes sociales */
.icon-bar {
    position: fixed;
    top: 20%;
    left: 0;
    transform: translateY(-50%);
}
.icon-bar a {
    display: block;
    text-align: center;
    padding: 16px;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
}
.icon-bar a:hover {
    background-color: #000;
}
.facebook {
    background: #385990;
}
.instagram {
    background: orange;
}
.whatsapp {
    background: green;
}
.icon2 {
    position: fixed;
    bottom: 30px;
    left: 30px;
}
.icon2 a {
    display: block;
    text-align: center;
    padding: 2px;
    transition: all 0.3s ease;
    color: white;
    font-size: 50px;
}
.icon2 a:hover {
    background-color: #000;
}
.whatsapp2 {
    background-color: green;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contacto */
.contacto-section {
    padding: 50px 20px;
    background-color: #f2f2f2;
    text-align: center;
}
.contacto-section h2 {
    color: #003366;
    font-size: 32px;
    margin-bottom: 30px;
    border-bottom: 2px solid #003366;
    display: inline-block;
    padding-bottom: 10px;
}
.formulario-contacto {
    max-width: 600px;
    margin: auto;
    text-align: left;
}
.formulario-contacto label {
    display: block;
    margin-top: 20px;
    color: #003366;
    font-weight: bold;
}
.formulario-contacto input,
.formulario-contacto textarea {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border: 2px solid #cc0000;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}
.formulario-contacto input:focus,
.formulario-contacto textarea:focus {
    border-color: #003366;
    outline: none;
}
.formulario-contacto button {
    margin: 20px auto 0;
    display: block;
    padding: 12px 25px;
    background-color: #cc0000;
    color: white;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.formulario-contacto button:hover {
    background-color: #990305;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .div01 {
        padding: 10px;
        text-align: center;
    }
    .logo {
        width: 50%;
        height: auto;
    }
    .div02 ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .div02 li {
        margin: 10px 0;
    }
    .imagen-completa img {
        width: 100%;
        height: auto;
    }
    .icon-bar {
        top: auto;
        bottom: 10px;
        left: 10px;
        right: auto;
        flex-direction: column;
        gap: 5px;
    }
    .acerca-texto {
        flex-direction: column;
    }
    .acerca-imagen img {
        width: 60%;
        margin: 20px auto;
    }
    .contenedor-galeria {
        padding: 10px;
        gap: 10px;
    }
    #ubicacion iframe {
        height: 300px;
        border-radius: 8px;
    }
    .formulario-contacto {
        width: 90%;
        flex-direction: column;
        gap: 10px;
    }
}
.whatsapp2 {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: green;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 28px;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: background-color 0.3s ease;
}
.whatsapp2:hover {
    background-color: #128C7E;
}

#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: red;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px; /* Add a value here */
    font-size: 18px;
}
/*loader stiles*/
#loader{
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.spinner-border{
    width: 3rem;
    height: 3rem;
}
/*ocultar al contenedor principal progreso de carga */
#main-content{
    display: none;
}
    
/*ventana emergente */
.modal-content{
    background-color: #1e1e1e;
    color: #fff;
    border-radius: 10px;
}
.btn-primary{
    background-color: #007bff;
}






































































































































