@import url(../css/fonts.css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {

    --Inter-regular: 'Inter-Regular', sans-serif;
    --Inter-bold: 'Inter-Bold', sans-serif;
    --Inter-semibold: 'Inter-Semibold', sans-serif;
    --color-red: #EF4444;
    --color-red-black: #73342B;
    --color-hover-red: #930002;
    --color-gray: #646464;
    --color-pink: #FFEDEA;
    --bg-header: #3B2D2B;


}

body {
    width: 100%;
    font-family: var(--Inter-regular);
}

main {
    width: 100%;
    overflow: hidden;
}

section {
    width: 100%;
    height: 100%;
    padding-block: 4rem;
    position: relative;
}

.container {
    width: 92%;
    max-width: 1400px;
    margin: auto;
}

h2,
.gTitle {
    text-align: center;
    font-size: 48px;

    font-weight: 400;
}

.none {
    display: none;
}

h1 {
    font-size: 80px;
    line-height: 1.1;
    letter-spacing: .4px;

    color: #000;
    font-weight: var(--sf-regular);
}


.h1_text {
    font-size: calc(50px + (80 - 50) * ((100vw - 375px) / (1920 - 375)));
}

p {
    color: var(--color-gray);
    font-size: 18px;
    line-height: 1.44;
    letter-spacing: .0125rem;
}

li {
    list-style: none;

}

h2 {
    font-size: 40px;
    font-family: var(--Inter-bold);
}

img {

    width: 100%;
    height: auto;
}

a {
    text-decoration: none;

}

/*Clases generales*/
.flex-col {
    display: flex;
    flex-direction: column;
    /* justify-content: center;
    align-items: center; */
}


.flex-row {
    display: flex;
    align-items: center;

}

.btnContact {

    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    padding-block: 16px;
    padding-inline: 28px;
    color: #fff;
    font-size: 18px;
    font-family: var(--Inter-semibold);
    background-color: var(--color-red);
    width: fit-content;
    transition: backgroiund-color 0.3s ease;

    &:hover {
        background-color: var(--color-hover-red);
    }

}

.margin-section {
    margin-top: 118px;
}

/*Estilos header*/
.header {
    width: 100%;
    /* height: 100%; */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    background-color: var(--bg-header);

    .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-block: 1rem;

        .brands {
            gap: 1.5rem;

            .logo {
                padding: 1rem;
            }

            .lucky-logo {
                border-left: 1px solid #fff;
            }

        }

        .menu-header {
            .menuWrapper {

                gap: 1.5rem;

                .menu-item {
                    position: relative;
                    color: #fff;
                    font-size: 18px;
                    font-weight: 500;
                    cursor: pointer;

                    .menu-link {
                        color: #fff;
                        text-decoration: none;
                    }


                }
            }
        }
    }




}

/*Fin estilos header*/


/*Estilos home principal*/
.hero-section {
    padding-block: 4rem 8rem;

    .vector-1 {
        position: absolute;
        top: 11%;
        left: -3%;
        z-index: -1;
        width: auto;
        height: auto;
    }

    .vector-2 {
        position: absolute;
        bottom: -15%;
        right: 0;

        z-index: -1;
        width: auto;
        height: auto;
    }

    .vector-3 {
        position: absolute;
        bottom: -15%;
        left: -5%;
        z-index: -1;
        width: auto;
        height: auto;
    }

    .container {
        gap: 1rem;

        .left {
            width: 50%;
            gap: 3rem;

            .info {
                gap: 1.5rem;

                .title {
                    h1 {
                        font-family: var(--Inter-bold);
                        font-size: 64px;
                        line-height: 100%;
                    }
                }
            }

            .wrapper-links {
                .link {
                    gap: 12px;
                }
            }
        }

        .right {
            width: 50%;
            justify-content: center;

            img {
                max-width: 495px;
            }

        }
    }

}


.us {
    .container {
        gap: 62px;

        .row {
            justify-content: space-between;

            .left {
                width: 50%;
                justify-content: end;

                .info {
                    gap: 1.5rem;
                    max-width: 450px;
                    align-items: end;

                    h2 {
                        font-size: 40px;
                        font-family: var(--Inter-bold);
                    }

                    p {
                        font-size: 20px;
                        font-family: var(--Inter-bold);

                    }
                }
            }


            &:nth-child(even) {
                flex-direction: row-reverse;

                .left {
                    justify-content: start;

                    .info {
                        align-items: start;
                    }
                }
            }
        }

        .type-class {
            align-items: center;
            gap: 2rem;

            h3 {
                max-width: 650px;
                text-align: center;
                font-size: 24px;
                font-family: var(--Inter-bold);
            }

            .wrapper-type-class {
                justify-content: center;
                gap: 3rem;

                .type-item {
                    border: 1px solid;
                    font-size: 18px;
                    padding: 16px 28px;
                    border-radius: 8px;
                    border: 1px solid #998E8D;
                    line-height: 28px;
                    font-family: var(--Inter-semibold);
                    cursor: pointer;
                    transition: background-color 0.3s ease;

                    &:hover {
                        background-color: var(--color-pink);
                    }
                }
            }
        }

        .xample-class {
            justify-content: space-between;

            .left {
                max-width: 350px;
                margin: auto;
            }
        }
    }
}

.mission {
    padding-block: 2rem;
    background-color: #ede0de;

    .container {
        h2 {
            font-size: 40px;
            font-family: var(--Inter-bold);
        }

        p {
            text-align: center;
        }
    }
}

.winners {
    .container {
        justify-content: space-between;

        .info {
            width: 50%;
            gap: 20px;

            h2 {
                text-align: start;
                font-size: 40px;
                font-family: var(--Inter-bold);

            }

        }

        .left {
            img {
                border-radius: 12px;
            }

        }
    }
}

.programs {
    .container {
        gap: 2rem;

        h3 {
            text-align: center;
            font-size: 40px;
            font-family: var(--Inter-bold)
        }

        .wrapper-programs {
            justify-content: center;
            align-items: start;
            gap: 1rem;

            .item-program {
                padding: 24px;
                flex: 1;
                gap: 1rem;
                max-width: 350px;

                .image-program {
                    img {
                        /* max-width: 336px;
                        max-height: 240px; */
                        object-fit: cover;
                        border-radius: 8px;
                    }

                }

                .info-program {
                    gap: 1rem;

                    h3 {
                        font-size: 24px;
                        text-align: start;
                    }

                    p {
                        color: #667085;

                    }
                }
            }
        }
    }
}

.companies {
    .container {
        padding-block: 0 2rem;

        p {
            font-size: 24px;
            line-height: 1.5;

            margin-bottom: 97px;
            color: #000;
            text-align: center;
        }


    }

    #swCompanies,
    #swCompaniesTwo {
        .swiper-wrapper {
            transition-timing-function: linear;

            .swiper-slide {
                align-items: center;

                img {
                    max-width: 200px;
                }
            }
        }
    }

    #swCompaniesTwo {
        margin-top: 3rem;
    }
}

.methodologies {
    .container {
        .wrapper-items {
            display: flex;
            /* Habilitar flexbox */
            flex-wrap: wrap;
            /* Permitir que los elementos se envuelvan */
            justify-content: space-between;
            /* Distribuir el espacio entre los elementos */
            gap: 12px;
            /* Espacio entre los items */
        }

        .item {
            padding: 24px;
            gap: 1rem;
            flex-basis: 45%;
            /* Establece el tamaño inicial de los items */
            background-color: #FFF8F7;
            border-radius: 4px;
            display: flex;
            /* Asegura que los elementos internos también estén alineados con flexbox */
            flex-direction: column;
            /* Alinear los elementos dentro de .item de forma vertical */
        }

        .image {
            width: 50%;
            /* Imagen al 50% del ancho del contenedor */
        }

        .info {
            gap: 1rem;
        }

        h3 {
            color: #5D3F3B;
        }

        p {
            color: #5D3F3B;
            font-size: 18px;
        }

    }
}


.contact {
    .container {
        padding: 40px;

        gap: 3rem;
        justify-content: space-between;

        .left {
            align-items: start;
            max-width: 548px;
            gap: 2rem;

            .texts {
                gap: 2rem;
                align-items: start;

                p {
                    color: #000;
                    font-size: 24px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: normal;
                }
            }

            .icons-contact {
                gap: 0.75rem;

                .card-contact {
                    gap: 0.75rem;

                    .info {
                        p {
                            color: #000;
                            font-size: 24px;
                            font-style: normal;

                            line-height: normal;
                        }

                        a {
                            color: #000;

                            font-size: clamp(1.2rem, 2.5vw, 1.5rem);
                            font-style: normal;

                            line-height: normal;
                        }
                    }
                }

                .box-image {
                    img {
                        width: 45px;
                    }
                }

            }


        }

        .wpcf7 {
            /* max-width: 508px; */
            max-width: 50%;
            width: 100%;
            margin: 0;

            .wpcf7-form {
                display: flex;
                flex-direction: column;
                gap: .75rem;

                .form-item {
                    p {

                        display: flex;
                        flex-direction: column;
                        gap: .5rem;

                        label {
                            font-size: 16px;
                            font-style: normal;
                            color: #000;
                            font-weight: 400;
                            line-height: 140%;
                            /* 22.4px */
                        }

                        span {
                            display: block;
                            width: 100%;

                            input,
                            select,
                            textarea {
                                width: 100%;
                                border-radius: 8px;
                                height: 3.25rem;
                                padding: .4375rem .875rem;
                                font-size: 16px;
                                line-height: 100%;
                                font-family: var(--rb-regular);
                                font-weight: 600;

                                &:focus {
                                    outline: none;
                                }
                            }

                            textarea {
                                height: 7rem;
                            }


                        }

                        br {
                            display: none;
                        }
                    }


                }

                .btn {
                    p {
                        display: flex;
                        justify-content: start;

                        cursor: pointer;
                        gap: 10px;
                        width: 100%;



                        input[type="submit"] {
                            padding: 24px 28px;
                            border-radius: 16px;
                            background-color: var(--color-hover-red);
                            border: none;
                            /* background-color: transparent; */
                            font-size: 16px;
                            font-style: normal;
                            font-weight: 700;
                            line-height: normal;
                            color: #fff;
                            cursor: pointer;
                        }

                        .wpcf7-spinner {
                            display: none;
                        }

                        &:hover {
                            input[type="submit"] {
                                background-color: var(--color-red-black);
                            }
                        }
                    }


                }
            }
        }
    }
}


.info#reclamaciones {
    padding-block: 0 4rem;
    background-color: var(--bg-blue-gray);
    margin-top: 86px;
    background-color: #000;

    .container {

        margin-inline: auto;
        padding: 40px;

        .info-enterprise {
            padding-block: 1rem;
            gap: .5rem;

            h1 {
                color: #fff;
                text-align: center;
            }

            span {
                font-size: 18px;
                line-height: 1.2;
                color: #fff;
                text-align: center;
            }

        }


        .wpcf7 {
            width: 100%;

            .wpcf7-form {
                width: 100%;
                display: flex;
                flex-direction: column;
                gap: 1rem;

                .customs {
                    width: 100%;
                    display: grid;
                    grid-template-columns: 1fr 1fr 1fr;
                    gap: 1rem;

                    .custom {

                        select {
                            -webkit-appearance: none;
                            /* Safari y Chrome */
                            -moz-appearance: none;
                            /* Firefox */
                            appearance: none;
                            width: 100%;
                            padding: 15px 20px;
                            border: none;
                            border-radius: 28px;
                            background: #f5f5f5;

                            font-size: 17.595px;
                            font-style: normal;
                            line-height: 21.994px;

                            &::placeholder {
                                color: #000;
                                font-size: 17.595px;
                                font-style: normal;
                                line-height: 21.994px;

                            }

                            &:focus {
                                outline: none;
                            }
                        }
                    }
                }

                p {
                    width: 100%;

                    input {
                        padding: 15px 20px;
                        border: none;
                        border-radius: 28px;
                        background: #fff;
                        width: 100%;

                        font-size: 17.595px;
                        font-style: normal;
                        line-height: 21.994px;
                        color: #052452;


                        &::placeholder {
                            font-size: 17.595px;
                            font-style: normal;

                            color: #000;
                            line-height: 21.994px;
                        }

                        &:focus {
                            outline: none;
                        }
                    }

                    input[type="radio"] {
                        accent-color: #8658EB;
                        opacity: 0;
                        position: absolute;
                        width: 100%;
                        height: 100%;
                    }



                    textarea {
                        width: 100%;
                        padding: 15px 20px;
                        border: none;
                        border-radius: 28px;
                        background: #f5f5f5;

                        font-size: 17.595px;
                        font-style: normal;
                        line-height: 21.994px;
                        font-family: var(--rb-regular);

                        &::placeholder {

                            font-size: 17.595px;
                            font-style: normal;
                            font-family: var(--rb-regular);
                            line-height: 21.994px;
                            color: #000;
                        }

                        &:focus {
                            outline: none;
                        }
                    }
                }

                .content-items {
                    display: flex;
                    flex-direction: column;
                    padding-block: 1rem;
                    gap: 1rem;

                    p {
                        color: #fff;

                        span {
                            color: #fff;
                            display: flex;
                            flex-direction: column;
                            align-items: start;
                            margin: 0;
                        }
                    }

                    h2 {
                        color: #fff;
                        text-align: start;
                        font-size: 30px;
                        line-height: 30px;

                    }

                    h3 {
                        color: #fff;
                    }

                    .group {
                        p {
                            display: flex;
                            justify-content: space-between;
                            gap: 1rem;
                            color: #fff;


                            span {
                                width: 50%;
                            }
                        }
                    }

                    .wpcf7-form-control-wrap {
                        display: flex;

                        label {
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            gap: 0.8rem;
                        }

                        .wpcf7-list-item-label {
                            color: #fff;
                        }
                    }

                    &.ubigeo {
                        flex-direction: row;
                        justify-content: space-between;

                        .group {
                            width: 100%;
                            flex-basis: 33.3%;

                            p {
                                width: 100%;

                                .wpcf7-form-control-wrap {
                                    width: 100%;
                                    flex: 1;

                                    select {
                                        -webkit-appearance: none;
                                        -moz-appearance: none;
                                        appearance: none;
                                        width: 100%;
                                        padding: 15px 20px;
                                        border: none;
                                        border-radius: 28px;
                                        background: #f5f5f5;
                                        font-size: 17.595px;
                                        font-style: normal;
                                        line-height: 21.994px;

                                    }

                                    .wpcf7-not-valid-tip {
                                        display: none;
                                    }
                                }
                            }
                        }

                    }
                }

                .btn-animated {
                    display: flex;

                    border-radius: 16px;
                    justify-content: center;
                    align-items: center;
                    gap: 10px;
                    background-color: var(--bg-morado);
                    font-weight: 700;
                    color: #000;
                    gap: 1rem;
                    width: fit-content;
                    margin: auto;

                    &:hover {
                        background-color: var(--bg-morado-claro)
                    }

                    p {
                        position: relative;
                        margin-bottom: 0;

                        z-index: 6;


                        input[type="submit"] {
                            background-color: var(--bg-green-light);
                            padding: 12px 44px;
                            font-size: 20px;
                            color: white;
                            cursor: pointer;
                            font-family: var(--rb-regular);

                        }

                        .wpcf7-spinner {
                            display: none;
                        }
                    }
                }
            }
        }
    }
}

.politicas {

    .container {
        color: #000;

        h2 {
            padding-block: 20px;
        }

        p {
            color: #000;
            margin-bottom: 30px;
        }

        ol,
        ul {
            margin-bottom: 30px;

            li {
                list-style: autos;
                margin-left: 2rem;
                padding-block: 15px;

                p {
                    margin-left: 1rem;
                    font-size: 14px;
                }
            }

        }

        .table-container {
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            margin-bottom: 20px;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 650px;
            /* Asegura que la tabla mantiene un ancho mínimo */
        }

        th {
            background-color: #000;
            color: white;
            text-align: center;
            padding: 10px;
            font-weight: bold;
            border: 1px solid #000;
            white-space: nowrap;
            /* Evita que los encabezados se partan */
        }

        td {
            border: 1px solid #000;
            padding: 8px;
            text-align: center;
        }

        .resaltado {
            background-color: #ffff00;
            font-weight: bold;
        }

        /* Para dispositivos muy pequeños, podemos transformar la tabla */
        @media (max-width: 480px) {
            table {
                min-width: unset;
                width: 100%;
            }

            th,
            td {
                padding: 6px 4px;
                font-size: 12px;
            }
        }
    }
}

.footer {
    background-color: #000;
    color: #ffffff;
    padding: 80px 0 20px;

    .container {
        gap: 2rem;

    }

    .top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;

        .logos-footer {
            .logo {
                width: 100%;
                max-width: 250px;
                /* margin-bottom: 30px; */

                img {
                    max-width: 200px;
                    margin-bottom: 15px;
                }

                p {
                    color: #fff;
                    font-size: 16px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 26px;
                }
            }
        }


        .footer-section {
            margin-bottom: 30px;
            min-width: 200px;
            display: flex;
            flex-direction: column;
            gap: 1rem;

            a {
                color: white;

            }

            .footer-title {
                font-size: 16px;
                font-weight: 600;
                text-transform: uppercase;
                margin-bottom: 20px;
                color: #ffffff;
                letter-spacing: 1px;
            }

            .libro-reclamaciones {
                gap: 4px;

                img {
                    max-width: 40px;
                }

                span {
                    color: #fff;
                }

            }
        }
    }




    .footer-links {
        list-style: none;


        li {
            margin-bottom: 12px;

            a {
                color: #868686;
                text-decoration: none;
                font-size: 14px;
                transition: color 0.3s ease;
                cursor: pointer;

                &:hover {
                    color: #43FFA7;
                }
            }
        }
    }

    .social-links {
        display: flex;
        margin-top: 20px;
        justify-content: space-between;
        gap: 2rem;

        .social-icon {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            cursor: pointer;
        }
    }

    .footer-bottom {
        border-top: 1px solid #333;
        margin-top: 30px;
        padding-top: 20px;
        text-align: center;
        width: 100%;

        p {
            font-size: 12px;
            color: #999;
        }
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
        }

        .footer-section {
            width: 100%;
            margin-bottom: 30px;
        }
    }
}

.course-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.card-course {
    background: #FFF8F7;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card-course:hover {
    transform: translateY(-5px);
    background-color: #FF8A79;
}



.img-course {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    background-color: #f0f0f0;
    /* Color de fondo mientras carga la imagen */
}

.img-course img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Mantiene proporción sin distorsionar */
    border-radius: 10px;
}


.title-course {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.btnCourse {
    display: inline-block;
    background: transparent;
    border: none;
    color: #666;
    text-decoration: none;
    cursor: pointer;
    padding: 8px 0;
    font-size: 16px;
    transition: color 0.3s ease;
}

.btnCourse:hover {
    color: #333;
}

.btnCourse::after {
    content: ' >';
    margin-left: 5px;
}

/* Estilos del popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Layout de dos columnas */
.popup-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.popup-info {
    flex: 1;
    min-width: 300px;
    margin: auto;
}

.popup-form {
    flex: 1;
    min-width: 300px;
}

.popup-overlay.active .popup-content {
    transform: translateY(0);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.popup-close:hover {
    background-color: #f0f0f0;
}

.popup-title {
    font-size: 1.1em;
    font-weight: 500;
    margin-bottom: 5px;
    color: #666;
    text-align: start;
}

.popup-subtitle {
    font-size: 1.3em;
    color: #333;
    margin-bottom: 25px;
    font-weight: 500;
}

.popup-purpose-title {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.popup-description {
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 0.95em;
}

/* Estilos para Contact Form 7 */
.contact-form-container {
    margin-bottom: 25px;
}

/* Estilos para los form-item de CF7 */
.wpcf7-form .form-item {
    margin-bottom: 20px;
    position: relative;

    p {
        background-color: #E6E0E9;
    }
}

.wpcf7-form .form-item label {
    /* position: absolute;
    top: -8px;
    left: 12px; */

    padding: 0 8px;
    color: #666;
    font-weight: 400;
    font-size: 12px;
    z-index: 1;
}

.wpcf7-form .form-item input[type="text"],
.wpcf7-form .form-item input[type="email"],
.wpcf7-form .form-item input[type="tel"],
.wpcf7-form .form-item textarea {
    width: 100%;
    /* padding: 15px 16px; */
    padding-inline: 10px;
    /* border: 1px solid #ddd; */
    background-color: transparent;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    resize: vertical;
    border: none;
    color: #666;
}

.wpcf7-form .form-item input::placeholder,
.wpcf7-form .form-item textarea::placeholder {
    color: #999;
    font-size: 14px;
}

.wpcf7-form .form-item input:focus,
.wpcf7-form .form-item textarea:focus {
    outline: none;

    box-shadow: 0 0 0 2px rgba(229, 62, 62, 0.1);
    /* background-color: white; */
}

.wpcf7-form .form-item textarea {
    min-height: 100px;

}

/* Íconos de limpieza en los campos */
/* .wpcf7-form .form-item::after {
    content: "×";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: #ddd;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
} */

.wpcf7-form .form-item:hover::after {
    opacity: 1;
}

/* Estilos para el botón de submit de CF7 y botón personalizado */
.wpcf7-form .btn-container {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.wpcf7-form .btn {
    flex: 1;
}

.wpcf7-form .btn input[type="submit"] {
    width: 100%;
    background-color: #e53e3e;
    color: white;
    border: none;
    padding: 15px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
    margin: 0;
}

.wpcf7-form .btn input[type="submit"]:hover {
    background-color: #d32f2f;
}

/* Botón personalizado Volver dentro del CF7 */
.wpcf7-form .btn-volver {
    flex: 1;
    background-color: white;
    color: #666;
    border: 1px solid #ddd;
    padding: 15px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.wpcf7-form .btn-volver:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
}

/* Ocultar los mensajes de validación por defecto y personalizarlos */
.wpcf7-form .wpcf7-not-valid-tip {
    color: #e53e3e;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

.wpcf7-form .wpcf7-validation-errors {
    border: 1px solid #e53e3e;
    background-color: #ffebee;
    color: #e53e3e;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.wpcf7-form .wpcf7-mail-sent-ok {
    border: 1px solid #4caf50;
    background-color: #e8f5e8;
    color: #4caf50;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* Estilos de los botones del popup - Ya no necesarios */
/* Los botones ahora están dentro del formulario CF7 */

/* Sección adicional */
.additional-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
}

.additional-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.additional-section p {
    font-size: 1.2em;
    opacity: 0.9;
}