@media (max-width: 1024px) {

    .section-title,
    .v2-section-title {
        font-size: 2.5em;
    }

    /* --- SECCION HERO --- */
    .v2-hero-section {
        min-height: 110vh;
        padding-top: 150px;
        padding-left: 50px;
    }

    .v2-hero-title {
        font-size: 3em;
    }

    .v2-cta-button {
        margin-top: 1em;
        padding: 8px 20px;
        font-size: .9em;
    }

    /* --- SECCION NOSOTROS --- */
    .about-intro {
        font-size: 1em;
    }

    .about-grid {
        padding: 0 50px;
        gap: 50px;
        text-align: center;
    }

    .about-item {
        padding: 5px;
    }

    .about-item i {
        font-size: 2.5em;
        color: #007BFF;
        margin-bottom: 15px;
    }

    .about-item h3 {
        font-size: 1.2em;
        margin-bottom: 10px;
        color: #0F2027;
    }

    .about-item:hover {
        border-radius: 20px;
        box-shadow: 10px 10px 20px #012953;
    }

    /* --- SECCION SERVICIOS --- */
    .grid-2x2 {
        gap: .5em;
    }

    .v2-service-card h3 {
        font-size: 1.5em;
    }

    /* SECCION EQUIPO */

    .team-grid-hibrido {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 15px;
    }

    .team-card.principal {
        grid-column: span 2;
    }

    .team-card:nth-child(1) {
        grid-column: 1 / span 2;
        justify-self: center;
    }

    .team-card:nth-child(2) {
        grid-column: 3 / span 2;
        justify-self: center;
    }

    .team-card.principal {
        grid-column: span 1;
    }

    .team-card:nth-child(1) {
        grid-column: 1;
        justify-self: end;
    }

    .team-card:nth-child(2) {
        grid-column: 3;
        justify-self: start;
    }

    .team-card:nth-child(3) {
        grid-column: 1;
    }

    .team-card:nth-child(n+3) {
        grid-column: span 1;
    }

    .team-card:nth-child(n+4) {
        grid-column: span 1;
    }

    .team-card:nth-child(n+5) {
        grid-column: span 1;
    }

    .team-card:nth-child(6) {
        grid-column: 1;
    }

    .team-member-hibrido.principal {
        width: 200px;
        height: 200px;
    }

    /* SECCION DE FRASES */
    .quote-slide {
        font-size: 1.3em;
    }

    /* SECCION CONTACTO */
    .contact-form input,
    .contact-form textarea {
        width: 100%;
    }

    .contacto-datos a {
        font-size: 1em;
    }

}


@media (max-width: 768px) {

    .section-title,
    .v2-section-title {
        font-size: 2em;
    }

    /*--------------*/
    .v2-logo img {
        width: 20vw;
    }

    .v2-header {
        flex-direction: column;
        padding: 10px 5%;
    }

    .v2-nav {
        margin-top: 10px;
    }

    .v2-nav a {
        margin: 0 10px;
    }

    .v2-hero-title {
        font-size: 2.3em;
    }

    .v2-cta-button {
        margin-top: 1em;
        padding: 7px 15px;
        font-size: .9em;
    }


    /* --- CAMBIOS ESPECÍFICOS PARA EL HEADER EN MÓVIL --- */
    .v2-header {
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 5%;
    }

    .menu-toggle {
        display: flex;
    }

    .v2-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 70vh;
        background-color: rgba(15, 32, 39, 0.95);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        z-index: 1001;
    }

    .v2-nav.active {
        transform: translateX(0);
    }

    .v2-nav a {
        font-size: 1em;
        margin: 10px 0;
        color: #FFFFFF;
        padding: 10px;
        opacity: 0;
        transition: opacity 0.3s ease 0.4s;
    }

    .v2-nav.active a {
        opacity: 1;
    }

    .grid-2x2 {
        grid-template-columns: 1fr;
    }

    .v2-service-card {
        min-height: 250px;
    }

    .team-grid-hibrido {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 15px;
    }

    .team-card.principal {
        grid-column: span 2;
    }

    .team-card:nth-child(1) {
        grid-column: 1 / span 2;
        justify-self: center;
    }

    .team-card:nth-child(2) {
        grid-column: 3 / span 2;
        justify-self: center;
    }

    .team-card.principal {
        grid-column: span 1;
    }

    .team-card:nth-child(1) {
        grid-column: 1;
        justify-self: end;
    }

    .team-card:nth-child(2) {
        grid-column: 3;
        justify-self: start;
    }

    .team-card:nth-child(3) {
        grid-column: 1;
    }

    .team-card:nth-child(n+3) {
        grid-column: span 1;
    }

    .team-card:nth-child(n+4) {
        grid-column: span 1;
    }

    .team-card:nth-child(n+5) {
        grid-column: span 1;
    }

    .team-card:nth-child(6) {
        grid-column: 1;
    }

    .team-member-hibrido.principal {
        width: 150px;
        height: 150px;
    }


    /* --- SECCION NOSOTROS --- */
    .about-intro {
        font-size: .9em;
    }

    .about-grid {
        padding: 0 50px;
        gap: 50px;
        text-align: center;
    }

    .about-item {
        padding: 15px;
    }

    .about-item h3 {
        font-size: 1em;
        margin-bottom: 10px;
        color: #0F2027;
    }

    .about-item p {
        font-size: .9em;
    }

    .about-item:hover {
        border-radius: 20px;
        box-shadow: 10px 10px 20px #012953;
    }

    /* --- SECCION SERVICIOS --- */
    .grid-2x2 {
        gap: .5em;
    }

    .v2-service-card h3 {
        font-size: 1.5em;
    }

    /* SECCION DE FRASES */
    .quote-slide {
        font-size: 1.3em;
    }

    /* SECCION CONTACTO */

    .contact-section {
        flex-direction: column;
        justify-content: space-between;
        gap: 4em;
    }


    .formulario {
        width: 85%;
    }

    /* SECCION FOOTER */
    .footer-menu {
        display: none;
    }

    .footer-top {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;

    }
}

@media (max-width: 480px) {


    .v2-logo img {
        width: 30vw;
        padding-top: 10px;
    }

    .v2-nav {
        display: flex;
        flex-direction: column;
        height: 50vh;
    }

    .v2-nav a {
        margin: 0;
        font-size: .9em;
    }

    .section-title,
    .v2-section-title {
        font-size: 1.5em;
    }

    .v2-hero-title {
        padding-bottom: 20px;
    }

    .v2-hero-section {
        min-height: 90vh;
        padding-top: 90px;
        padding-left: 30px;
    }

    /* SECCION NOSOTROS */
    .content-section {
        padding: 40px 5%;
    }

    .about-intro {
        margin-bottom: 2em;
        font-size: .9em;
    }

    .about-item p {
        font-size: .9em;
    }

    .about-grid {
        padding: 0px 30px;
        gap: 30px;
        text-align: center;
    }

    /* SECCION SERVICIOS */
    .v2-service-card h3 {
        font-size: 1.2em;
    }

    .modal-trigger {
        font-size: .8em;
    }

    #modal-list li {
        font-size: .9em;
    }

    /* SECCION EQUIPO */
    .team-grid-hibrido {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 10px;
    }

    .team-member-hibrido.principal {
        width: 100px;
        height: 100px;
    }

    .team-member-hibrido {
        width: 80px;
        height: 80px;
    }

    .team-name {
        font-size: .7em;
    }

    /* SECCION CONTACTO */
    .contact-form input,
    .contact-form textarea {
        padding: 10px;
        font-size: .8em;
    }


    /* SECCION DE FRASES */
    .quote-slide {
        font-size: 1em;
    }

    .v2-footer{
        padding-top: 20px;
    }

    .footer-top iframe {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 5px;
        font-size: .7em;
    }
}