    #quienes-somos {
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 0.5s, transform 0.5s;
    }

    #quienes-somos:hover {
        transform: scale(1.05);

        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);

        background-color: #5e8eae;

    }

    #quienes-somos h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #fff;
    }

    #quienes-somos.mostrar {
        opacity: 1;
        transform: translateY(0);
    }

    #quienes-somos p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        color: #fff;
    }

    #titulo-servicios {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #565656;
        transform: translateY(-50px);

        transition: transform 0.5s ease, color 0.5s ease;

    }

    #titulo-servicios.scroll-down {
        transform: translateY(0);

        color: #565656;

    }

    
    body {
        font-family: 'Arkhip_font', sans-serif;
        background-color: #f4f4f4;
        margin: 0;
        padding: 0;
    }

    .destacados-section {
        background-color: #fff;
        padding: 80px 0;
        text-align: center;
    }

    .destacado {
        text-align: center;
        margin-bottom: 30px;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s;

    }

    .destacado:hover {
        transform: scale(1.05);

    }

    .destacado img {
        max-width: 10%;
        height: auto;
        border-radius: 50%;
    }

    .destacado h2 {
        margin-top: 20px;
        font-size: 24px;
        color: #3498db;
    }

    .destacado p {
        font-size: 18px;
        color: #555;
    }

    @media (max-width: 767px) {
        .destacados-section {
            padding: 40px 0;
        }
    }

    @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Open Sans', sans-serif;
    }

    .container-form {
        width: 100%;
        max-width: 800px;

        margin: auto;
        margin-top: 90px;
    }

    .container-form h2 {
        margin-bottom: 15px;
        font-size: 35px;
        color: #fff;
    }

    .container-form p {
        font-size: 17px;
        line-height: 1.6;
        margin-bottom: 30px;
        color: #fff;
    }

    .container-form a {
        font-size: 17px;
        display: inline-block;
        text-decoration: none;
        width: 100%;
        margin-bottom: 15px;
        color: #fff;
        font-weight: 700;
    }

    .container-form a i {
        color: orange;
        margin-right: 10px;
    }

    .container-form form .campo,
    .container-form form textarea,
    .container-form form select {
        width: 100%;
        padding: 10px;

        font-size: 16px;
        border: 1px solid #dbdbdb;
        margin-bottom: 15px;
        border-radius: 3px;
        outline: 0px;
        color: #333;
        background-color: #fff;
    }

    .container-form form textarea {
        min-height: 100px;
    }

    .container-form .btn-enviar {
        padding: 12px;
        font-size: 16px;
        border: none;
        outline: 0px;
        background: rgb(89 129 150 / 74%);
        color: white;
        border-radius: 3px;
        cursor: pointer;
        transition: all 300ms ease;
    }

    .container-form .btn-enviar:hover {
        background: rgb(89 129 150 / 74%);
    }

    .form-group {
        margin-bottom: 15px;
    }

    .container-form form select {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background: url('https://imageurl.com/arrow-down.png') no-repeat right center;
        background-size: 20px;
        padding-right: 30px;
    }


    @media (max-width: 767px) {
        .container-form form {
            padding: 20px;
        }
    }

    .service-card img {
        width: 50%;
        height: 200px;
        object-fit: cover;
    }


    .service-card {
        height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }


    .service-card b,
    .service-card p,
    .btn-conoce-mas {
        text-align: center;
    }

    .nav-link {
        font-size: 18px;
        font-weight: bold;
        transition: color 0.3s ease;

    }



    .nav-item.active a {
        background-color: #00274a;
        color: #fff;
    }

    .img-small {
        max-width: 100%;
        /* Ajusta este valor según sea necesario */
        max-height: 100%;
        /* Ajusta este valor según sea necesario */
    }

