.BANNERCONTA{
    width: 100%;
    margin: 0;
    display: block;
}
.contacto {
    background-color: #fff;
    padding: 70px 0;
    padding-top: 170px;
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}
.contacto .container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    align-content: center;
}
.formulario {
    background: #fff;
    padding: 30px;
    border-radius: 40px 40px 40px 40px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
    flex: 1;
    min-width: 320px;
    max-width: 450px;
    position: relative;
    z-index: +10;
}

.formulario::after {
    content: "";
    position: absolute;
    bottom: 0px; /* Lo empuja hacia afuera */
    right: -50px; /* Lo empuja hacia afuera */
    width: 50px;
    height: 50px;
    background: #fff;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}
.formulario::before {
    content: "";
    position: absolute;
    bottom: 0px; /* Lo empuja hacia afuera */
    right: -1px; /* Lo empuja hacia afuera */
    width: 50px;
    height: 50px;
    background: #fff;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.formulario form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 30px;
}
.formulario input,
.formulario select,
.formulario textarea {
    width: 90%;
    padding: 10px;
    border: 1px solid #ccc;
    font-size: 1.2rem;
    background: #ecedef;
}

.formulario .select-group {
    display: flex;
    gap: 10px;
    width: 95%; /* Asegura que ocupe todo el ancho */
}

.formulario .select-group select {
    flex: 1; /* Para que ambos `select` ocupen el mismo espacio */
    padding: 10px;
    border: 1px solid #ccc;
    background: #ecedef;
    font-size: 1.2rem;
    cursor: pointer;
}

.formulario .privacidad {
    display: flex;
    align-items: center;
    gap: 5px; /* Reducimos el espacio */
    font-size: 1rem; /* Tamaño de letra uniforme */
}

.formulario .privacidad input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #4CAF50; /* Cambia el color del checkbox */
    cursor: pointer;
}

.boton {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1.2rem;
    margin: 10px auto;
    display: block;
    background: rgb(129, 223, 55);
    background: linear-gradient(90deg, rgba(154, 224, 92, 1) 0%, rgba(114, 216, 64, 1) 100%);
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 10px;
    width: 350px;
    max-width: 90%;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 8px 10px rgba(255, 255, 255, 0.3),
                inset 0 -5px 10px rgba(0, 0, 0, 0.2);
    border: 0;
    cursor: pointer;
}

.boton:hover {
    background: linear-gradient(90deg, rgba(114, 216, 64, 1) 0%, rgba(154, 224, 92, 1) 100%);
}

.info {
    background: #383c41;
    color: white;
    padding: 40px;
    padding-left: 60px;
    border-radius: 0 40px 40px 0;
    flex: 1;
    min-width: 320px;
    max-width: 500px;
    position: relative;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
    z-index: 0;
    margin-left: -40px;
}

.info h2 {
    font-family: "Orbitron", sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    text-align: center;
}

.info h2 span {
    font-family: "Poppins", sans-serif;
    color: #7eda40;
    font-weight: 400;
}
.info p{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    color: #999ca1;
    text-align: center;
}
.beneficios {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.beneficios p{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    text-align: left;
    color: #fff;
}
.beneficios p strong{
    font-size: 1.3em;
}
/* Aplica el borde solo al primer elemento */
.beneficios div:not(:last-child) {
    border-right: 2px solid #fff;
}

.beneficios div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Móviles */
@media only screen and (max-width: 800px) {
    .contacto{
        max-width: 90%;
        margin: 20px auto;
    }
    .contacto .container {
        flex-direction: column-reverse;
        width: 90%;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .formulario {
        padding: 40px 20px;
        border-radius: 40px 40px;
        min-width: 100%;
        max-width: 100%;
    }
    .info {
        padding: 20px;
        padding-bottom: 60px;
        border-radius: 40px 40px 0px 0px;
        margin-left: 0;
        margin-bottom: -40px;
        min-width: 100%;
        max-width: 100%;
    }

    .formulario::after, .formulario::before {
        width: 0px;
        height: 0px;
    }
    .beneficios {
        flex-direction: column;
    }
    .beneficios div:not(:last-child) {
        border-right: none;
        border-bottom: 2px solid #fff;
    }
}