@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@300;400;600&display=swap');


/* CSS Para la barra de navegacion*/
body {
    margin: 0;
    font-family: "Open Sans", sans-serif;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    border: 5px solid #dddddd;
    border-radius: 12px;
    margin: 20px auto;
    width: 90%;
    background: #ffffff;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.brand-name {
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #081E48;
}

.nav a {
    margin-left: 28px;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    color: #081E48;
    padding: 8px 16px;
    border: 1px solid #081E48;
    border-radius: 8px;
}

/* CSS Para la barra el body*/

/*portada*/
.hero {
    margin: 40px auto;
    width: 90%;
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-image {
    width: 55%;
    height: 380px;
    background-image: url('Imagenes/imagen-ejemplo-1.png');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
}

.hero-image::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, transparent, #ffffff);
    border-radius: 20px;
}

.hero-text {
    width: 45%;
}

.hero-text h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #081E48;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 18px;
    color: #6B6D70;
    line-height: 1.6;
    margin-bottom: 25px;
}

.cta-btn {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 12px 24px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
}


/*mision, vicion y valores */

.mvv {
    margin: 60px auto;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: center;
    gap: 30px;
    clear: both;
}

.mvv-item {
    width: 33%;
    padding: 20px;
}

.mvv-item img {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    filter: grayscale(100%);
}

.mvv-item h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    color: #081E48;
    margin-bottom: 10px;
}

.mvv-item p {
    font-family: "Open Sans", sans-serif;
    color: #6B6D70;
    font-size: 16px;
    line-height: 1.6;
    
}


/*descripcion*/

.quienes-somos {
    width: 80%;
    margin: 60px auto;
    text-align: center;
    clear: both;
}

.quienes-somos h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    color: #081E48;
    margin-bottom: 20px;
}

.quienes-somos p {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    color: #6B6D70;
    line-height: 1.8;
    margin-bottom: 20px;
}

/*Por qué elegirnos*/
.elegirnos {
    width: 90%;
    margin: 80px auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.elegirnos-img {
    width: 50%;
}

.elegirnos-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
}

.elegirnos-texto {
    width: 50%;
}

.elegirnos-texto h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    color: #081E48;
    margin-bottom: 25px;
}

.elegirnos-item {
    margin-bottom: 25px;
}

.elegirnos-item h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    margin-bottom: 5px;
    color: #081E48;
}

.elegirnos-item p {
    font-family: "Open Sans", sans-serif;
    font-size: 17px;
    color: #6B6D70;
    line-height: 1.6;
}


/*footer*/
.footer {
    background: #081E48;
    color: white;
    padding: 40px 0;
    margin-top: 80px;
}

.footer-content {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-info h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-info p {
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    line-height: 1.5;
}

.footer-contact {
    margin-top: 10px;
}

.footer-links h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-links a {
    display: block;
    font-family: "Open Sans", sans-serif;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 6px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-copy {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
}

.footer-copy p {
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    opacity: 0.9;
}


/* servicios */

.servicios {
    width: 90%;
    margin: 60px auto;
}

.servicios h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    color: #081E48;
    text-align: center;
    margin-bottom: 40px;
}

.servicio-item {
    width: 100%;
    border: 2px solid #081E48;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.servicio-item span {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    color: #081E48;
}

.servicio-btn {
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #081E48;
    color: #081E48;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    transition: 0.3s;
}

.servicio-btn:hover {
    background: #081E48;
    color: #ffffff;
}

.servicio-texto {
    display: flex;
    flex-direction: column;
}

.servicio-texto span {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    color: #081E48;
    font-weight: 600;
    margin-bottom: 5px;
}

.servicio-texto p {
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    color: #6B6D70;
    margin: 0;
}


/*fromulario*/
/* Sección de Contacto */
.contacto {
    width: 90%;
    margin: 60px auto;
}

.contacto-container {
    display: flex;
    gap: 40px;
    padding: 40px;
    border: 2px solid #081E48;
    border-radius: 20px;
    background: #ffffff;
}

.contacto-info {
    width: 45%;
}

.contacto-info h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    color: #081E48;
    margin-bottom: 15px;
}

.contacto-info p {
    font-family: "Open Sans", sans-serif;
    color: #6B6D70;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contacto-info ul {
    padding-left: 20px;
}

.contacto-info li {
    font-family: "Open Sans", sans-serif;
    margin-bottom: 10px;
    font-size: 16px;
}

.contacto-info a {
    color: #081E48;
    font-weight: 600;
}

/* Formulario */
.contacto-form {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group label {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: #081E48;
    margin-bottom: 4px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #081E48;
    border-radius: 10px;
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    outline: none;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.contacto-btn {
    background: #081E48;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.contacto-btn:hover {
    background: #0c2e70;
}


/*mapa*/
.mapa {
    width: 90%;
    margin: 60px auto;
    text-align: center;
}

.mapa h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    color: #081E48;
    margin-bottom: 20px;
}

.mapa-container {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #081E48;
}

.mapa-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* FIX NAV - PARA ACOMODAR EL MENÚ */
.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: flex-end;
        width: 100%;
        gap: 10px;
    }

    .nav a {
        margin-left: 0;
    }
}