.hero-section-nosotros {
    width: 100%;
    height: 85vh;
    background-color: var(--wp--preset--color--blue-normal);

    .content {
        height: 100%;
        width: 100%;
        margin: 0 auto;
        color: white;
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;

        h2 {
            width: 90%;
            margin: 0 auto;
            font-size: 3rem;
            line-height: 3rem;
            /* line-height: var:custom|line-height|main */
        }

        p {
            width: 90%;
            margin: 0 auto;
            font-size: 1.2rem;
            font-weight: light;
            padding: 0.5rem;
        }

        .main-image {
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            border-radius: 12px;
        }
    }

    @media screen and (min-width: 768px) {
        height: 45vh;

        .content {
            height: 100%;
            max-width: 1200px;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            position: static;
            padding: 0 0;

            h2 {
                line-height: 5rem;
            }

            .main-image {
                width: 60%;
                height: auto;
                position: static;
                border-radius: 12px;
            }
        }
    }

}

.menu-nosotros {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 4rem 0;

    .menu-item {
        background-color: #F3F4F6;
        padding: 0.5rem 1rem;
        color: #000000;
        border-radius: 100px;
        font-size: 18px;
        font-weight: 700;

        a {
            font-weight: 600;
            text-decoration: none;
            color: #000000;
        }
    }

    @media screen and (min-width: 768px) {
        display: flex;
    }
}

.info-container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding-bottom: 4rem;

    .info-card {
        min-width: 150px;
        box-shadow: 5px 6px 9px 0px rgba(173, 173, 173, 0.75);
        -webkit-box-shadow: 5px 6px 9px 0px rgba(173, 173, 173, 0.75);
        -moz-box-shadow: 5px 6px 9px 0px rgba(173, 173, 173, 0.75);
        border-radius: 12px;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;

        .card-title {
            color: var(--wp--preset--color--blue-normal);
            font-size: 32px;
            line-height: 0;
        }

        .card-subtitle {
            color: var(--wp--preset--color--blue-normal);
            font-size: 24px;
            line-height: 0;
        }

    }

    @media screen and (min-width: 768px) {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
}


.trajectoty-container {
    background-color: var(--wp--preset--color--blue-light);
    border-radius: 12px;
    overflow: hidden;
    padding: 1rem;

    .main-content {
        width: 90%;

        h2 {
            font-size: 32px;
            font-weight: 700;
            color: var(--wp--preset--color--blue-normal);

            @media screen and (min-width: 768px) {
                font-size: 28px;
            }
        }

        p {
            font-size: 16px;
            font-weight: 300;

            @media screen and (min-width: 768px) {
                font-size: 16px;
            }
        }

        @media screen and (min-width: 768px) {
            width: 50%;
        }
    }


    .grid-4 {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin: 1rem 0;

        li {
            background-color: white;
            border-radius: 12px;
            padding: 1rem;
            text-align: center;

            .title-number {
                font-size: 24px;
                font-weight: 700;
                color: var(--wp--preset--color--blue-normal);

                @media screen and (min-width: 768px) {
                    font-size: 28px;
                }
            }

            .description {
                font-size: 14px;
                font-weight: 300;

                @media screen and (min-width: 768px) {
                    font-size: 16px;
                }
            }
        }

        @media screen and (min-width: 768px) {
            grid-template-columns: repeat(2, 1fr);
        }
    }
}

.main-header {
    color: var(--wp--preset--color--blue-normal);
    font-size: 32px;
    line-height: 32px;
}

.subheader {
    font-weight: 200;
    font-size: 18px;
}

.contacto-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;

    .contact-data-container {
        background-color: #001A72;
        padding: 1rem;
        border-radius: 0.8rem;
        box-shadow: 2px 2px 5px #908f8f;

        .titulo {
            color: white;
            font-weight: 700;
            font-size: 20px;
        }

        .data-element {
            display: flex;
            flex-direction: row;
            align-items: center;

            .icon {
                flex: 0 0 25%;
                align-items: center;
                justify-content: center;

                .contact-icon {
                    max-width: 35px;
                    height: 35px;
                    background-color: #1F3A8A;
                    padding: 10px;
                    border-radius: 999px;
                }
            }

            .data {
                flex: 0 0 75%;
                color: white;

                .title {
                    font-weight: 600;
                    color: white;
                    font-size: 16px;
                    line-height: 8px;
                }

                .text {
                    font-weight: 300;
                    font-size: 14px;
                }
            }

        }
    }

    .contacto-form {
        max-width: 400px;
        width: 100%;
        height: fit-content;
        background-color: white;
        border-radius: 0.8rem;
        box-shadow: 2px 2px 5px #908f8f;
    }

    @media screen and (min-width: 768px) {
        flex-direction: row;
        height: fit-content;
    }
}

/* Clases for form */
.wpcf7-form {
    .titulo-formualrio {
        color: #1F3A8A;
        font-weight: 700;
        font-size: 20px;
    }
}

.wpcf7-textarea {
    width: 85%;
    border-radius: 6px;
    border: 1px solid #908f8f;
    padding: 4px;
}

.wpcf7-not-valid-tip {
    text-align: center;
}

input[type="submit"] {
    width: 85%;
    min-height: 25px;
    background-color: #1F3A8A;
    color: white;
    font-weight: bold;
    padding: 1rem;
}

input:not([type="image" i], [type="range" i], [type="checkbox" i], [type="radio" i]) {
    width: 85%;
    height: 24px;
    border-radius: 6px;
    border: 1px solid #908f8f;
    padding: 4px;
}

.wpcf7-response-output {
    background-color: red;
    color: white;
    padding: 1rem;
    border: none !important;
    font-weight: 500;
    border-radius: 6px;
}