@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Poppins", serif;
}

html,
body {
    background: #fff !important;

}


:root {
    color-scheme: light;
}

/* SECCION NOVEDADES TOP BANNER */
.seccion-novedades {
    background: #ffcd00;
    padding: 10px 0;
    width: 100%;
    z-index: 1001;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.novedades-contenido {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.novedades-titulo {
    background: #000;
    color: #ffcd00;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    animation: brillo-suave 3s infinite;
}

.novedades-texto {
    color: #000;
    font-weight: 500;
    font-size: 15px;
}

@keyframes brillo-suave {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0px rgba(0, 0, 0, 0.2);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0px rgba(0, 0, 0, 0.2);
    }
}

@media (max-width: 768px) {
    .novedades-texto {
        font-size: 13px;
    }

    .novedades-titulo {
        font-size: 12px;
    }
}

.suboton {
    display: none;
}

input {
    font-size: 15px !important;
}

.ts-control>* {
    font-size: 13px;
}

.accordion {
    --bs-accordion-border-width: 0;
}

.accordion .accordion-item {
    border-width: 0 0 var(--bs-border-width) 0;
}

.images {
    object-fit: contain;
    padding: 32px;
}

.slider .nokia-img {
    object-fit: cover;
}

.contentedorTexto-2 {
    display: flex;
    justify-content: flex-start;
}

.btnContenedor {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* FORMULARIO OBTENER UN SMATH PHONE */

.formulario-me-interesa {


    width: 100%;
    height: 100%;
    background-color: rgba(0, 92, 96, 0.4);
    /* fondo semitransparente */
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}



.formulario-me-interesa.show {
    display: flex;
}

.formulario-me-interesa .formulario-contenedor {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    /* min-width: 400px; */
    height: auto;
    background-color: #fff;
    gap: 1rem;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    max-width: 550px;
    width: 90%;
}

.formulario-cerrar {
    position: absolute;
    font-size: 30px;
    top: 25px;
    right: 30px;
    cursor: pointer;
}

.formulario-me-interesa .formulario-contenedor h1 {
    line-height: 34px;
    font-weight: 700;
    font-size: 34px;
}

.formulario-me-interesa .formulario-contenedor .formulario-contenedor-arriba-label {
    width: 100%;
    padding: 0 4rem;
}

.formulario-me-interesa .formulario-contenedor label {
    line-height: 20px;
    font-weight: 500;
    font-size: 16px;
}

.formulario-me-interesa .formulario-contenedor .input-contenedor {
    width: 100%;
}

.formulario-me-interesa .formulario-contenedor .input-contenedor input {
    width: 100%;

    border: 1px solid rgba(198, 196, 211, 1);
    padding: .5rem 2rem;
    font-size: 16px;
}

.formulario-me-interesa .formulario-contenedor .input-contenedor input.error,
.formulario-me-interesa .formulario-contenedor .input-contenedor textarea.error {
    border: 1px solid red;
}

.error-message {
    color: red;
    font-size: 0.9em;
    line-height: 1.3;
    margin-top: 6px;
    display: block;
    padding: 0 3rem;
}

.formulario-me-interesa .formulario-contenedor .input-contenedor textarea {
    width: 100%;
    height: 45px;
    min-height: 45px;
    max-height: 200px;
    border-radius: 20px;
    border: 1px solid rgba(198, 196, 211, 1);
    padding: .5rem 2rem;
    font-size: 16px;
    margin-top: 6px;
}


.formulario-me-interesa .formulario-contenedor .formulario-informacion {
    background-color: rgba(235, 247, 247, 1);
    width: 100%;
    height: auto;
    border-radius: 20px;
    margin-top: 1rem;
    padding: 1rem;
}

.formulario-me-interesa .formulario-contenedor .formulario-informacion label {
    line-height: 20px;
    font-weight: 600;
    font-size: 18px;
}

.formulario-me-interesa .formulario-contenedor .formulario-informacion ul {
    margin-top: 1rem;
    list-style: none;
    font-weight: 500;
}

.formulario-me-interesa .formulario-contenedor .formulario-informacion ul li {
    font-size: 1rem;
}

.formulario-me-interesa .formulario-contenedor .formulario-informacion ul li span {
    margin-right: .7rem;
    font-size: 1rem;
}

.boton1-formulario,
.boton2-formulario {
    border: none;
    width: 180px;
    height: auto;
    padding: 12px;
    border-radius: 25px;
    font-size: 17px;
    color: #fff;
    background-color: #ffcd00;
    margin-top: 8px;
}

.ts-wrapper.single .ts-control {
    width: auto !important;
    height: 45px !important;
    min-width: 350px !important;
    border-radius: 20px !important;
    text-align: left !important;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 29px !important;
}

.ts-control>* {
    vertical-align: baseline;
    display: inline-block;
    min-width: 302px !important;
}

.ts-wrapper.single .ts-control input {
    font-size: 14px !important;
    font-weight: 400 !important;
}

.ts-wrapper.single .ts-control,
.ts-wrapper.single .ts-control input {
    font-size: 14px !important;
    display: flex;
    flex-wrap: nowrap;
}

.ts-control,
.ts-wrapper.single.input-active .ts-control {
    padding-left: 23px !important;
}

.ts-dropdown-content {
    text-align: left;
}

/* animacion infinita para el carrusel */
/* White Gradient */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}

.slider {
    background: white;
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 80%;
    margin-bottom: 3%;
}

/* White gradient effect for the edges */
.slider::before,
.slider::after {
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 10%);
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
}

.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.slider::before {
    left: 0;
    top: 0;
}

/* Slide track animation */
.slider .slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
}

/* Individual slides */
.slider .slide {
    height: 100px;
    width: 250px;
}


.contenedor {
    position: relative;
}

html {
    scroll-behavior: smooth;
}

/*Estilos para la cabecera del proyecto HEADER*/
header {
    display: flex;
    justify-content: space-between;
}

header .logo-header {
    width: 50%;
    align-self: center;
    margin-left: 50px;
}

header .logo-header img {
    width: 230px;
}

header .barra-navegacion {
    align-self: center;
    margin-right: 50px;
    margin-top: 8px;
    width: 50%;
}

header .barra-navegacion ul {
    display: flex;
    justify-content: flex-end;
    gap: 50px;
    margin: 0;
    padding: 0;
}

header .barra-navegacion ul li {
    list-style: none;
    font-size: 14px;
    color: #3F3F3D;
    cursor: pointer;
    line-height: 1;
    transition: all ease-in-out .9ms;
}

img.santa_mano {
    width: 100%;
    margin-left: 9%;
    margin-bottom: 19%;
    margin-top: 0%;
}


img.santa {
    width: 82%;
    margin-left: 9%;
    margin-bottom: 26%;
    margin-top: 18px;
}

/*hovers y activates para  los headers (ul,li)*/
header .barra-navegacion ul a {
    list-style: none;
    text-decoration: none;
}

header .barra-navegacion ul li:active,
header .barra-navegacion ul li:hover,
header .barra-navegacion ul li:focus {
    color: #005C60;
    font-weight: bold;
}

/*Estilos para el main*/
main {
    position: relative;
    width: 100%;
    display: flex;
}

.carousel {
    width: 100%;
}

main .carousel-inner {
    width: 100%;
}

main .carousel .carousel-inner .carousel-item .contenedor-slider {
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    width: 100%;
}

main .carousel .carousel-inner .carousel-item .contenedor-slider .contenedor {
    display: flex;
    z-index: 1;
    width: 100%;
    justify-content: center;
    height: 670px;
    transition: all ease-in-out .9ms;
    gap: 3%;
}

main .carousel .carousel-inner .carousel-item .contenedor-slider .linea img {
    width: 100%;
    position: absolute;
    top: 69% !important;
    /* z-index: 2; */
}

footer .redes-2 .red i {
    display: none;
    font-size: 25px;
    color: #000000;
}

main .logo-main {
    margin-right: 4%;
    /* width: 50%; */
}

main .info-hero,
main .info-hero2 {
    box-shadow: 5px 6px 25px rgba(0, 0, 0, 0.2);
    height: 80px;
    background-color: rgb(255 255 255 / 80%);
    padding: 1rem 2rem;
    display: flex;
    position: absolute;
    flex-direction: column;
    align-items: center;
    border-radius: 13px;
    width: 160px;
    line-height: 1;
    gap: 5px;
}

main .info-hero span,
main .info-hero2 span {
    font-weight: 900;
    text-align: center;
}

main .info-hero p,
main .info-hero2 p {
    font-size: 12px;
    text-align: center;
}

main .infoh1-1 {
    top: 38%;
    right: 0;
}

main .infoh1-2 {
    top: 44% !important;
    left: 8% !important;
}

main .infoh1-3 {
    bottom: 30% !important;
    right: 0%;
}

/* si */

main .imagen-hero-2 {
    position: relative;
    /* Este contenedor será el punto de referencia para los elementos absolutos */
}

main .info-hero2 {
    position: absolute;
    /* Posiciona los elementos en relación con el contenedor padre */
    padding: 1rem 1rem;
    width: 130px;
}

main .infoh2-1 {
    top: 22%;
    left: 54px;
    height: 65px;
}

main .infoh2-2 {
    bottom: 28% !important;
    left: 73% !important;
}

main .infoh2-3 {
    bottom: 25% !important;
    left: 3% !important;
}

main .texto-main {
    display: flex;
    /* justify-content: center; */
    /* align-items: center; */
    font-weight: 700;
    flex-direction: column;
    /* margin-left: 4%; */
    margin-top: 9%;
}

main .texto-main-2 {
    display: flex;
    font-weight: 700;
    flex-direction: column;
    margin-right: 8%;
    margin-top: 7%;
}

main .texto-main-2 .texto-arriba {
    display: flex;
    font-weight: 700;
    font-size: 60px;
    line-height: 1;
}


main .texto-main-2 .plus {
    color: #005C60;
    font-weight: 600;
    font-size: 25px;
    margin-right: 3%;
}

main .texto-main-2 p {
    color: #020400;
    font-weight: 500;
    font-size: 20px;
}

main .texto-main-2 .estrena {
    font-weight: 500;
    font-size: 20px;
}

main .texto-main .texto-arriba {
    font-size: 51px;
    margin: 0;
    padding: 0;
    line-height: 0.9;
    display: block;
}

main .texto-main .texto-abajo {
    position: relative;
    margin-top: 4%;
}

main .texto-main .texto-abajo .cero {
    font-size: 120px;
    display: flex;
    line-height: 1;
}


main .texto-main .texto-abajo .desde {
    font-size: 15px;
    background: #FFFFFF;
    padding: 2px;
    position: absolute;
    left: 1.3%;
    bottom: 55%;
}

main .texto-main .texto-abajo .inicial {
    font-size: 26px;
    font-weight: 400;
}



main .logo-main .imagen-hero-2 .texto-arriba-2 {
    /* position: relative; */
    display: none;
    font-weight: 700;
    line-height: 50px;
    font-size: 47px;
    /* CAMBIO */
}

main .logo-main .imagen-hero-2 {
    /* position: relative; */
    margin-left: 8%;
}

.carousel-indicators {
    bottom: 13% !important;
    z-index: 9 !important;
}


.carousel-indicators button {
    background: #B4B4A9 !important;
    border-radius: 50%;
    border-top: 0px solid transparent !important;
    border-bottom: 1px solid transparent !important;
    width: 8px !important;
    height: 8px !important;
}

.linea-amarilla {
    width: 147px;
    height: 6px;
    background-color: #FFD200;
    border-radius: 2px;
    margin-top: -14px;
    margin-left: -45px;
    margin-bottom: 10px;
}

.linea_2 {
    position: absolute;
    top: 59%;
    z-index: 1;
}

img.linea_banner_2 {
    width: 100%;
}

span.texto_arriba2 {
    font-weight: 400;
    font-size: 61px;
    line-height: 1.1;
}

.texto_facil {
    font-size: 26px;
}

span.txt_abajo2 {
    font-size: 25px;
    font-weight: 300;
    line-height: 1px;
}


/*Linea verde del fondo*/

article {
    margin-top: 8%;
}

article .titulo-article {
    font-size: 46px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    color: #000000;
    margin-bottom: 3%;
}

/*Estilos para los sliders marcas*/

article .slider-marcas {
    width: 100%;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    margin: auto;
    max-width: 90%;
    /*margin-bottom: 100px;*/
}


article .slider .slide {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

article .slider-marcas .slider {
    display: flex;
    justify-content: space-around;
    gap: 54px;
    /*animation: scroll 13s linear infinite;*/
}

/* Carrusel marcas */
#carruselMarcas {
    width: 100%;
    margin: 0 auto;
    height: 51px;
}

#carruselMarcas .carousel-inner {
    width: 80%;
    margin: 0 auto;
}

#carruselMarcas .col-2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

#carruselMarcas .carousel-control-prev-icon,
#carruselMarcas .carousel-control-next-icon {
    filter: invert(88%) sepia(7%) saturate(146%) hue-rotate(212deg) brightness(95%) contrast(91%);
    width: 22px;
    /* Haz las flechas más grandes */
    height: 22px;
    /* Ajusta el tamaño de las flechas */
    align-self: center;
}

/* estilos de acerca de  */

.contenedor-servicios {
    background: #FFCD00;
    height: 100%;
    position: relative;
}

/* .contenedor-servicios{
    display: flex;
    align-items: center;
    justify-content: center;
} */

.contenedor-servicios .contenedor {
    padding: 4%;
    display: flex;
    z-index: 1;
    position: relative;
    justify-content: space-around;
}

.contenedor-servicios .quieres-vender {
    width: 50%;
    position: relative;
}

.contenedor-servicios .contenedor .form {
    padding-bottom: 26px;
}

.contenedor-servicios .quieres-vender .titulo-section {
    font-weight: 700;
    font-size: 48px;
    max-width: 568px;
    color: #020400;
    text-align: center;
}

.contenedor-servicios .quieres-vender .titulo-section p {
    line-height: 31px !important;
    text-align: left;
    font-size: 35px;
}


.contenedor-servicios .quieres-vender .beneficios .subtitulo {
    font-weight: 500;
    font-size: 18px;
    max-width: 463px;
    color: #020400;
    line-height: 20px;
    margin-bottom: 30px !important;
}

.contenedor-servicios .quieres-vender .beneficios .plus {
    color: #005C60;
    font-weight: 600;
    font-size: 25px;
    margin-right: 5px;
}

.contenedor-servicios .quieres-vender .beneficios p {
    font-weight: 500;
    font-size: 18px;
    max-width: 463px;
    color: #020400;
    margin-bottom: inherit;
    display: flex;
    align-items: center;

}

.contenedor-servicios .quieres-vender .estas-listo {
    display: flex;
    padding: 20px;
    justify-content: start;
    align-items: center;
}

.contenedor-servicios .quieres-vender .estas-listo p {
    font-weight: 600;
    font-size: 18px;
    max-width: 402px;
    margin-bottom: inherit;
    color: #020400;
}

.contenedor-servicios .contenedor .form form {
    width: 514px;
    border: 1px solid #CFA123;
    align-self: center;
    background: #FFCD00;
    border-radius: 18px;
    padding: 50px
}

.contenedor-servicios .contenedor .form form legend {
    font-size: 34px;
    font-weight: 700;
    line-height: 30px;
    max-width: 470px;
    text-align: center;
}


.contenedor-servicios .contenedor .form form .btn-formulario {
    width: 145px;
    height: 42px;
    border: none;
    border-radius: 50px;
    float: right;
    align-self: center;
    border-radius: 18px;
    background: #005C60;
    color: #FFFFFF;
}

.contenedor-servicios .contenedor .form form label {
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
}

.contenedor-servicios .fondo img {
    position: absolute;
    right: 0;
    top: -28%;
}

.contenedor-servicios .contenedor .form form input {
    padding: 10px;
    padding-left: 23px;
}

/* TODO:descomentar despiues .contenedor-servicios .contenedor .form form input::placeholder{
    padding-left: 12px;
} */

/* estilos para el section de medios de pago */

.medios-pago {
    background: #EBF7F7;
    width: 100%;
    height: 674px;
    position: relative;
}

.medios-pago::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(./images/background-footer.png);
    background-size: cover;
    background-position: bottom;
    z-index: 1;
    height: auto;
    width: 100%;
}

.medios-pago .contenedor {
    display: flex;
    justify-content: space-around;
    padding-top: 46px;
}

.medios-pago .contenedor .contenido {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    text-align: left;
}

.medios-pago .contenedor .contenido .titulo {
    max-width: 573px;
    font-size: 55px;
    font-weight: 700;
    line-height: 56px;
    margin-bottom: 6%;
    text-align: left;
}


.medios-pago .contenedor .contenido .parrafo {
    max-width: 316px;
    line-height: 20px;
    font-size: 18px;
    font-weight: 400;
}

.medios-pago .fondo img {
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 2;
}

/* estilo para las tarjetas */
.medios-pago .contenedor .tarjetas {
    width: 30%;
    position: relative;
    z-index: 3;
}

.tituloPago {
    width: 100%;
    display: flex;
    justify-content: center;
}

.medios-pago .contenedor .tarjetas .efectivo .titulo,
.medios-pago .contenedor .tarjetas .pagos-enlinea .titulo {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
}

.medios-pago .contenedor .tarjetas .efectivo {
    margin-bottom: 10px;
}

.medios-pago .contenedor .tarjetas .efectivo .contenedor-tarjeta {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.medios-pago .contenedor .tarjetas .efectivo .contenedor-tarjeta .tarjeta {
    background: #FFFFFF;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding: 24px;
    align-items: center;
    flex-direction: column;
    width: 162px;
    height: 187px;
}

.medios-pago .contenedor .tarjetas .efectivo .contenedor-tarjeta .tarjeta .logo img {
    width: 126px;
    height: 65px;
    object-fit: cover !important;
    margin-bottom: 10px;
}

.medios-pago .contenedor .tarjetas .efectivo .contenedor-tarjeta .tarjeta .logo .contain {
    width: 126px;
    height: 65px;
    object-fit: contain !important;
    margin-bottom: 10px;
}

.medios-pago .contenedor .tarjetas .efectivo .contenedor-tarjeta .tarjeta .datos {
    background: #EBF7F7;
    border-radius: 8px;
    line-height: 14px;
    font-size: 12px;
    text-align: center;
    padding: 10px;
    margin-bottom: 10px;
}

.medios-pago .contenedor .tarjetas .pagos-enlinea .contenedor-tarjeta {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.medios-pago .contenedor .tarjetas .pagos-enlinea .contenedor-tarjeta .tarjeta {
    background: #FFFFFF;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding: 24px;
    align-items: center;
    flex-direction: column;
    width: 162px;
    height: 270px;
}

.medios-pago .contenedor .tarjetas .pagos-enlinea .contenedor-tarjeta .tarjeta .logo img {
    width: 120px;
    height: 65px;
    object-fit: cover;
    margin-bottom: 10px;
}

.medios-pago .contenedor .tarjetas .pagos-enlinea .contenedor-tarjeta .tarjeta .datos {
    background: #EBF7F7;
    border-radius: 8px;
    line-height: 14px;
    font-size: 12px;
    text-align: center;
    padding: 10px;
    margin-bottom: 10px;
}

.medios-pago .contenedor .tarjetas .pagos-enlinea .contenedor-tarjeta .tarjeta span {
    line-height: 15px;
    text-align: center;
    font-size: 12px;
    margin-bottom: 10px;
}

.medios-pago .contenedor .tarjetas .pagos-enlinea .contenedor-tarjeta .tarjeta .boton a {
    border: none;
    border-radius: 20px;
    color: #000000;
    width: 98px;
    list-style: none;
    height: 31px;
    cursor: pointer;
    padding: 8px;
    font-size: 12px;
    background: #FFCD00;
    text-decoration: none;
    transition: all ease-in-out .8ms;
}

.medios-pago .contenedor .tarjetas .pagos-enlinea .contenedor-tarjeta .tarjeta .boton a:hover {
    background: #CFA123;
}

.contactanos {
    width: 100%;
    text-align: center;
    margin-top: 5%;
    padding: 11px;
}

.contactanos .titulo {
    line-height: 25px;
}

.contactanos .titulo p {
    margin-bottom: inherit;
    font-size: 43px;
    font-weight: 700;
}

.contactanos .titulo span {
    margin-bottom: inherit;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5%;

}

.contactanos .informacion {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5%;
    margin-top: 5%;
}

.contactanos .informacion .info .icon {
    background: #005C60;
    border-radius: 50%;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
}

.contactanos .informacion .info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    width: 250px;
    max-width: 300px;
}


.contactanos .informacion .info .icon i {
    color: white;
    font-size: 40px;
    align-self: center;
}

.contactanos .informacion .info .contacto {
    font-size: 16px;
    font-weight: 500;
}


/* preguntas frecuentes estilos */

.preguntas-frecuentes {
    background-size: cover;
    position: relative;
    background: #EBF7F7;
    z-index: 1;
}

.background-top {
    margin-top: 5%;
    background-image: url('./images/top-background.png');
    background-size: cover;
    height: 235px;
}

.background-trabaja-nosotros {
    /* background-image: url('./images/background-trabaja-nosotros.png'); */
    background-size: cover;
    height: 235px;
}

.background-bottom {
    background-image: url('./images/background-footer.png');
    background-size: cover;
    height: 170px;
    position: relative;
    z-index: 2;
    background-color: #FFCD00;
}


.background-bottom-2 {
    background-image: url('./images/background-footer2.png');
    background-size: cover;
    height: 128px;
    position: relative;
    z-index: 2;
    background-color: #FFCD00;
}


.preguntas-frecuentes .titulo {
    font-size: 60px;
    font-weight: 700;
    text-align: center;
    z-index: 2;
    position: relative;
    white-space: pre-line;
    line-height: 60px;
}

.preguntas-frecuentes .preguntas {
    margin-top: 1%;
    padding: 3% 10% 0 10%;
}

.accordion-item .accordion-header .accordion-button {
    background: #EBF7F7;
    border: 1px solid #EBF7F7;
}


.background-footer {
    background-size: cover;
    height: 250px;

}

/* ESTILOS PARA EL FOOTER */
footer {
    background-color: #FFCD00;
    position: relative;
}

footer .contenedor {
    display: flex;
    padding-bottom: 4%;
}

footer .contenedor .barra-navegacion {
    max-width: 90%;
}

footer .logo {
    width: 172px;
    height: 90px;
    object-fit: contain;
    padding-left: 2%;
}

footer .contenedor .redes {
    width: 10%;
    width: 10%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-left: 37px;
    gap: 8px;
}

.cont-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

footer .contenedor .redes .red {
    gap: 10px;
    display: flex;
    padding: 2px;
}

footer .contenedor .redes .red i {
    font-size: 25px;
    color: #000000;
}

footer .barra-navegacion {
    /* align-self: center;
    margin-right: 50px;
    margin-top: 8px; */
    width: 100%;
}

header .menu-hamburguesa,
.menu-hamburguesa-salir {
    display: none;
    padding-right: 5%;
    background: none;
    border: none;
    font-size: 24px;
    color: #050505;
    cursor: pointer;
}

header .menu-hamburguesa-salir {
    display: none;
    padding-right: 5%;
    background: none;
    border: none;
    z-index: 10;
    font-size: 24px;
    color: #050505;
    cursor: pointer;
}

.barra-navegacion.mostrar {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: -8px;
    right: -50px;
    background-color: #EBF7F7;
    width: 100%;
    height: 100%;
    padding: 10px;
    z-index: 11;
    overflow: hidden;
}

.barra-navegacion.mostrar ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 30%;
}

.barra-navegacion.mostrar ul li {
    font-size: 20px;

}

.barra-navegacion.mostrar ul li:hover {
    color: #005C60;
}

footer .barra-navegacion ul {
    display: flex;
    justify-content: flex-end;
    gap: 50px;
    margin: 0;
    padding: 0;
}

footer .barra-navegacion div a {
    list-style: none;
    font-size: 14px;
    color: #3F3F3D;
    cursor: pointer;
    transition: all ease-in-out .9ms;
}

footer .barra-navegacion div a {
    list-style: none;
    text-decoration: none;
}

footer .barra-navegacion ul li:active,
footer .barra-navegacion ul li:hover,
footer .barra-navegacion ul li:focus {
    color: #005C60;
    font-weight: bold;
}


/* estilso para el modal */
.contenedor-modal {
    position: relative;
    width: 100%;
    padding: 2rem 1rem;
    min-width: 350px;
    justify-self: center;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 0.5rem;
    background-color: #fff;
    border-radius: 20px;
}

.contenedor-modal #botonModal {
    background: #FFCD00;
    border: none;
    width: 72px;
    padding: 5px;
    border-radius: 25px;
}

.contenedor-modal .titulo {
    font-size: 22px;
    /* Ligeramente más pequeño para ahorrar espacio */
    font-weight: 800;
    color: #005C60;
    text-align: center;
    width: 100%;
    margin-bottom: 0.5rem;
}



.contenedor-modal .info {
    font-size: 18px;
    padding: 4px;
    line-height: 22px;
    text-align: left;
    /* padding-bottom: 20px; */
}

.parrafo {
    font-size: 14px;
}

.contenedor-modal .info .parrafo {
    font-size: 14px;
}

.modal-content .contenedor .icon {
    padding-bottom: 30px;
}

.modal-content .contenedor .icon img {
    width: 80px;
}

.modal-content .contenedor .titulo {
    font-size: 22px;
    font-weight: 500;
    color: #000000;
    padding-bottom: 10px;
}

.modal-content .contenedor .info {
    font-size: 18px;
    padding: 10px;
    line-height: 22px;
    text-align: center;
    padding-bottom: 20px;
}

.modal-content .contenedor .info a {
    color: #005C60;
}

.modal-content .contenedor .button button {
    background: #FFCD00;
    border: none;
    width: 72px;
    padding: 5px;
    border-radius: 25px;
}

/* Estilos para el modal de premios */
.modal-premio-img {
    width: 100%;
    max-width: 500px; /* Incrementado de 320px */
    height: auto;
    border-radius: 15px;
    margin: 0 auto 10px auto; /* Centrado */
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.modal-premio-titulo {
    text-align: center;
    color: #005C60 !important;
    font-weight: 800 !important;
    font-size: 24px !important;
    line-height: 1.1 !important;
    margin-bottom: 15px !important;
}

/* 
  REGLA APLICADA: Estilos en español para la descripción del modal de términos, condiciones y políticas.
  Se encierra la descripción en un cuadro contenedor con fondo (#ebf7f7) y bordes redondeados (16px),
  igualando el diseño del modal de soporte técnico (segunda imagen) para brindar consistencia visual.
*/
.descripcion-modal-terminos {
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    color: #002e30; /* Un color oscuro y legible sobre el fondo claro */
    background-color: #ebf7f7; /* Fondo del cuadro igual al de soporte técnico */
    border-radius: 16px; /* Bordes redondeados consistentes */
    max-width: 650px; /* Ancho máximo adaptado para el texto */
    margin: 1rem auto 2.5rem auto; /* Márgenes superior e inferior */
    padding: 1.2rem 1.5rem; /* Relleno interno para que el texto respire */
    box-shadow: inset 0 0 0 1px rgba(0, 92, 96, 0.05); /* Sombra interna muy sutil */
}

.modal-premio-info {
    text-align: center;
    padding: 0 15px !important;
}

.modal-premio-subtitulo {
    margin-bottom: 15px !important;
    font-weight: 600;
    font-size: 16px !important;
    color: #444;
    display: block;
}

.modal-premio-texto {
    margin-bottom: 20px !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
    color: #333;
}

.modal-premio-italic {
    font-weight: 600;
    font-style: italic;
    color: #005C60;
    font-size: 14px !important;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-bottom: 0 !important;
}

.modal-premio-hashtag {
    margin-top: 15px !important;
    color: #000;
    font-weight: 700;
    background: #ffcd00;
    display: inline-block;
    padding: 4px 15px;
    border-radius: 50px;
    font-size: 11px !important;
    letter-spacing: 0.5px;
}

.modal-premio-boton {
    background: #005C60 !important;
    color: white !important;
    border: none !important;
    padding: 10px 30px !important;
    border-radius: 25px !important;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    width: auto !important;
    height: auto !important;
}

.modal-premio-boton:hover {
    background: #004649 !important;
}

.no-mostrar-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.no-mostrar-container input[type="checkbox"] {
    cursor: pointer;
    width: 16px;
    height: 16px;
    accent-color: #005C60;
}

.no-mostrar-container label {
    cursor: pointer;
    user-select: none;
}

/* TIMELINE STYLES - REFINADO PARA VISUALIZACIÓN COMPLETA */
.timeline-container {
    padding: 3.5rem 1.5rem 3rem 1.5rem;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    justify-content: flex-start !important;
    background-color: #fff;
    border-radius: 20px; /* Asegura el mismo border-radius en el contenedor interno */
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 92, 96, 0.3) transparent; /* Soporte estándar para Firefox con track transparente */
}

/* 
  REGLA APLICADA: Personalización minimalista y formal de la barra de desplazamiento (scrollbar).
  Se utiliza un track transparente para integrarse discretamente sobre el fondo blanco, 
  y un thumb translúcido con los tonos de la marca que flota de forma elegante a la derecha.
*/
.timeline-container::-webkit-scrollbar {
    width: 6px; /* Ancho reducido para mayor sofisticación y sutileza */
}

.timeline-container::-webkit-scrollbar-track {
    background: transparent; /* Fondo transparente para evitar cortes toscos con el border-radius */
}

.timeline-container::-webkit-scrollbar-thumb {
    background-color: rgba(0, 92, 96, 0.35); /* Tono institucional translúcido formal */
    border-radius: 10px;
}

.timeline-container::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 92, 96, 0.65); /* Mayor visibilidad al hacer hover */
}

.timeline {
    position: relative;
    max-width: 700px;
    /* Reducido de 850px */
    margin: 0 auto;
    padding: 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15%;
    top: 0;
    width: 2px;
    height: 100%;
    background: #e0e0e0;
    z-index: 1;
}

.timeline-item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 4rem;
    /* Espacio elegante entre puntos */
    margin-bottom: 0;
    z-index: 2;
}

.timeline-item.principal {
    margin-top: 1rem;
    /* Pegado al título para mejor visibilidad inicial */
    margin-bottom: 3rem;
}

/* Punto en la línea */
.timeline-dot {
    position: absolute;
    left: 15%;
    top: 15px;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    background: #fff;
    border: 3px solid #FFCD00;
    border-radius: 50%;
    z-index: 3;
}

/* La fecha y el año a la izquierda (ahora con menos espacio para dar prioridad al contenido) */
.timeline-date-side {
    width: 15%;
    text-align: right;
    padding-right: 25px;
    padding-top: 5px;
}

.timeline-year {
    display: block;
    font-size: 1.3rem;
    /* Reducido de 1.8rem */
    font-weight: 900;
    color: #333;
    line-height: 1;
}

.timeline-month {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
}

/* Contenido a la derecha */
.timeline-content-side {
    width: 85%;
    padding-left: 20px;
    padding-right: 110px;
    /* Reducido para ajustarse a las imágenes más pequeñas */
    position: relative;
}

.timeline-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: #FFCD00;
    margin-bottom: 5px;
    letter-spacing: 1.5px;
}

.timeline-heading {
    font-size: 1.1rem;
    /* Reducido de 1.3rem */
    font-weight: 800;
    color: #005C60;
    margin-bottom: 5px;
    line-height: 1.2;
}

.timeline-description {
    font-size: 0.85rem;
    /* Reducido de 0.95rem */
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/* Blobs de imagen - Reducidos para ahorrar espacio */
.timeline-blob-container {
    position: absolute;
    right: 0px;
    top: -5px;
    width: 70px;
    height: 70px;
    z-index: 1;
}

.timeline-blob {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 3px solid #fff;
    transition: all 0.5s ease;
}

.timeline-item:nth-child(even) .timeline-blob {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

/* Removed .timeline-item.principal .timeline-blob to allow white border inheritance */

.timeline-item.principal .timeline-blob-container {
    width: 90px;
    height: 90px;
    right: -10px;
}

.timeline-blob-bg {
    position: absolute;
    width: 110%;
    height: 110%;
    top: -5%;
    left: -5%;
    background: #FFCD00;
    opacity: 0.15;
    z-index: -1;
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
}

.btn-scroll-top {
    display: none !important;
    /* Oculto por defecto en pantallas grandes */
}

/* RESPONSIVE REFINADO */
@media (max-width: 992px) {
    .timeline-content-side {
        padding-right: 20px;
        /* Quitamos espacio lateral para el blob */
    }

    .timeline-blob-container {
        position: relative;
        right: 0;
        top: 10px;
        width: 100px;
        height: 100px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .timeline-item.principal .timeline-blob-container {
        width: 120px;
        height: 120px;
    }

    .btn-scroll-top {
        display: inline-flex !important;
        /* Visible en 992px o menos */
    }
}

/* ESTILOS DE TÉRMINOS Y CONDICIONES (REGLA APLICADA: Comentarios explicativos en español y colores de marca) */
.terminos-blob {
    display: flex !important;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #FFCD00 0%, #FFA500 100%);
    color: #005C60 !important;
    font-size: 1.6rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.terminos-blob:hover {
    transform: scale(1.15) rotate(8deg);
    background: linear-gradient(135deg, #005C60 0%, #003B3E 100%);
    color: #FFCD00 !important;
    box-shadow: 0 12px 20px rgba(0, 92, 96, 0.25);
}

.terminos-blob i {
    transition: transform 0.3s ease;
}

.terminos-blob:hover i {
    transform: scale(1.1);
}

/* Ajustes de scroll interno para el modal de términos en móviles */
#modalTerminos .timeline-container {
    padding-top: 2rem;
}

/* Oculta la línea vertical del timeline en el modal de términos */
#modalTerminos .timeline::before {
    display: none;
}

/* Espaciado uniforme entre ítems */
#modalTerminos .terminos-item {
    margin-top: 2rem;
}

/* Contenido a ancho completo sin columna izquierda */
#modalTerminos .terminos-content {
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 110px !important;
}

/* Todos los blobs del modal de términos con el mismo tamaño (70x70) */
#modalTerminos .timeline-blob-container,
#modalTerminos .timeline-item.principal .timeline-blob-container {
    width: 70px !important;
    height: 70px !important;
    right: 0px !important;
    top: 0px !important;
    position: absolute !important;
}

/* Ícono PDF compacto y uniforme */
#modalTerminos .terminos-blob {
    font-size: 1.4rem !important;
    flex-direction: column !important;
}

#modalTerminos .terminos-blob i {
    font-size: 1.4rem !important;
}

/* Estructura interna: ícono + texto PDF en columna centrada */
.contenedor-icono-doc {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: inherit;
}

.contenedor-icono-doc i {
    font-size: 1.1rem;
    line-height: 1;
}

/* Etiqueta de tipo de documento (PDF) */
.etiqueta-tipo-doc {
    font-size: 0.45rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1;
    color: inherit;
}

@media (max-width: 992px) {
    #modalTerminos .terminos-content {
        padding-right: 0 !important;
    }

    /* En móvil, los blobs pasan a posición relativa */
    #modalTerminos .timeline-blob-container,
    #modalTerminos .timeline-item.principal .timeline-blob-container {
        position: relative !important;
        right: 0 !important;
        top: 10px !important;
        margin-top: 10px !important;
    }
}



.modal {
    border: none;
}

.modal-backdrop {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 92, 96, 40) !important;
    /* Cambia este valor al color que prefieras */
}

/* estilos para el modal de sweetalert2  */
.swal-popup {
    border-radius: 20px !important;
    /* Redondear más el modal */
}

/* Cambiar el color del botón */
.swal-btn {
    background-color: #FFCD00 !important;
    border: none !important;
    color: rgb(65, 63, 63) !important;
    border-radius: 10px !important;
    padding: 10px 20px !important;
    font-size: 16px !important;
}

.swal-btn:hover {
    background-color: #e0b800 !important;
}

.modal-content {
    border-radius: 20px !important;
    border: none !important;
    overflow: hidden !important; /* Recorta el desbordamiento de las esquinas redondeadas */
}

.bar-navegacion {
    width: 100%;
}

.bar-navegacion ul {
    list-style: none;
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    padding-right: 1%;
}

.bar-navegacion ul li a {
    text-decoration: none;
    color: #000;
}

.plus {
    color: #005C60;
    font-weight: 600;
    font-size: 22px;
    margin-right: 2%;
}

main .infoh1-1 {
    top: 31% !important;
    left: 86% !important;


}

.texto_facil_2 {
    display: none;
}

/* Breakpoints */


@media (min-width: 1601px) and (max-width: 1980px) {
    main .infoh2-1 {
        top: 14%;
        left: 2%;
    }

    .trabaja-con-nosotros .titulo {
        font-size: 31px !important;
    }


    main .infoh2-2 {
        bottom: 35%;
        left: 416px;
    }

    main .infoh2-3 {
        bottom: 20%;
        left: 12%;
    }

    main .carousel .carousel-inner .carousel-item .contenedor-slider .linea img {
        top: 54%;
    }

    .contenedor-servicios .quieres-vender .beneficios .subtitulo {
        margin: 30px 0;
    }

    .contenedor-servicios .quieres-vender .beneficios p {
        max-width: 100%;
        margin-bottom: auto;
    }

    main .texto-main-2 .texto-arriba {
        margin-bottom: 1rem;
        color: #005C60;
    }

    .medios-pago::after {
        height: 250px;
        bottom: -15%;
    }

    img.santa_mano {
        width: 85%;
        margin-left: 9%;
        margin-bottom: 25%;
        margin-top: 5%;
    }

    main .infoh1-2 {
        top: 42%;
        left: 0%;
    }

    main .infoh1-3 {
        bottom: 19%;
        right: 14%;

    }

    main .infoh1-1 {
        top: 14% !important;
        left: 74% !important;
    }

    .linea_2 {
        position: absolute;
        top: 61%;
        z-index: 0;
    }


    img.santa {
        width: 82%;
        margin-left: 9%;
        margin-bottom: 23%;
        margin-top: 7px;
    }

    .carousel-indicators {
        margin-bottom: 1rem;
    }
}


@media (max-width: 1600px) {
    main .infoh2-1 {
        top: 17%;
        left: 78px;
    }

    main .infoh2-2 {
        bottom: 35%;
        left: 416px;
    }

    main .infoh2-3 {
        bottom: 19%;
        left: 10%;
    }

    main .carousel .carousel-inner .carousel-item .contenedor-slider {
        height: auto;
    }

    main .logo-main {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    main .texto-main-2 .texto-arriba {
        margin-bottom: 1rem;
        color: #005C60;
    }

    .contenedor-servicios .contenedor .form form label {
        margin: 1rem 0;
    }

    .medios-pago::after {
        height: 200px;
        bottom: -11%;
    }

    img.santa_mano {
        width: 85%;
        margin-left: 9%;
        margin-bottom: 19%;
        margin-top: 0%;
    }

    main .infoh1-1 {
        top: 8% !important;
        left: 73% !important;
    }

    main .infoh1-3 {
        bottom: 26% !important;
        right: 12%;
    }

    main .infoh1-2 {
        top: 39% !important;
        left: 4% !important;
    }

    .linea_2 {
        position: absolute;
        top: 66%;
        z-index: 0;
    }

    img.santa {
        width: 72%;
        margin-left: 9%;
        margin-bottom: 26%;
        margin-top: 80px;
    }


}




@media (min-width: 1335px) and (max-width: 1599px) {
    main .carousel .carousel-inner .carousel-item .contenedor-slider .linea img {
        top: 64%;
    }

    main .texto-main {
        display: flex;
        font-weight: 700;
        flex-direction: column;
        margin-left: 4%;
        margin-top: 9%;
        width: 37%;
    }

    .carousel-indicators {
        margin-bottom: 3rem;
    }

    main .texto-main .texto-abajo .inicial {
        font-size: 20px;
        font-weight: 400;
    }

    span.txt_abajo2 {
        font-size: 20px;
    }

}


@media(min-width:1560px) {
    .background-bottom-2 {
        background-image: url('./images/background-footer2.png');
        background-size: cover;
        height: 211px;
        position: relative;
        z-index: 2;
        background-color: #FFCD00;
    }

}


@media (max-width: 1336px) {

    main .infoh2-1 {
        top: 17%;
        left: 47px;
    }

    main .infoh2-2 {
        bottom: 35%;
        left: 68% !important;

    }

    main .infoh2-3 {
        bottom: 27%;
        left: 8%;
    }

    main .logo-main {
        margin-right: 4%;
        width: 50% !important;
    }

    main .carousel .carousel-inner .carousel-item .contenedor-slider {
        max-width: 1980px;
    }

    main .texto-main-2 {
        margin-right: 2%;
    }

    .contenedor-servicios .contenedor .form form label {
        margin: 1rem 0;
    }

    main .carousel .carousel-inner .carousel-item .contenedor-slider .linea img {
        top: 70%;
    }

    .medios-pago::after {
        height: 180px;
        bottom: -9%;
    }

    main .infoh1-1 {
        top: 18%;
        right: -13%;
    }

    .texto-abajo .inicial {
        font-size: 21px !important;
        font-weight: 400;
    }

    span.txt_abajo2 {
        font-size: 21px;
    }




}


@media(max-width:1185px) {
    main .info-hero2 {
        padding: 1rem 1rem;
        width: 130px;
    }

    main .infoh2-1 {
        top: 17%;
        left: 41px;
    }

    main .infoh2-2 {
        bottom: 35%;
        left: 303px !important
            /* left: 415px !important; */
    }

    main .infoh2-3 {
        bottom: 27%;
        left: 3%;
    }

    .contenedor-servicios .contenedor .form form label {
        margin: 1rem 0;
    }

    main .logo-main .imagen-hero-2 img {
        width: 394px;
        margin-bottom: 44%;
        margin-left: 1%;
    }


    main .texto-main-2 .texto-arriba {
        line-height: 1.1;
        text-align: center;
    }

    main .texto-main-2 {
        margin-right: 1% !important;
        margin-top: 10%;
    }

    main .texto-main-2 .texto-abajo-2 {
        line-height: 1.1;
    }

    .medios-pago::after {
        height: 160px;
        bottom: -7%;
    }

    main .infoh2-1 {
        top: 17%;
        left: -3px !important;
    }

    main .infoh2-2 {
        bottom: 25%;
        left: 416px;
    }

    main .infoh2-3 {
        bottom: 25%;
        left: -1%;
    }
}


@media (min-width: 1000px) and (max-width: 1184px) {
    main .infoh2-2 {
        bottom: 35%;
        left: 306px !important;
    }

    main .texto-main .texto-abajo .inicial {
        font-size: 18px !important;
        font-weight: 400;
    }

    main .texto-main {
        /* margin-top: 16%; */
    }

    main .logo-main .imagen-hero img {
        margin-right: 93px;
        width: 96%;
    }

    main .infoh1-1 {
        top: 6% !important;
        left: 76% !important;
        right: 10px;

    }

    main .infoh1-2 {
        top: 31%;
        left: 0%;
    }

    .texto-abajo .inicial {
        font-size: 21px !important;
        font-weight: 400;
    }

    span.txt_abajo2 {
        font-size: 18px;
    }




}



@media (max-width: 1000px) {
    #formularioUs {
        grid-template-columns: 1fr;
        grid-template-areas:
            "left"
            "right"
            "suboton"
            "boton";
        gap: 0px;

    }

    .medios-pago .contenedor .contenido .titulo {

        font-size: 44px;

    }

    .contenedor-servicios .quieres-vender .titulo-section p {
        font-size: 31px;
        line-height: 48px;
        margin-top: 5px;
    }

    .trabaja-con-nosotros .titulo {
        font-size: 43px;
        text-align: center;

    }

    .bar-navegacion ul li {
        flex: 1 1 45%;
        text-align: center;
    }


    .form-right {
        flex-direction: row;

    }

    .form-right p {
        display: none;
    }

    .form-right {
        margin-bottom: 10px;
        min-height: 50px;
        justify-content: center;
    }

    .suboton {
        display: flex;
        font-size: 12px;
        color: #006d65;
    }

    main .infoh1-1 {
        top: 0% !important;
        left: 65% !important;

    }

    main .infoh1-3 {
        bottom: 20%;
        right: 0%;
    }

    main .infoh1-2 {
        top: 29%;
        left: 0%;
    }

    main .texto-main .texto-abajo .inicial {
        font-size: 18px !important;
        font-weight: 400;
    }

    span.txt_abajo2 {
        font-size: 18px;
    }

    main .carousel .carousel-inner .carousel-item .contenedor-slider .contenedor {

        gap: 0%;
    }

}


@media (min-width: 769px) and (max-width: 999px) {
    main .infoh2-2 {
        bottom: 35%;
        left: 299px !important;
    }

    main .infoh2-1 {
        top: 13%;
        left: 52px;
    }

    /* main .infoh2-2{
        bottom: 35%;
        left: 360px;
    } */

    main .infoh2-3 {
        bottom: 18%;
        left: 3%;
    }

    /* logo header */
    header .logo-header {
        width: 50%;
        align-self: center;
        margin-left: 20px;
    }

    .carousel-indicators {
        top: 85%;
    }

    /* OCultar barra navegacion */
    main .texto-main .texto-arriba {
        font-size: 39px;
    }

    span.texto_arriba2 {
        font-weight: 500;
        font-size: 44px;
    }



    main .texto-main .texto-abajo {
        position: relative;
    }

    main .texto-main .texto-abajo .cero {
        font-size: 100px;
        display: flex;
        line-height: 1;
    }

    main .texto-main .texto-abajo .desde {
        font-size: 12px;
        background: #FFFFFF;
        padding: 2px;
        position: absolute;
        left: 1.6%;
        bottom: 58%;
    }

    main .texto-main .texto-abajo .inicial {
        font-size: 26px;
    }

    .linea-amarilla {
        width: 137px;
    }

    main .texto-main {
        margin-top: 20%;
        margin-left: 5%;
        width: 46%;
    }

    /* PUEDE SERVIR PARA ALGO, A MI NO ME SIRVIO PARA NADA :v
    main .logo-main .imagen-hero {
        margin-right: 40%;
    } */

    main .carousel .carousel-inner .carousel-item .contenedor-slider .contenedor {
        /* gap: 5%; */
    }

    main .carousel .carousel-inner .carousel-item .contenedor-slider .linea img {
        top: 77%;
    }

    main .texto-main-2 .texto-abajo-2 {
        display: block !important;
        justify-content: normal;
        /* Resetear a valor predeterminado */
        align-items: normal;
        flex-direction: row;
        /* Resetear dirección a predeterminado */
        line-height: normal;
        /* Resetear line-height */
    }

    main .texto-main-2 {
        margin-left: 4%;
        margin-top: 17%;
    }

    main .texto-main-2 .texto-arriba {
        display: flex;
        font-weight: 700;
        line-height: 50px;
        font-size: 50px;
        margin-bottom: 2%;
    }

    main .texto-main-2 .plus {
        color: #005C60;
        font-weight: 600;
        font-size: 22px;
        margin-right: 2%;
    }

    main .texto-main-2 p {
        color: #020400;
        font-weight: 500;
        font-size: 16px;
    }

    main .texto-main-2 .estrena {
        font-weight: 500;
        font-size: 18px;
    }

    /* marcas que financiamos */
    article {
        margin-top: 0%;
        margin-bottom: 16%;
        width: 100%;
        height: 100px;
    }

    .contenedor-servicios .quieres-vender .beneficios .subtitulo {
        font-weight: 500;
        font-size: 18px;
        max-width: 601px;
        font-size: 16px;
        line-height: 20px;
        margin-bottom: inherit;
    }

    .contenedor .quieres-vender .beneficios .contPreguntas {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .contenedor-servicios .quieres-vender .titulo-section p {
        font-size: 50px;

    }

    /* .contenedor-servicios .quieres-vender .estas-listo p {
        font-size: 16px;
        text-align: center;
        position: relative;
        left: 25%;
    } */

    .contenedor-servicios .quieres-vender .beneficios p {
        max-width: 760px;
        font-size: 16px;
    }

    /* estilos para el apartado de quieres vender con nosotros en media querys */
    .contenedor-servicios .contenedor {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: #FFCD00;
    }

    .contenedor-servicios .quieres-vender {
        width: 100%;
        justify-content: center;
        /* margin: 10% 0 0 0; */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }


    .contenedor-servicios .contenedor .form form {
        padding-bottom: 20px;
    }

    /* 
    .contenedor-servicios .quieres-vender .estas-listo {
        position: relative;
        top: %;
        left: 2%;
    } */


    /* medios de pago */

    .medios-pago {
        background: #EBF7F7;
        width: 100%;
        height: 904px;
    }

    .medios-pago::after {
        height: 130px;
        bottom: -5%;
    }

    .medios-pago .contenedor {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 46px;
        /* margin-top: 60%; */
    }

    .medios-pago .contenedor .contenido {
        align-self: center;
    }

    .medios-pago .contenedor .contenido .titulo {
        max-width: 438px;
        font-size: 46px;
        text-align: center;
        font-weight: 700;
        line-height: 55px;
        margin-bottom: 6%;
    }

    .medios-pago .contenedor .contenido .parrafo {
        max-width: 559px;
        line-height: 20px;
        font-size: 18px;
        font-weight: 400;
    }

    .medios-pago .fondo img {
        width: 100%;
        position: absolute;
        bottom: 0;
    }

    /* estilo para las tarjetas */
    .medios-pago .contenedor .tarjetas {
        width: 50%;
    }

    .medios-pago .contenedor .tarjetas .efectivo .titulo,
    .medios-pago .contenedor .tarjetas .pagos-enlinea .titulo {
        font-weight: 600;
        font-size: 20px;
        max-width: 200px;
        text-align: center;
        margin-bottom: 10px;
    }

    .medios-pago .contenedor .tarjetas .efectivo {
        margin-bottom: 10px;
        margin-top: 20px;
    }

    .medios-pago .contenedor .tarjetas .efectivo .contenedor-tarjeta {
        display: flex;
        justify-content: space-between;
    }

    .medios-pago .contenedor .tarjetas .efectivo .contenedor-tarjeta .tarjeta {
        background: #FFFFFF;
        border-radius: 12px;
        display: flex;
        justify-content: center;
        padding: 10px;
        align-items: center;
        flex-direction: column;
        width: 170px;
        height: 187px;
    }

    .medios-pago .contenedor .tarjetas .efectivo .contenedor-tarjeta .tarjeta .logo img {
        width: 126px;
        height: 65px;
        object-fit: contain;
        margin-bottom: 10px;
    }

    .medios-pago .contenedor .tarjetas .efectivo .contenedor-tarjeta .tarjeta .datos {
        background: #EBF7F7;
        border-radius: 8px;
        line-height: 14px;
        font-size: 12px;
        text-align: center;
        padding: 10px;
        margin-bottom: 10px;
    }

    .medios-pago .contenedor .tarjetas .pagos-enlinea .contenedor-tarjeta {
        display: flex;
        gap: 20px;
        justify-content: space-between;
    }

    .medios-pago .contenedor .tarjetas .pagos-enlinea .contenedor-tarjeta .tarjeta {
        background: #FFFFFF;
        border-radius: 12px;
        display: flex;
        justify-content: center;
        padding: 10px;
        align-items: center;
        flex-direction: column;
        width: 175px;
        height: 270px;
    }

    .medios-pago .contenedor .tarjetas .pagos-enlinea .contenedor-tarjeta .tarjeta .logo img {
        width: 120px;
        height: 65px;
        object-fit: cover;
        margin-bottom: 10px;
    }

    .medios-pago .contenedor .tarjetas .pagos-enlinea .contenedor-tarjeta .tarjeta .datos {
        background: #EBF7F7;
        border-radius: 8px;
        line-height: 14px;
        font-size: 12px;
        text-align: center;
        padding: 10px;
        margin-bottom: 10px;
    }

    .medios-pago .contenedor .tarjetas .pagos-enlinea .contenedor-tarjeta .tarjeta span {
        line-height: 15px;
        text-align: center;
        font-size: 12px;
        margin-bottom: 10px;
    }

    .medios-pago .contenedor .tarjetas .pagos-enlinea .contenedor-tarjeta .tarjeta .boton a {
        border: none;
        color: #000000;
        width: 98px;
        list-style: none;
        height: 31px;
        cursor: pointer;
        padding: 8px;
        font-size: 12px;
        background: #FFCD00;
        text-decoration: none;
        transition: all ease-in-out .8ms;
    }

    .medios-pago .contenedor .tarjetas .pagos-enlinea .contenedor-tarjeta .tarjeta .boton a:hover {
        background: #CFA123;
    }

    .contactanos {
        margin-top: 17%;
    }

    .preguntas-frecuentes .titulo {
        font-size: 50px;
    }

    main .texto-main .texto-abajo .inicial {
        font-size: 17px !important;
        max-width: 100%;
    }

    span.txt_abajo2 {
        font-size: 17px;
        line-height: 1px;
    }
}


@media(max-width:992px) {
    header .barra-navegacion ul {
        gap: 30px;
    }

    .medios-pago .contenedor .contenido {
        text-align: center;
        align-items: center;
    }

    .contenedor-servicios .quieres-vender .titulo-section p {
        font-size: 49px;
    }

    .medios-pago .contenedor .contenido .titulo {
        font-size: 46px;
        line-height: 1;
    }

    .trabaja-con-nosotros .titulo {
        font-size: 37px;
    }

    .contenedor-main .parrafo-contenedor p {
        font-size: 19px !important;
        max-width: 80% !important;
        line-height: 23px !important;
        text-align: center;
    }

    main .logo-main .imagen-hero img {
        margin-right: 0px;
        width: 99%;
        margin-left: 0%;
    }

    main .logo-main .imagen-hero-2 img {
        width: 350px !important;
        margin-bottom: 42%;
        margin-left: 1%;
    }

    main .logo-main {
        margin-right: 4%;
        width: 55% !important;
    }

    .linea-amarilla {
        margin-top: -14px;
        width: 121px;
        margin-bottom: 15px;
    }

    .boton1-formulario,
    .boton2-formulario {
        margin-top: 15px;
    }
}


@media(max-width:768px) {

    /* .grecaptcha-badge{ visibility: hidden; } */
    /* html, body { overflow-x: hidden; } */
    @media (max-width:768px) {
        .grecaptcha-badge {
            display: none !important;
        }
    }

    /* logo header */
    header .logo-header {
        width: 50%;
        align-self: center;
        margin-left: 20px;
    }

    main .info-hero {
        padding: 1rem 1rem;
        width: 130px;
    }

    main .infoh1-1 {
        top: 9%;
        right: 46px;
        height: 65px;
    }

    /* main .infoh1-1{
        top: 11%;
        right: 2px;
        height: 65px;
    } */

    main .infoh1-2 {
        top: 55% !important;
        left: 4% !important;
    }

    main .infoh1-3 {
        bottom: 19%;
        left: 73%;
    }

    /* main .infoh1-3{
        bottom: 23%;
        right: 5%;
    } */

    main .infoh2-1 {
        top: 10%;
        left: 42px;
    }

    main .infoh2-2 {
        top: 52%;
        left: 210px !important;
    }

    main .infoh2-3 {
        left: 1%;
        bottom: 35% !important;
    }

    .medios-pago .contenedor .contenido {
        text-align: center;
        width: 100%;
    }

    .contenedor-servicios .contenedor .form form legend {
        text-align: center;
    }

    .contenedor-servicios .contenedor .form form label {
        margin: 1.5rem 0;
        text-align: center;
    }

    /* OCultar barra navegacion */
    header .barra-navegacion {
        display: none;
    }

    header .menu-hamburguesa {
        display: block;
    }

    main .texto-main .texto-arriba {
        font-size: 23px;
    }

    main .texto-main .texto-abajo {
        position: relative;
    }

    main .texto-main .texto-abajo .cero {
        font-size: 100px;
        display: flex;
        line-height: 1;
    }

    main .texto-main .texto-abajo .desde {
        font-size: 12px;
        background: #FFFFFF;
        padding: 2px;
        position: absolute;
        left: 1.6%;
        bottom: 58%;
    }

    main .texto-main .texto-abajo .inicial {
        font-size: 14px !important;
    }

    main .logo-main .imagen-hero {
        margin-right: 17%;
    }

    main .carousel .carousel-inner .carousel-item .contenedor-slider .contenedor {
        gap: 5%;
    }

    main .texto-main {
        margin: 25% 0 0 5%;
        width: 50%;
        /* border: 1px solid red; */
    }

    main .texto-main-2 .texto-abajo-2 {
        display: block !important;
        justify-content: normal;
        /* Resetear a valor predeterminado */
        align-items: normal;
        flex-direction: row;
        /* Resetear dirección a predeterminado */
        line-height: normal;
        /* Resetear line-height */
    }

    main .logo-main .imagen-hero img {
        width: 447px !important;
        margin-right: 2%;
    }

    main .logo-main .imagen-hero-2 img {
        width: 305px !important;
        margin-bottom: 68%;
    }

    main .texto-main-2 {
        margin-left: 2%;
        margin-top: 18%;
    }

    main .texto-main-2 .texto-arriba {
        display: flex;
        font-weight: 700;
        line-height: 50px;
        font-size: 50px;
        margin-bottom: 2%;
    }

    main .texto-main-2 .plus {
        color: #005C60;
        font-weight: 600;
        font-size: 14px;
        margin-right: 2%;
    }

    main .texto-main-2 p {
        color: #020400;
        font-weight: 500;
        font-size: 13px;
    }

    main .texto-main-2 .estrena {
        font-weight: 500;
        font-size: 13px;
    }

    /* marcas que financiamos */
    article {
        /* margin-bottom: 25%; */
    }

    .contenedor-servicios .quieres-vender .beneficios .subtitulo {
        font-weight: 500;
        font-size: 18px;
        max-width: 601px;
        font-size: 16px;
        line-height: 20px;
        margin-bottom: inherit;
    }

    .contenedor-servicios .quieres-vender .titulo-section p {
        font-size: 50px;

    }

    /* 
    .contenedor-servicios .quieres-vender .estas-listo p {
        font-size: 16px;
        text-align: center;
        position: relative;
        left: 25%;
    } */

    .contenedor-servicios .quieres-vender .beneficios p {
        max-width: 760px;
        font-size: 16px;
    }

    /* estilos para el apartado de quieres vender con nosotros en media querys */
    .contenedor-servicios .contenedor {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: #FFCD00;
    }

    .contenedor-servicios .quieres-vender {
        width: 100%;
        justify-content: center;
        margin: 10% 0 2% 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .contenedor-servicios .contenedor .form form {
        padding-bottom: 20px;
    }

    /* medios de pago */

    .medios-pago {
        background: #EBF7F7;
        width: 100%;
        height: 904px;
    }

    .medios-pago::after {
        height: 100px;
        bottom: -4%;
    }

    .medios-pago .contenedor {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 46px;
        /* margin-top: 60%; */
    }

    .medios-pago .contenedor .contenido {
        align-self: center;
    }

    .medios-pago .contenedor .contenido .titulo {
        max-width: 438px;
        font-size: 50px;
        text-align: center;
        font-weight: 700;
        line-height: 55px;
        margin-bottom: 6%;
    }

    .medios-pago .contenedor .contenido .parrafo {
        max-width: 559px;
        line-height: 20px;
        font-size: 18px;
        font-weight: 400;
    }

    .medios-pago .fondo img {
        width: 100%;
        position: absolute;
        bottom: 0;
    }


    /* estilo para las tarjetas */
    .medios-pago .contenedor .tarjetas {
        width: 50%;
    }

    .medios-pago .contenedor .tarjetas .efectivo .titulo,
    .medios-pago .contenedor .tarjetas .pagos-enlinea .titulo {
        font-weight: 600;
        font-size: 20px;
        max-width: 200px;
        text-align: center;
        margin-bottom: 10px;
    }

    .medios-pago .contenedor .tarjetas .efectivo {
        margin-bottom: 10px;
        margin-top: 20px;
    }

    .medios-pago .contenedor .tarjetas .efectivo .contenedor-tarjeta {
        display: flex;
        justify-content: space-between;
    }

    .medios-pago .contenedor .tarjetas .efectivo .contenedor-tarjeta .tarjeta {
        background: #FFFFFF;
        border-radius: 12px;
        display: flex;
        justify-content: center;
        padding: 10px;
        align-items: center;
        flex-direction: column;
        width: 170px;
        height: 187px;
    }

    .medios-pago .contenedor .tarjetas .efectivo .contenedor-tarjeta .tarjeta .logo img {
        width: 126px;
        height: 65px;
        object-fit: contain;
        margin-bottom: 10px;
    }

    .medios-pago .contenedor .tarjetas .efectivo .contenedor-tarjeta .tarjeta .datos {
        background: #EBF7F7;
        border-radius: 8px;
        line-height: 14px;
        font-size: 12px;
        text-align: center;
        padding: 10px;
        margin-bottom: 10px;
    }

    .medios-pago .contenedor .tarjetas .pagos-enlinea .contenedor-tarjeta {
        display: flex;
        gap: 20px;
        justify-content: space-between;
    }

    .medios-pago .contenedor .tarjetas .pagos-enlinea .contenedor-tarjeta .tarjeta {
        background: #FFFFFF;
        border-radius: 12px;
        display: flex;
        justify-content: center;
        padding: 10px;
        align-items: center;
        flex-direction: column;
        width: 175px;
        height: 270px;
    }

    .medios-pago .contenedor .tarjetas .pagos-enlinea .contenedor-tarjeta .tarjeta .logo img {
        width: 120px;
        height: 65px;
        object-fit: cover;
        margin-bottom: 10px;
    }

    .medios-pago .contenedor .tarjetas .pagos-enlinea .contenedor-tarjeta .tarjeta .datos {
        background: #EBF7F7;
        border-radius: 8px;
        line-height: 14px;
        font-size: 12px;
        text-align: center;
        padding: 10px;
        margin-bottom: 10px;
    }

    .medios-pago .contenedor .tarjetas .pagos-enlinea .contenedor-tarjeta .tarjeta span {
        line-height: 15px;
        text-align: center;
        font-size: 12px;
        margin-bottom: 10px;
    }

    .preguntas-frecuentes .titulo {
        white-space: inherit;
    }

    .medios-pago .contenedor .tarjetas .pagos-enlinea .contenedor-tarjeta .tarjeta .boton a {
        border: none;
        color: #000000;
        width: 98px;
        list-style: none;
        height: 31px;
        cursor: pointer;
        padding: 8px;
        font-size: 12px;
        background: #FFCD00;
        text-decoration: none;
        transition: all ease-in-out .8ms;
    }

    .medios-pago .contenedor .tarjetas .pagos-enlinea .contenedor-tarjeta .tarjeta .boton a:hover {
        background: #CFA123;
    }

    .contactanos {
        margin-top: 18%;
    }

    .preguntas-frecuentes .titulo {
        font-size: 50px;
    }

    span.texto_arriba2 {
        font-weight: 500;
        font-size: 24px;
    }


    img.santa_mano {
        margin-left: 17%;
    }

    main .infoh1-1 {
        top: 20%;
        right: 0px;
        left: 76%;

    }

    .linea-amarilla {

        width: 42px;
        height: 3px;
        margin: -8px 0 0px 0px;

    }

    span.txt_abajo2 {
        font-size: 14px;
    }

    .boton1-formulario,
    .boton2-formulario {
        margin-top: 6px;
    }

    main .carousel .carousel-inner .carousel-item .contenedor-slider .linea img {
        top: 77%;
    }

}

@media(max-width:768px) {

    .trabaja-con-nosotros .titulo {
        font-size: 37px;
        line-height: 36px;
        max-width: 100%;
    }

    .contenedor-us {
        position: relative;
        height: 250px;
    }

    .background-trabaja-nosotros {
        background-size: cover;
        height: 135px;
    }

    .formulario-me-interesa .formulario-contenedor h1 {
        font-size: 19px;
        line-height: 22px;
    }

    .opcion-ayuda {
        width: 133px;
    }

    .opcion-ayuda i {
        font-size: 31px;
    }

    .opcion-ayuda p {
        font-size: 12px;
    }

    .formulario-me-interesa .formulario-contenedor {
        /* width: 64%; */
    }

    .formulario-me-interesa .formulario-contenedor p {
        max-width: 254px;
        font-size: 12px;
    }

    .contenedor-formulario {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0px;
    }

    .formulario {
        width: 100%;
        padding: 0px;
        /* padding: 0px 106px 0px 65px; */
    }


    .modal-aliado-contenido h2 {
        font-size: 25px;
    }

    ol,
    ul {
        padding: 25px !important;
    }

    .bar-navegacion ul {
        gap: 6px 16px;
    }

    img.linea_banner_2 {
        width: 100%;
    }

    .texto_facil {
        font-size: 21px;
    }


    main .texto-main-2 .texto-arriba {
        font-size: 43px;
    }


}

@media(max-width:600px) {
    .redes-2 {
        display: flex;
        gap: 25px;
    }

    .contenedor-cards {
        margin-right: 0px !important;
    }

    .trabaja-con-nosotros .titulo {
        font-size: 37px !important;
    }

    .contactanos .titulo p {
        line-height: 1;
    }

    .medios-pago .contenedor .contenido .titulo {
        font-size: 44px;
    }

    .contenedor-cards {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .form-right {
        margin-bottom: 10px;
        min-height: 50px;
        justify-content: center;
    }

    .contenedor-cards .card-derecha {
        height: 600px;
        width: 400px;
    }

    .contenedor-cards .card-izquierda {
        margin-left: -5%;
    }

    main .infoh1-1 {
        top: 19%;
        right: 0px;
        left: 70% !important;
    }

    main .texto-main .texto-abajo .inicial {
        font-size: 13px;
    }

    main .infoh1-3 {
        bottom: 12%;
        left: 70%;
    }

    main .texto-main .texto-arriba {
        font-size: 24px;
    }

    span.texto_arriba2 {
        font-weight: 500;
        font-size: 31px;
    }

    span.txt_abajo2 {
        font-size: 15px;
    }

    main .logo-main .imagen-hero img {
        margin-right: 61px;
    }


}

@media (max-width: 576px) {
    .timeline-container {
        padding: 1rem;
        /* Más espacio en pantallas muy pequeñas */
    }

    .timeline::before {
        left: 20px;
    }

    .trabaja-con-nosotros .titulo {
        font-size: 28px !important;
    }


    .timeline-dot {
        left: 20px;
    }

    .timeline-date-side {
        width: 100%;
        text-align: left;
        padding-left: 45px;
        position: relative;
        padding-top: 0;
    }

    .timeline-content-side {
        width: 100%;
        padding-left: 45px;
        padding-right: 1.5rem;
        /* Evitamos que el texto pegue al borde derecho */
    }

    .timeline-year {
        font-size: 1.4rem;
        display: inline-block;
        margin-right: 10px;
    }

    .timeline-month {
        display: inline-block;
        font-size: 0.75rem;
    }

    .timeline-item {
        margin-top: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .timeline-item.principal {
        margin-top: 0.5rem;
    }

    .timeline-blob-container {
        width: 100px !important;
        height: 100px !important;
        margin-left: 0;
    }

    .contenedor-modal .titulo {
        font-size: 18px;
        /* Título más pequeño en móvil */
        padding: 0 10px;
    }
}

@media(max-width:575px) {
    .contenedor {
        min-width: 411px
    }

    .titulo-ayuda,
    .modal-soporte-contenido h2 {
        line-height: 34px;
        font-weight: 700;
        font-size: 29px !important;
        color: #020400;
    }

    .medios-pago .contenedor .contenido .titulo {
        font-size: 35px !important;
    }

    .contenedor-servicios .quieres-vender .titulo-section p {
        font-size: 31px !important;
    }

    .formulario-me-interesa .formulario-contenedor {
        overflow-y: scroll;
    }

    .formulario-me-interesa .formulario-contenedor .formulario-contenedor-arriba-label {
        padding: 0 1rem;
    }

    main .info-hero {
        padding: 1rem 1rem;
        width: 130px;
    }

    main .infoh1-1 {
        top: 19%;
        right: -14px;
    }

    main .infoh1-2 {
        top: 30%;
        /* left: 0 !important; */
    }

    main .infoh1-3 {
        bottom: 21%;
        right: 2%;
    }

    main .infoh2-1 {
        top: 24%;
        left: 15px;
    }

    main .infoh2-2 {
        top: 61%;
        left: 221px !important;
    }

    main .infoh2-3 {
        bottom: 5% !important;
        left: 1% !important;
    }

    .slider::before,
    .slider::after {
        top: -10px;
    }

    main .logo-main .imagen-hero-2 .texto-arriba-2 {
        /* position: relative; */
        display: flex;
        margin-left: 5%;
        color: #005C60;
    }

    main .texto-main-2 .texto-abajo-2 {
        line-height: 1.1;
        margin-bottom: 15%;
    }

    main .logo-main .imagen-hero img {
        width: 380px;
        /* margin-left: 8rem; */
    }

    .medios-pago .contenedor .contenido {
        text-align: center;
        width: 100%;
    }

    .contenedor-servicios .contenedor .form form {
        width: 392px;
    }

    .contenedor-slider .contenedor {
        gap: 5%;
        display: flex !important;
        justify-content: center !important;
        align-items: center;
        height: 800px !important;
        flex-direction: column;
    }

    main .texto-main-2 .texto-arriba {
        display: none !important;
    }



    /* CAMBIO */
    main .carousel .carousel-inner .carousel-item .contenedor-slider .linea img {
        top: 89% !important;
    }

    main .texto-main-2 {
        margin-top: 0 !important;
    }

    main .texto-main {
        width: 86%;
        margin-top: 0%;
        padding: 40px;
    }

    main .logo-main {
        width: 0%;
    }

    .medios-pago .contenedor .tarjetas .efectivo .contenedor-tarjeta {
        gap: 7%;
    }

    .medios-pago .contenedor .tarjetas .pagos-enlinea .contenedor-tarjeta {
        gap: 7%;
    }

    footer .contenedor .redes {
        display: none;
        font-size: 25px;
        color: #000000;
    }

    footer .redes-2 .red i {
        display: flex;
        font-size: 35px;
        color: #000000;
    }

    footer {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    footer .redes-2 .red {
        font-size: 45px;
        gap: 10%;
        list-style: none;
        text-decoration: none;
        display: flex;
        flex-direction: row;
    }

    footer .redes-2 .red a {
        text-decoration: none;
    }

    article {
        /* margin-bottom: 40% !important; */
    }

    .contenedor-servicios .contenedor .form form {
        padding: 1.3rem;
    }

    .contenedor-servicios .contenedor .form form legend {
        line-height: 35px;
        text-align: center;
    }

    .contenedor-servicios .contenedor .form form label {
        line-height: 20px;
        text-align: center;
        margin: 1rem 0;
    }

    .preguntas-frecuentes .titulo {
        font-size: 35px;
    }

    .preguntas-frecuentes .preguntas {
        padding: 0px;
    }

    .contactanos .informacion {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 38px;
    }

    .contactanos .informacion .info .icon {
        background: #005C60;
        border-radius: 50%;
        height: 90px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 90px;
    }

    .medios-pago .contenedor .tarjetas {
        width: 100%;
    }

    .medios-pago .contenedor .tarjetas .efectivo .contenedor-tarjeta {
        gap: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;

    }

    .medios-pago .contenedor .tarjetas .efectivo {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .medios-pago .contenedor .tarjetas .pagos-enlinea {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .medios-pago .contenedor .tarjetas .pagos-enlinea .contenedor-tarjeta {
        gap: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        gap: 20px;
    }

    .medios-pago {
        background: #EBF7F7;
        height: 841px;
    }

    .medios-pago::after {
        height: 70px !important;
        bottom: -3% !important;
    }

    .medios-pago .contenedor .contenido .titulo {
        max-width: 100%;
    }

    .medios-pago .contenedor .contenido .parrafo {
        text-align: center;
        width: 100%;
        padding: 20px;
    }


    main .texto-main .texto-arriba {
        font-size: 35px !important;
    }

    span.texto_arriba2 {
        font-weight: 500;
        font-size: 36px !important;
    }

    main .logo-main .imagen-hero img {
        width: 377px !important;
        margin-right: 0px;
    }

    .linea-amarilla {
        width: 63px !important;
        margin-top: -9px;
    }

    main .texto-main .texto-abajo .inicial {
        font-size: 15px !important;
    }

    span.txt_abajo2 {
        font-size: 15px !important;
    }

    main .infoh1-3 {
        bottom: 76px !important;
        left: 70%;
    }

    main .logo-main .imagen-hero-2 img {
        width: 305px !important;
        margin-bottom: 0;
    }

    .linea_2 {
        position: absolute;
        top: 88%;
        z-index: 0;
    }

    .texto_facil_2 {
        font-size: 20px;
        margin-left: 5%;
        font-weight: 600;
        display: block !important;
    }

    .texto_facil {
        font-size: 21px;
        display: none;
    }

    .carousel-indicators {
        margin-bottom: 1rem;
    }


}

@media(max-width:280px) {
    .contenedor {
        min-width: 450px;
    }

    .titulo-ayuda,
    .modal-soporte-contenido h2 {
        line-height: 34px;
        font-weight: 700;
        font-size: 31px !important;
        color: #020400;
    }


    .contenedor-servicios .quieres-vender .titulo-section p {
        font-size: 31px;
    }


    .medios-pago .contenedor .contenido .titulo {
        font-size: 41px !important;
    }

    .contenedor-servicios .quieres-vender .titulo-section p {
        font-size: 32px;
        line-height: 1;
    }

    .formulario-me-interesa {
        width: 100%;
        justify-content: center;
    }

    /* CAMBIO */
    .slider::before,
    .slider::after {
        top: -70px !important;
    }

    .formulario-me-interesa .formulario-contenedor {
        overflow-y: scroll;
    }

    .formulario-me-interesa .formulario-contenedor .formulario-contenedor-arriba-label {
        padding: 0 1rem;
    }

    main .infoh2-1 {
        top: 30%;
        left: 10px;
    }

    main .infoh2-2 {
        bottom: 25%;
        left: 230px !important;
    }

    main .infoh2-3 {
        bottom: 7%;
        left: 2%;
    }

    header .logo-header {
        width: 50%;
        align-self: center;
        margin-left: 20px;
    }

    header .logo-header img {
        width: 158px;
        height: 84px;
    }

    .carousel-indicators {
        top: 65%;
    }

    .carousel-indicators {
        top: 94%;
    }

    .medios-pago .contenedor .contenido {
        text-align: center;
        width: 100%;
    }

    /* OCultar barra navegacion */
    header .barra-navegacion {
        display: none;
    }

    header .menu-hamburguesa {
        display: block;
    }

    main .texto-main .texto-arriba {
        font-size: 48px;
    }

    main .texto-main .texto-abajo {
        position: relative;
    }

    main .texto-main .texto-abajo .cero {
        font-size: 100px;
        display: flex;
        line-height: 1;
    }

    main .texto-main .texto-abajo .desde {
        font-size: 12px;
        background: #FFFFFF;
        padding: 2px;
        position: absolute;
        left: 1.6%;
        bottom: 58%;
    }

    main .texto-main .texto-abajo .inicial {
        font-size: 28px;
    }

    /* estilos contenedor */
    .carousel-item {
        height: 800px;
    }

    .contenedor-slider .contenedor {
        display: flex;
        flex-direction: column;
        height: 770px;
    }

    /* estilos de la iamgen principal */
    main .carousel .carousel-inner .carousel-item .contenedor-slider .linea img {
        top: 106%;
    }

    main .texto-main-2 {
        margin-left: 10%;
    }

    main .texto-main-2 .texto-arriba {
        display: flex;
        font-weight: 700;
        line-height: 50px;
        font-size: 50px;
        margin-bottom: 2%;
    }

    main .texto-main-2 .texto-abajo-2 {
        line-height: 20px;
    }

    main .texto-main-2 .plus {
        color: #005C60;
        font-weight: 600;
        font-size: 22px;
        margin-right: 2%;
    }

    main .texto-main-2 p {
        color: #020400;
        font-weight: 500;
        font-size: 16px;
    }

    main .texto-main-2 .estrena {
        color: #005C60;
        font-weight: 500;
        font-size: 18px;
    }

    main .logo-main .imagen-hero-2 img {
        position: relative;
        width: 301px !important;

    }

    /* marcas que financiamos */
    #marcas-financiadas {
        margin-top: 0%;
        margin-bottom: 31%;
        width: 100%;
        height: 0;
    }

    article .titulo-article {
        font-size: 34px;
    }

    .contenedor-servicios .quieres-vender .beneficios .subtitulo {
        font-weight: 500;
        font-size: 18px;
        max-width: 601px;
        font-size: 16px;
        line-height: 20px;
        margin-bottom: inherit;
    }

    .contenedor-servicios .quieres-vender .titulo-section p {
        line-height: 58px;
        text-align: left;

    }

    .contenedor-servicios .quieres-vender .beneficios p {
        max-width: 760px;
        font-size: 16px;
    }

    /* estilos para el apartado de quieres vender con nosotros en media querys */
    .contenedor-servicios .contenedor {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* height: 1300px !important;   */
        background: #FFCD00;
    }

    .contenedor-servicios .contenedor .form form legend {
        font-size: 26px;
        font-weight: 700;
        max-width: 470px;
        text-align: center;
        line-height: 25px;
    }

    .contenedor-servicios .contenedor .form form label {
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
        text-align: center;
        margin: 1rem 0;
    }

    .contenedor-servicios .quieres-vender {
        width: 100%;
        justify-content: center;
        margin: 10% 0 8% 0;
        display: flex;
        /* Habilitar flexbox */
        flex-direction: column;
        /* Alinear el contenido en columna */
        justify-content: center;
        /* Centrar verticalmente */
        align-items: center;
        /* Centrar horizontalmente */
    }

    .contenedor-servicios .contenedor .form form {
        padding-bottom: 20px;
        width: 313px;
    }

    /* medios de pago */

    .medios-pago {
        background: #EBF7F7;
        width: 100%;
        height: 904px;
    }

    .medios-pago::after {
        height: 50px !important;
        bottom: -2% !important;
    }

    .medios-pago .contenedor {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 46px;
    }

    .medios-pago .contenedor .contenido {
        align-self: center;
    }

    .medios-pago .contenedor .contenido .titulo {
        max-width: 438px;
        font-size: 50px;
        text-align: center;
        font-weight: 700;
        line-height: 55px;
        margin-bottom: 6%;
    }

    .medios-pago .contenedor .contenido .parrafo {
        max-width: 559px;
        line-height: 20px;
        font-size: 18px;
        font-weight: 400;
    }

    .medios-pago .fondo img {
        width: 100%;
        position: absolute;
        bottom: 0;
    }

    /* estilo para las tarjetas */
    .medios-pago .contenedor .tarjetas {
        width: 50%;
    }

    .medios-pago .contenedor .tarjetas .efectivo .titulo,
    .medios-pago .contenedor .tarjetas .pagos-enlinea .titulo {
        font-weight: 600;
        font-size: 20px;
        max-width: 200px;
        text-align: center;
        margin-bottom: 10px;
    }

    .medios-pago .contenedor .tarjetas .efectivo {
        margin-bottom: 10px;
        margin-top: 20px;
    }

    .medios-pago .contenedor .tarjetas .efectivo .contenedor-tarjeta {
        display: flex;
        justify-content: space-between;
    }

    .medios-pago .contenedor .tarjetas .efectivo .contenedor-tarjeta .tarjeta {
        background: #FFFFFF;
        border-radius: 12px;
        display: flex;
        justify-content: center;
        padding: 10px;
        align-items: center;
        flex-direction: column;
        width: 170px;
        height: 187px;
    }

    .medios-pago .contenedor .tarjetas .efectivo .contenedor-tarjeta .tarjeta .logo img {
        width: 126px;
        height: 65px;
        object-fit: contain;
        margin-bottom: 10px;
    }

    .medios-pago .contenedor .tarjetas .efectivo .contenedor-tarjeta .tarjeta .datos {
        background: #EBF7F7;
        border-radius: 8px;
        line-height: 14px;
        font-size: 12px;
        text-align: center;
        padding: 10px;
        margin-bottom: 10px;
    }

    .medios-pago .contenedor .tarjetas .pagos-enlinea .contenedor-tarjeta {
        display: flex;
        justify-content: space-between;
    }

    .medios-pago .contenedor .tarjetas .pagos-enlinea .contenedor-tarjeta .tarjeta {
        background: #FFFFFF;
        border-radius: 12px;
        display: flex;
        justify-content: center;
        padding: 10px;
        align-items: center;
        flex-direction: column;
        width: 175px;
        height: 270px;
    }

    .medios-pago .contenedor .tarjetas .pagos-enlinea .contenedor-tarjeta .tarjeta .logo img {
        width: 120px;
        height: 65px;
        object-fit: cover;
        margin-bottom: 10px;
    }

    .medios-pago .contenedor .tarjetas .pagos-enlinea .contenedor-tarjeta .tarjeta .datos {
        background: #EBF7F7;
        border-radius: 8px;
        line-height: 14px;
        font-size: 12px;
        text-align: center;
        padding: 10px;
        margin-bottom: 10px;
    }

    .medios-pago .contenedor .tarjetas .pagos-enlinea .contenedor-tarjeta .tarjeta span {
        line-height: 15px;
        text-align: center;
        font-size: 12px;
        margin-bottom: 10px;
    }

    .medios-pago .contenedor .tarjetas .pagos-enlinea .contenedor-tarjeta .tarjeta .boton a {
        border: none;
        color: #000000;
        width: 98px;
        list-style: none;
        height: 31px;
        cursor: pointer;
        padding: 8px;
        font-size: 12px;
        background: #FFCD00;
        text-decoration: none;
        transition: all ease-in-out .8ms;
    }

    .medios-pago .contenedor .tarjetas .pagos-enlinea .contenedor-tarjeta .tarjeta .boton a:hover {
        background: #CFA123;
    }

    .preguntas-frecuentes .titulo {
        font-size: 50px;
    }
}
























/* === RESET de anchos forzados globales === */
.ts-wrapper.single .ts-control {
    min-width: 0 !important;
    width: 100% !important;
}

.ts-control>* {
    min-width: 0 !important;
}

/* === Estilo común para TODOS los Tom Select === */
.ts-wrapper {
    width: 100%;
    max-width: 100%;
}

.ts-wrapper .ts-control {
    height: 45px;
    border: 1px solid rgba(198, 196, 211, 1);
    border-radius: 999px;
    background: #fff;
    padding: 0 16px;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.ts-wrapper.focus .ts-control {
    border-color: #005C60;
    box-shadow: 0 0 0 3px rgba(0, 92, 96, .15);
}

/* Dropdown */
.ts-dropdown {
    border: 1px solid rgba(198, 196, 211, 1);
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(2, 8, 23, .12);
}

.ts-dropdown .option {
    padding: 10px 12px;
}

.ts-dropdown .active {
    background: #f1f5f9;
}

/* === Si quieres escopar por contenedor (opcional) === */
.formulario .ts-wrapper .ts-control,
.form .ts-wrapper .ts-control {
    width: 100% !important;
}


.titulo-ayuda {
    margin-bottom: 0.25rem;
    /* o incluso 0.5rem */
}

.opciones-ayuda {
    display: flex;
    gap: 1.5rem;
    margin-top: 0rem;
    justify-content: center;
    flex-wrap: wrap;
}

.opciones-ayuda {
    display: flex;
    flex-direction: row;
    /* Fuerza que siempre estén en fila */
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    /* 🔒 No permite que se apilen */
    overflow-x: auto;
    /* Scroll si no caben */
    padding: 1rem 0;
}

.opcion-ayuda {
    border: 1px solid #cfd8dc;
    flex: 0 0 auto;
    /* Mantiene tamaño fijo */
    background: #fafafa;
    border-radius: 16px;
    padding: 2rem 1rem;
    font-size: 14px;
    width: 200px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.08);
    scroll-snap-align: start;
}

.opcion-ayuda:hover {
    background: #ffffff;
}

.opcion-ayuda i {
    margin-bottom: 4px;
    font-size: 50px;
    color: #005C60;
}

.opcion-ayuda p {
    font-size: 14px;
    line-height: 1.2;
    margin: 0;
    font-weight: 500;
    height: 70px;
    /* Forzar altura uniforme en párrafos */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

}

.oculto {
    display: none;
}

/* Estilo general del formulario */


/* Inputs del formulario */
#formulario-financiacion input,
#formulario-financiacion textarea {
    width: 100%;
    max-width: 400px;
    /* nuevo: ancho máximo más angosto */
    margin: 0.1rem auto;
    /* nuevo: centrado horizontal */
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 999px;
    font-size: 1rem;
    box-sizing: border-box;
}


/* Textarea específico para mantener estilo */
#formulario-financiacion textarea {
    border-radius: 20px;
    resize: none;
    overflow: hidden;
}

.formulario-me-interesa .formulario-contenedor p {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}


/* Botón de enviar */
#formulario-financiacion button[type="submit"] {
    background-color: #00524c;
    /* O el color de marca */
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 999px;
    cursor: pointer;
    margin-top: 1rem;
    width: 100%;
    transition: background-color 0.3s ease;
    width: auto;
    align-self: end;
}

#formulario-financiacion button[type="submit"]:hover {
    background-color: #0e3838;
}

.oculto {
    display: none !important;
}

.titulo-ayuda {
    max-width: 90%;
    text-align: center;
    word-break: break-word;
}


.formulario-boton-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    /* Alinea el contenido a la derecha */
}

.formulario-boton-enviar {
    background-color: #005c60;
    border: none;
    border-radius: 999px;
    color: white;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-left: auto;
}

.modal-soporte {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 92, 96, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.modal-soporte-contenido {
    background-color: white;
    padding: 2rem;
    border-radius: 20px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
}

.modal-soporte-info {
    background-color: #ebf7f7;
    border-radius: 12px;
    padding: 1rem;
    margin: 1rem 0;
    font-size: 14px;
    line-height: 1.6;
}

.modal-soporte-info i {
    margin-right: 8px;
    color: #004d4d;
}

.btn-cerrar-modal {
    background-color: #004d4d;
    color: white;
    border: none;
    border-radius: 999px;
    padding: 10px 24px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cerrar-modal:hover {
    background-color: #003838;
}

.oculto {
    display: none !important;
}

.modal-aliado {
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20000;
}

.modal-aliado-contenido {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.modal-aliado-info {
    background: #f1f8fb;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    font-size: 14px;
}

.botones-modal {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-around;
}

.btn-cancelar {
    background: #dedfdf;
    border: none;
    padding: 8px 16px;
    border-radius: 999px;
    ;
    cursor: pointer;
}

.btn-confirmar {
    background: #FFD700;
    color: #fffefe;
    border: none;
    padding: 8px 16px;
    border-radius: 999px;
    ;
    cursor: pointer;
}

.oculto {
    display: none;
}

.titulo-ayuda,
.modal-soporte-contenido h2 {
    line-height: 34px;
    font-weight: 700;
    font-size: 34px;
    color: #020400;
}

.ts-wrapper,
.ts-control {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}


.modal-aliado-contenido h2 {
    font-weight: 700;
    font-size: 32px;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 20px;
}

/*Codigo Manuel*/
.formulario {
    width: 100%;
    /* padding: 0 43px; */
}

.contenedor-formulario {
    /* border: 1px solid red; */
    padding: 10px;
}

/*Seccion de trabaja con nosotros*/

.trabaja-con-nosotros {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* background: rgba(235, 247, 247, 1); */
}

.trabaja-con-nosotros .titulo {
    font-size: clamp(22px, 5vw, 46px);
    font-weight: bold;
    line-height: 1.2;
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
    text-wrap: balance;
}

.trabaja-con-nosotros .contenido .unete {
    color: rgba(63, 63, 61, 1);
    padding-bottom: 10px;
    text-align: center;
    text-wrap: balance;
}

.trabaja-con-nosotros .contenido .boton {
    cursor: pointer;
}

.trabaja-con-nosotros .contenido button {
    background: rgb(255, 205, 0);
    color: white;
    border: none;
    font-size: 17px;
    padding: 7px 28px;
    border-radius: 50px;
}

.trabaja-con-nosotros .contenido {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    z-index: 10;
}

.w-full {
    width: 100%;
}

.p-absoluto {
    position: absolute;
    width: 100%;
    bottom: 10px;
}

/*
BreakPoints 
*/
.contenedor-us {
    position: relative;
    height: 370px;
}





.contenedor-main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 4%;
}

.contenedor-main .titulo-contenedor h1 {
    font-size: 60px;
    font-weight: bold;
}

.contenedor-main .parrafo-contenedor {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contenedor-main .parrafo-contenedor p {
    font-size: 24px;
    max-width: 53%;
    line-height: 33px;
    text-align: center;
}

.contenedor-cards {
    /* position: relative; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin-top: 4%;
    margin-right: 20px;
}

.contenedor-cards .card-izquierda {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    gap: 2rem;
    flex-direction: column;
}

.contenedor-cards .card-izquierda .titulo {
    font-size: 22px;
    font-weight: bold;
    line-height: 22px;
    text-align: center;
    /* border: 1px solid red; */
    height: 119px;
    justify-content: center;
    display: flex;
    max-width: 75%;
    align-items: center;
}

.contenedor-cards .card-izquierda {
    background-color: #FFCD00;
    height: 626px;
    width: 366px;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    border-radius: 20px;
    position: relative;
    left: 20px;
    box-shadow: 4px 8px 30px 0px rgba(115, 98, 98, 0.25);

}

.contenedor-cards .card-derecha {
    background-color: #EBF7F7;
    height: 600px;
    width: 921px;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 4px 8px 30px 0px rgba(115, 98, 98, 0.25);
}

.fondo-amarilla {
    position: relative;
    z-index: 1;
    top: -143px;
    /* transform: rotate(195deg); */
    width: 100%;
}

.fondo-amarilla img {
    width: 100%;
}




.form-left {
    z-index: 10;
}

#formularioUs {
    background: #eaf8f7;
    border-radius: 16px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 300px;
    grid-template-areas:
        "left right"
        "boton right";
    column-gap: 30px;
    row-gap: 0px;
    max-width: 1000px;
    width: 100%;
}

.form-left {
    grid-area: left;
}

.form-right {
    grid-area: right;
}

.boton {
    grid-area: boton;
}

.form-left h2 {
    color: #005C60;
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-weight: bold;
}

.inputUs::placeholder,
.textareaUs::placeholder {
    color: #005C60;
    opacity: 50%;
}

.form-left p {
    margin-bottom: 20px;
    font-size: 15px;
    color: #005C60;
}

.form-left input,
.form-left textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 15px;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    outline: none;
}

.form-left textarea {
    border-radius: 16px;
    min-height: 120px;
    resize: none;
}

.row {
    display: flex;
    gap: 15px;
    max-width: 103%;
    /* padding-left: 13px; */
}

.row input {
    flex: 1;
}

button[type="submit"] {
    background: #006d65;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
}

button[type="submit"]:hover {
    background: #00524c;
}

.note {
    font-size: 12px;
    margin-top: 10px;
    color: #666;
}

.form-right {
    background: #fff;
    border: 2px dashed #006d65;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    color: #006d65;
}

.form-right input[type="file"] {
    display: none;
}

.form-right label i {
    color: #005C60;
}

.form-right label {
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.form-right p {
    font-size: 12px;
    margin-top: 5px;
}

.form-left textarea {
    min-height: 80px;
}

.form-right {
    padding: 15px;
    min-height: 80px;
    justify-content: center;
}

#file-label {
    cursor: pointer;
    font-weight: 600;
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}





@media(max-width:768px) {
    .form-right {
        min-width: 20%;
    }


    .medios-pago .contenedor .contenido .titulo {
        font-size: 46px;
    }

    .contenedor-servicios .quieres-vender .titulo-section p {
        font-size: 31px !important;
    }

    .contenedor-main .titulo-contenedor h1 {
        font-size: 37px;
        text-align: center;
        line-height: 32px;
        margin-bottom: 30px;
    }

    .contenedor-main .parrafo-contenedor p {
        font-size: 20px;
        line-height: 23px;
        max-width: 70%;
    }


    .contenedor-cards {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contenedor-cards .card-izquierda .titulo {
        font-size: 22px;
        font-weight: bold;
        line-height: 22px;
        text-align: center;
        height: 189px;
        justify-content: center;
        display: flex;
        align-items: center;
    }



    .form-left h2 {
        font-size: 22px !important;
        line-height: 20px;

    }

    .form-left p {
        margin-bottom: 20px;
        font-size: 12px !important;
        line-height: 15px;
        color: #005C60;
    }

    main .logo-main .imagen-hero img {
        width: 399px !important;
        margin-right: -38px;
    }


}




.row .ts-wrapper,
.ts-control {
    width: 50%;
    max-width: 100%;
    box-sizing: border-box;
}



.row .items-placeholder {
    border: none;
}

.row input::placeholder {
    color: #006d65;
    opacity: 50%;
}

div#ubicacion_id\ sin_borde-ts-control {
    border: none;
    /* font-size: 12px; */
}


/* @media(max-width:360px) {
    .contenedor-main .titulo-contenedor h1 {
        font-size: 30px;
        text-align: center;
    }

    .contenedor-main .parrafo-contenedor p {
        font-size: 20px;
        line-height: 23px;
        max-width: 100%;
        padding: 0px 20px;
    }

    .contenedor-cards {
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .contenedor-cards .card-izquierda {
        height: 517px;
        width: 264.75px;
        margin-right: 10%;
        top: 20px;

    }

    .contenedor-cards .card-derecha {
        height: 553px;
        width: 309px;
    }

} */