/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
@font-face {
    font-family: 'bebas';
    src: url('../fonts/Bebas_Neue/BebasNeue-Regular.ttf') format('truetype');
}

@import url('https://fonts.googleapis.com/css2?family=Barlow: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');
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --color-primario: #3498db;
    --color-secundario: #2ecc71;
    --color-terciario: #e74c3c;
    --color-texto: #000;
    --verde-winn: #9BC33B;
    --rojo-winn: #E72E4D;
    --amarillo-winn: #FCD74B;
    --blanco-winn: #fff;
}


body {
    font-family: "Open Sans", sans-serif;
    color: var(--color-texto);
}

a {
    color: var(--verde-winn);
    text-decoration: none;
}

    a:hover {
        color: var(--verde-winn);
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5 {
    font-family: "Roboto", sans-serif;
}

h3 {
    font-weight: 700;
}

/*--------------------------------------------------------------
# SPAN
--------------------------------------------------------------*/


.verde-winn {
    color: var(--verde-winn);
}

.subrayado-winn {
    position: relative;
}

    .subrayado-winn::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 10px;
        border-bottom: 10px solid rgba(155, 195, 59, 0.4);
        transition: width 1.4s ease; /* Añadido un timing function para suavizar la transición */
    }

    .subrayado-winn:hover::after {
        width: 100%; /* El ancho llegará al 100% al pasar el ratón por encima */
    }

.section-how-work {
    background-image: url('../img/wave-top-header.svg');
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.horizontal-line {
    border-top: 1px solid var(--blanco-winn);
    width: 50%;
    margin: 0 auto;
}

.vertical-line {
    border-right: 1px solid var(--blanco-winn);
    width: 50%;
    margin: 0 auto;
}

.mi_hr_personalizado {
    width: 10%;
    height: 4px;
    background-color: var(--color-texto);
    border: none;
}

.chevron-list {
    list-style: none;
}

    .chevron-list li {
        padding-bottom: 20px;
        padding-right: 10px;
    }

.border-success {
    --bs-border-opacity: 1;
    border-color: var(--verde-winn) !important;
}

.fondo-winn {
    background-image: url('../img/fondo-rectangulo.svg');
    background-size: cover;
    padding: 100px 30px; /* Padding por defecto */
    border-radius: 50px;
    color: var(--blanco-winn);
}

.fondo-winn-blog {
    background-image: url('../img/fondo-rectangulo.svg');
    background-size: cover;
    padding: 10px 10px; /* Padding por defecto */
    border-radius: 50px;
    color: var(--blanco-winn);
}

/* Media query para terminales móviles */
@media (max-width: 767px) {
    .fondo-winn {
        background-image: url('../img/fondo-rectangulo.svg');
        background-size: cover;
        padding: 50px 30px; /* Nuevo padding para terminales móviles */
        border-radius: 50px;
    }
}

.button-custom {
    border-radius: 50px;
    background-color: var(--blanco-winn);
    color: var(--verde-winn);
    padding: 10px 30px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    transition: 0.5s;
    color: var(--verde-winn);
    border: 1px solid var(--verde-winn);
}

    .button-custom:hover {
        border-radius: 50px;
        background-color: var(--verde-winn);
        color: var(--blanco-winn);
        padding: 10px 30px;
        font-family: "Roboto", sans-serif;
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        transition: 0.5s;
        border: 1px solid var(--blanco-winn);
    }

.border-bottom-input {
    border-bottom: 4px solid var(--verde-winn);
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.btn-enviar {
    color: #fff;
    background: var(--verde-winn);
    border: 1px solid var(--verde-winn);
    padding: 8px 25px;
    margin-left: 30px;
    border-radius: 50px;
}

    .btn-enviar:hover {
        color: var(--verde-winn);
        background: var(--blanco-winn);
        border: 1px solid var(--verde-winn);
        padding: 8px 25px;
        margin-left: 30px;
        border-radius: 50px;
        transition: 0.5s;
    }

.btn-enviar-boletin {
    color: #fff;
    background: var(--verde-winn);
    border: 1px solid var(--verde-winn);
    padding: 8px 25px;
    border-radius: 50px;
}

    .btn-enviar-boletin:hover {
        color: var(--verde-winn);
        background: var(--blanco-winn);
        border: 1px solid var(--verde-winn);
        padding: 8px 25px;
        border-radius: 50px;
        transition: 0.5s;
    }

.btn-enviar-blog {
    color: #fff;
    background: var(--verde-winn);
    border: 1px solid var(--verde-winn);
    padding: 8px 25px;
    border-radius: 50px;
}

    .btn-enviar-blog:hover {
        color: var(--verde-winn);
        background: var(--blanco-winn);
        border: 1px solid var(--verde-winn);
        padding: 8px 25px;
        border-radius: 50px;
        transition: 0.5s;
    }

.BoletinWinn {
    background-color: var(--amarillo-winn);
}

.border-bottom-rounded {
    border-radius: 50px;
}

.BoletinWinn {
    background-color: var(--amarillo-winn);
}

.border-bottom-rounded {
    border-radius: 50px;
}

    .border-bottom-rounded::placeholder {
        opacity: 0.5;
        text-transform: uppercase;
    }

.accordion-button:not(.collapsed) {
    background-color: var(--verde-winn);
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
    color: var(--blanco-winn);
    font-size: 22px;
}


.accordion-body {
    background-color: #eaf3d6;
    color: var(--color-texto);
}

.accordion-button::after {
    /* content: '+'; */
    float: right;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-plus-circle" viewBox="0 0 16 16"><path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16"/><path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4"/></svg>');
}

.accordion-button[aria-expanded="true"]::after {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-x-circle" viewBox="0 0 16 16"><path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16"/><path d="M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708"/></svg>');
}


/*-------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--verde-winn);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 28px;
        color: var(--blanco-winn);
        line-height: 0;
    }

    .back-to-top:hover {
        background: var(--rojo-winn);
        color: var(--blanco-winn);
    }

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    z-index: 997;
    transition: all 0.5s;
    padding: 22px 0;
    background: #fff;
}

    #header .logo img {
        padding: 0;
        margin: 0;
        max-height: 60px;
    }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 10px 10px 10px;
        font-size: 18px;
        font-weight: 400;
        font-family: 'bebas', sans-serif;
        color: #000;
        white-space: nowrap;
        transition: 0.3s;
        text-transform: uppercase;
    }

        .navbar a:hover,
        .navbar .active,
        .navbar .active:focus,
        .navbar li:hover > a {
            color: #9BC33B;
        }

    .navbar .getstarted,
    .navbar .getstarted:focus {
        background: var(--blanco-winn);
        padding: 8px 25px;
        /* margin-left: 30px;*/
        border-radius: 50px;
        color: var(--verde-winn);
        border: 1px solid var(--verde-winn);
    }

        .navbar .getstarted:hover,
        .navbar .getstarted:focus:hover {
            color: #fff;
            background: var(--verde-winn);
            border: 1px solid var(--verde-winn);
        }

    .navbar .getstarted-rojo-winn,
    .navbar .getstarted-rojo-winn:focus {
        background: var(--blanco-winn);
        padding: 8px 25px;
        /* margin-left: 30px;*/
        border-radius: 50px;
        color: var(--rojo-winn);
        border: 1px solid var(--rojo-winn);
    }

        .navbar .getstarted-rojo-winn:hover,
        .navbar .getstarted-rojo-winn:focus:hover {
            color: #fff;
            background: var(--rojo-winn);
            border: 1px solid var(--rojo-winn);
        }



    .navbar .getstarted-verde-winn,
    .navbar .getstarted-verde-winn:focus {
        background: var(--blanco-winn);
        padding: 8px 25px;
        /* margin-left: 30px;*/
        border-radius: 50px;
        color: var(--verde-winn);
        border: 1px solid var(--verde-winn);
    }

        .navbar .getstarted-verde-winn:hover,
        .navbar .getstarted-verde-winn:focus:hover {
            color: #fff;
            background: var(--verde-winn);
            border: 1px solid var(--verde-winn);
        }


/**
* Mobile Navigation 
*/
/*.mobile-nav-toggle {
    color: #222222;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
    
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}*/
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #222222;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

    .mobile-nav-toggle.bi-x {
        color: #fff;
    }

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(9, 9, 9, 0.9);
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        border-radius: 8px;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 15px;
        color: #222222;
    }

        .navbar-mobile a:hover,
        .navbar-mobile .active,
        .navbar-mobile li:hover > a {
            color: var(--verde-winn);
        }

    .navbar-mobile .getstarted,
    .navbar-mobile .getstarted:focus {
        margin: 15px;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover,
            .navbar-mobile .dropdown ul .active:hover,
            .navbar-mobile .dropdown ul li:hover > a {
                color: #3498db;
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 90vh;
    margin-top: 70px;
}

    #hero h1 {
        margin: 0 0 10px 0;
        font-size: 48px;
        font-weight: 700;
        line-height: 56px;
        color: black;
    }

    #hero h2 {
        color: #484848;
        margin-bottom: 50px;
        font-size: 24px;
    }

    #hero .btn-get-started {
        font-family: "Roboto", sans-serif;
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 10px 30px;
        border-radius: 50px;
        transition: 0.5s;
        color: var(--verde-winn);
        border: 1px solid var(--verde-winn);
    }


        #hero .btn-get-started:hover {
            background: var(--verde-winn);
            color: #fff;
        }

    #hero .btn-get-started-rojo-winn {
        font-family: "Roboto", sans-serif;
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 10px 30px;
        border-radius: 50px;
        transition: 0.5s;
        color: var(--rojo-winn);
        border: 1px solid var(--rojo-winn);
    }

        #hero .btn-get-started-rojo-winn:hover {
            background: var(--rojo-winn);
            color: #fff;
        }

    #hero .animated {
        animation: up-down 2s ease-in-out infinite alternate-reverse both;
    }

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 991px) {
    #hero {
        height: 100vh;
    }

        #hero .animated {
            animation: none;
        }

        #hero .hero-img {
            text-align: center;
        }

            #hero .hero-img img {
                width: 50%;
            }
}

@media (max-width: 768px) {
    #hero {
        padding-top: 20px;
        margin-top: 20px;
    }

        #hero h1 {
            font-size: 28px;
            line-height: 36px;
        }

        #hero h2 {
            font-size: 18px;
            line-height: 24px;
            margin-bottom: 30px;
        }

        #hero .hero-img img {
            width: 70%;
        }
}

@media (max-width: 575px) {
    #hero .hero-img img {
        width: 100%;
        padding-top: 230px;
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: bold;
        position: relative;
        color: #222222;
    }

        /* .section-title h2::before,
.section-title h2::after {
  content: "";
  width: 50px;
  height: 2px;
  background:var(--color-texto);
  display: inline-block;
} */

        .section-title h2::before {
            margin: 0 15px 10px 0;
        }

        .section-title h2::after {
            margin: 0 0 10px 15px;
        }

    .section-title p {
        margin: 15px 0 0 0;
    }



/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
}

    .services .icon-box::before {
        content: "";
        position: absolute;
        background: var(--verde-winn);
        right: -60px;
        top: -40px;
        width: 100px;
        height: 100px;
        border-radius: 50px;
        transition: all 0.3s;
        z-index: -1;
    }

    .services .icon-box:hover::before {
        background: var(--verde-winn);
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border-radius: 0px;
    }

.services .title {
    font-weight: 400;
    margin-bottom: 15px;
    font-size: 17px;
    font-family: "Barlow", sans-serif;
    /*    text-transform: uppercase;*/
}

    .services .title a {
        color: #111;
    }

.services .icon-box:hover .title a {
    color: #fff;
}


/*--------------------------------------------------------------
# NecesitasWin
--------------------------------------------------------------*/
.NecesitasWin {
    background-color: var(--verde-winn);
}



/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
    padding-left: 50px;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 10px 10px 10px 10px;
    margin: 30px 15px;
    min-height: 200px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    background: #fff;
}

    .testimonials .testimonial-item .testimonial-img {
        width: 90px;
        border-radius: 10px;
        border: 6px solid #fff;
        position: absolute;
        left: 0px;
        top: -60px;
    }

    .testimonials .testimonial-item p {
        font-style: italic;
        margin: 15px auto 15px auto;
    }

@media (max-width: 767px) {
    .testimonials .testimonial-wrap {
        padding-left: 0;
    }

    .testimonials .testimonial-item {
        padding: 30px;
        margin: 15px;
    }

        .testimonials .testimonial-item .testimonial-img {
            position: static;
            left: auto;
        }
}


/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .faq-item {
    margin: 20px 0;
    padding: 20px 0;
    border-bottom: 1px solid #eeeeee;
}

    .faq .faq-item i {
        color: #8bc4ea;
        font-size: 24px;
        float: left;
        line-height: 0;
        padding: 13px 0 0 0;
        margin: 0;
    }

    .faq .faq-item h4 {
        font-size: 16px;
        line-height: 26px;
        font-weight: 500;
        margin: 0 0 10px 32px;
        font-family: "Poppins", sans-serif;
    }

    .faq .faq-item p {
        font-size: 15px;
    }



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: var(--verde-winn);
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
    padding: 30px 0;
    color: #222222;
    font-size: 14px;
}

/*--------------------------------------------------------------
# BOTONES SWEETALERT2
--------------------------------------------------------------*/
.custom-swal-btn {
    border-radius: 50px !important;
    background-color: var(--blanco-winn) !important;
    color: var(--verde-winn) !important;
    padding: 10px 30px !important;
    font-family: "Roboto", sans-serif !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    letter-spacing: 1px !important;
    display: inline-block !important;
    transition: 0.5s !important;
    color: var(--verde-winn) !important;
    border: 1px solid var(--verde-winn) !important;
}

    .custom-swal-btn:hover {
        border-radius: 50px !important;
        background-color: var(--verde-winn) !important;
        color: var(--blanco-winn) !important;
        padding: 10px 30px !important;
        font-family: "Roboto", sans-serif !important;
        font-weight: 500 !important;
        font-size: 16px !important;
        letter-spacing: 1px !important;
        display: inline-block !important;
        transition: 0.5s !important;
        border: 1px solid var(--blanco-winn) !important;
    }


div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm:focus {
    box-shadow: none !important;
}

div:where(.swal2-container) div:where(.swal2-popup) {
    border-radius: 50px !important;
}

.contentCaptcha {
    text-align: center !important;
}

    .contentCaptcha div:first-child {
        /*width: 200px !important;*/
        height: auto !important;
        margin: 0 auto !important;
    }

.social_side_links {
    position: fixed;
    top: 300px;
    transition: right 0.3s ease-in-out;
    left: 30px;
    padding: 0;
    list-style: none;
    z-index: 99;
    background-color: var(--verde-winn);
    border-top-right-radius: 15px 15px;
    border-bottom-right-radius: 15px 15px;
}

.obligatorio {
    color: var(--rojo-winn);
}

/*--------------------------------------------------------------
# BOTONES PAGINACION BOOTSTRAP
--------------------------------------------------------------*/

.pagination > li > a {
    background-color: var(--verde-winn);
    color: #fff;
    cursor:pointer;
}

    .pagination > li > a:focus,
    .pagination > li > a:hover,
    .pagination > li > span:focus,
    .pagination > li > span:hover {
        color: var(--verde-winn) !important;
        background-color: #fff !important;
        border-color: var(--verde-winn) !important;
    }

