/* Estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

header {
    position: fixed;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-content: center;
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header.menu-fixed {
    background-color: #121b52;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.menu-fixed a{
    color: lightgray;
}

.menu-fixed a:hover{
    color: rgb(0, 196, 0);
}

.marca {
    width: 70%;
}

.mrc {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    padding: 10px;
}

nav {
    font-weight: 500;
    margin-left: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

nav a {
    text-decoration: none;
    font-size: 11pt;
    color: #fff;
    border-bottom: 2px solid transparent;
    transition: border-color 1s ease-in-out;
}

nav a:hover {
    color: white;
    border-bottom-color: #fff;
}

/* Banner y secciones */
.banner1 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.fotobanner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.FRASE {
    position: absolute;
    z-index: 5;
    color: white;
    font-size: 80pt;
    line-height: 80%;
    font-weight: 900;
    text-align: left;
    margin-left: 2%;
}

.secNosotros, .contenedor-acordeon, .contact {
    padding: 20px;
}

.acordeon label:hover{
    color: rgb(0, 196, 0);
}

.contenedor-acordeon h2{
    text-align: center;
    margin-bottom: 20px;
}

.contact{
    background-image: url('FOTOS/estaok.jpg'); /* Ruta de la imagen de fondo */
    background-size: cover; /* Ajustar la imagen de fondo al tamaño del contenedor */
    background-position: center; /* Posición centrada de la imagen de fondo */
}

.leyenda-contacto h1{
    text-align: center;
    margin-bottom: 20px;
}

.secNosotros {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.FG, .mision, .vision {
    text-align: center;
    font-size: 12pt;
    font-style: italic;
    color: black;
    padding-bottom: 20px;
}

.contenedor-acordeon {
    width: 100%;
    max-width: 1100px;
    margin: 50px auto;
}

.acordeon label {
    display: block;
    padding: 20px;
    font-size: 12pt;
    background: #121b52;
    color: #fff;
    cursor: pointer;
    margin-bottom: 2px;
    transition: all 300ms ease;
}

.acordeon .contenido-acordeon {
    padding: 0;
    margin: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 300ms ease;
}

.acordeon .contenido-acordeon p {
    font-size: 11pt; /* Tamaño de fuente base */
}

.btn-acordeon:checked ~ .contenido-acordeon {
    max-height: 600px;
    padding: 15px 0;
}

.btn-acordeon {
    display: none;
}

.pie {
    margin-top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    background-color: #000c4e;
    color: white;
    font-weight: 900;
    font-size: 13pt;
    font-style: italic;
}



/******************************************************** WHATSAPP */

.whatsapp {
    position:fixed;
    width:60px;
    height:60px;
    bottom:40px;
    right:40px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:40px;
    z-index:100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  /* Botón de WhatsApp */
/*.whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 40px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
*/


.whatsapp i {
    margin-top: 5px; /* Ajustar para centrar el icono verticalmente */
}

/* Formulario de contacto */
.form-container {
    max-width: 500px;
    display: flex;
    justify-content: flex-end;
    padding: 20px;
    border: 1px solid #00000000;
    border-radius: 5px;
    background-color: #cecece00;
    margin-left: auto;
}


/* Responsividad */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }

    nav a {
        padding: 10px;
        font-size: 9pt; /* Reducir el tamaño de la fuente en dispositivos móviles */
    }

    .banner1 {
        flex-direction: column;
        height: auto;
        justify-content: center;
    }

    .FRASE {
        font-size: 40pt; /* Reducir el tamaño de la fuente en dispositivos móviles */
        text-align: left;
        margin-left: 0;
    }

    .secNosotros, .contenedor-acordeon, .contact {
        padding: 10px;
    }

    .FG, .mision, .vision {
        font-size: 10pt; /* Reducir el tamaño de la fuente en dispositivos móviles */
    }

    .acordeon label {
        font-size: 10pt; /* Reducir el tamaño de la fuente en dispositivos móviles */
    }

    .acordeon .contenido-acordeon p {
        font-size: 7pt; /* Reducir el tamaño de la fuente en dispositivos móviles */
    }

    .pie {
        font-size: 10pt; /* Reducir el tamaño de la fuente en dispositivos móviles */
    }

    .form-container {
        width: 100%;
        margin-left: 0;
    }

    .navbar-collapse {
        text-align: right;
    }
}