/*$primary: #0A52E4*/

@font-face {
    font-family: "metropolis";
    src: url("../fonts/Metropolis-Medium.otf") format("opentype");
}

@font-face {
    font-family: "days";
    src: url("../fonts/days.ttf") format("opentype");
}

body {
    background-color: #dedede;
    margin: 0;
    padding: 0;
    font-family: 'days', sans-serif;
    overflow-x: hidden;
}

input:focus {
    outline: none;
    box-shadow: none;
    border: none;
}

input {
    color: rgb(182, 182, 182);
    font-size: 16px;
}

input::placeholder {
    color: rgb(182, 182, 182);
    font-size: 16px;
}


/*a:hover {
    cursor: url(../img/icons/cursor-pointer2.png) 0 0, pointer;
}*/


/*color-primary: #374cb5 */


/*color-primary-l: #6588c8 */


/*color-primary-d: #081f62 */

.w-10 {
    width: 10% !important;
}

.w-15 {
    width: 15% !important;
}

.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

.section-banner {
    width: 96%;
    margin: 0 auto;
    margin-top: 20px;
    background: #6588C8;
    background: linear-gradient(90deg, rgba(101, 136, 200, 1) 0%, rgba(101, 136, 200, 1) 35%, rgba(55, 76, 181, 1) 100%);
    min-height: 100vh;
    border-radius: 40px;
}

.section-nav {
    width: 98% !important;
    margin-left: 1%;
    margin-top: 10px;
}

.section {
    width: 96% !important;
    margin-left: 2%;
    margin-right: 2%;
    margin-top: 50px;
}

.whatsapp-container {
    position: fixed;
    bottom: 0;
    right: 0;
    padding-bottom: 20px;
    margin-right: 10px;
    z-index: 999
}

.whatsapp-img {
    padding: 10px 10px;
    width: 70px;
    border-radius: 65%;
    background-color: #081f62;
    box-shadow: 0px 0px 15px #6588c8;
    animation: infinite resplandorAnimation 3s;
}

.mindu-btn-form {
    background: #6588C8;
    background: linear-gradient(90deg, rgba(101, 136, 200, 1) 0%, rgba(55, 76, 181, 1) 50%, rgba(8, 31, 98, 1) 100%);
    color: white;
    width: 100%;
    height: 70px;
    border-radius: 50px;
}

.mindu-btn-form-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 40px;
    padding-left: 20px;
}

.mindu-btn-form:hover {
    background-color: #6588c8;
    color: white;
}

.mindu-btn-menu {
    background-color: #374cb5;
    border-radius: 20px;
    color: white;
    width: 120px;
}

.mindu-btn-menu:hover {
    background-color: #6588c8;
    color: white;
}

.icon-arrow-form {
    background: white;
    color: #2348ff;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: -10px;
    font-size: 28px;
}

.border-div-input {
    border-right: 2px solid #cecece;
    margin-top: 20px;
    width: 100%;
}

.border-div-input-r {
    margin-top: 20px;
    width: 100%;
}

.title {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
}

.banner-home {
    background: url(../img/home-banner-bg.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
}

.banner-title {
    font-size: 5vw;
    font-weight: bold;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 3vh;
    color: white;
}

.section-title {
    font-size: 3vw;
    font-weight: bold;
}

.form-container {
    width: 100%;
}

.form-card {
    border-radius: 50px;
    margin-left: 20%;
    margin-right: 20%;
}


/*SLIDER*/

.slide-section {
    overflow: hidden;
    position: relative;
    padding-top: 50px;
    padding-bottom: 30px;
}

.slider-track {
    display: flex;
    width: max-content;
    animation: scroll 18s linear infinite;
    overflow-x: scroll;
    scrollbar-width: none;
}

.slide {
    width: 750px;
    border: 4px solid white;
    /* ancho fijo de cada sección */
    height: 380px;
    margin-right: 20px;
    flex-shrink: 0;
    /* evita que se reduzcan */
    border-radius: 20px;
}

.slide::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40%;
    /* 50% de la tarjeta, ajustable */
    background: linear-gradient( to top, rgba(0, 0, 0, 0.8), /* oscuro abajo */
    rgba(0, 0, 0, 0)/* transparente arriba */
    );
    z-index: 1;
    border-radius: 20px;
}

.slide-bg-1 {
    background: url(../img/carousel1.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover
}

.slide-bg-2 {
    background: url(../img/carousel2.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover
}

.slide-bg-3 {
    background: url(../img/carousel3.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.slide-principal {
    position: relative;
}

.slide-content {
    position: absolute;
    bottom: 0;
    color: white;
    text-align: center;
}

.slide-title {
    color: white;
    font-size: 28px;
    font-weight: bold;
    font-family: 'metropolis', sans-serif;
    position: relative;
    z-index: 2;
}

.slide-subtitle {
    color: white;
    font-size: 18px;
    border: 1px solid white;
    border-radius: 20px;
    padding: 10px;
    position: relative;
    z-index: 2;
}

.section-w {
    display: block;
}

.section-m {
    display: none;
}

.section-statistics {
    width: 96%;
    min-height: 50vh;
    background-color: #d1d7ed;
    margin-left: 2%;
    margin-right: 2%;
    border-radius: 40px;
}

.margin-statistics-content {
    padding-top: 4%;
    padding-bottom: 4%;
    padding-left: 6%;
    padding-right: 6%;
}

.statistics-card {
    background: #081F62;
    background: linear-gradient(90deg, rgba(8, 31, 98, 1) 0%, rgba(55, 76, 181, 1) 50%, rgba(101, 136, 200, 1) 100%);
}

.statistics-cardb {
    padding-bottom: 0px;
}

.statistics-icon {
    width: 100%;
}

.align-title-statistics {
    text-align: left;
}

.center {
    text-align: center;
}

ul li::marker {
    color: white;
}

.statistics-card-results {
    border-radius: 35px;
    font-family: 'metropolis', sans-serif;
    height: 150px;
}

.disorders-slide {
    width: 96%;
    min-height: 50vh;
    background-color: #f5f5f5;
    margin-left: 2%;
    margin-right: 2%;
    border-radius: 40px;
}

.slide-section-disorders {
    overflow: hidden;
    position: relative;
    padding-top: 50px;
    padding-bottom: 30px;
}

.slider-track-disorders {
    display: flex;
    width: max-content;
    animation: scroll 18s linear infinite;
    overflow-x: scroll;
    scrollbar-width: none;
}

.slide-disorders {
    width: 300px;
    /* ancho fijo de cada sección */
    height: 100%;
    margin-right: 20px;
    flex-shrink: 0;
    /* evita que se reduzcan */
    border-radius: 35px;
}

.disorder-text-bg {
    border: 0;
    border-radius: 35px
}

.div1 {
    width: 100%;
    height: 200px;
    border-radius: 35px;
}

.div2 {
    width: 100%;
    height: 80px;
    text-align: left;
    font-family: 'metropolis', sans-serif;
}

.select-card:hover {
    cursor: pointer;
    background: linear-gradient(90deg, rgba(8, 31, 98, 1) 0%, rgba(55, 76, 181, 1) 50%, rgba(101, 136, 200, 1) 100%);
}

.disorder-img {
    height: 100%;
    text-align: center;
    background-color: #ebebeb;
    text-align: center;
}

.select-card:hover+.disorder-img {
    background: linear-gradient(90deg, rgba(8, 31, 98, 1) 0%, rgba(55, 76, 181, 1) 50%, rgba(101, 136, 200, 1) 100%);
}

.disorder-card-title {
    font-size: 14px;
    color: gray;
}

.disorder-card-subtitle {
    font-size: 20px;
    font-weight: bold;
}

.program-container {
    width: 96%;
    min-height: 100vh;
    background-color: #d1d7ed;
    margin-left: 2%;
    margin-right: 2%;
    border-radius: 40px;
    margin-top: 3%;
}

.program-image {
    width: 85%;
    height: auto;
    object-fit: cover;
    z-index: 2;
    margin-top: -90px;
}

.program-padding {
    padding: 10% 4% !important;
}

.program-title {
    font-family: 'metropolis', sans-serif;
    font-weight: bold;
}

.program-text {
    font-family: 'metropolis', sans-serif;
    font-size: 14px;
}

.program-intervention {
    font-family: 'metropolis', sans-serif;
}

.program-intervention-padding {
    padding: 5% 0% 0 0%;
    text-align: center;
}

.program-padding-txt {
    padding-left: 30%;
    padding-right: 30%;
}

.program-intervention-title {
    font-weight: bold;
}

.intervention-cards {
    width: 375px;
    height: 250px;
}

.circular {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circular img {
    width: 30px;
    object-fit: cover;
    text-align: right;
}

.flotante-derecha {
    float: right;
    margin-left: 10px;
}

.contenedor-float {
    width: 100%;
    padding: 10px;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.padding-cards {
    padding-left: 5%;
    padding-right: 5%;
}

.feeding-container {
    width: 96%;
    min-height: 55vh;
    margin-left: 2%;
    margin-right: 2%;
    border-radius: 40px;
}

.feeding-banner {
    background: url(../img/food.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    max-height: 55vh !important;
    height: 55vh !important;
}

.feeding-text {
    color: white;
    font-size: 4vw;
}

.btn-feeding {
    background-color: #374cb5;
    background: linear-gradient(90deg, rgba(101, 136, 200, 1) 0%, rgba(55, 76, 181, 1) 50%, rgba(8, 31, 98, 1) 100%);
    color: white;
    width: 27%;
    height: 70px;
    border-radius: 50px;
}

.mindu-btn-form-content2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 40px;
    padding-left: 20px;
}

.icon-arrow-form2 {
    background: white;
    color: #2348ff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: -10px;
    font-size: 28px;
}

.feeding-btn-text {
    font-size: 20px;
}

.installation-section {
    width: 96%;
    min-height: 80vh;
    background-color: #f6f6f6;
    margin-left: 2%;
    margin-right: 2%;
    border-radius: 40px;
    margin-top: 2%;
}

.slide-installation-section {
    overflow: hidden;
    position: relative;
    padding-top: 50px;
    padding-bottom: 30px;
}

.slider-track-installation {
    display: flex;
    width: max-content;
    animation: scroll 18s linear infinite;
    overflow-x: scroll;
    scrollbar-width: none;
}

.slide-installation {
    width: 800px;
    height: 520px;
    margin-right: 60px;
    flex-shrink: 0;
    border-radius: 20px;
}

.installation-content {
    width: 100%;
}

.div-instalation {
    width: 100%;
    height: 250px;
    border-radius: 35px;
    text-align: center;
    font-family: 'metropolis', sans-serif;
}

.div-instalation2 {
    width: 100%;
    height: 250px;
    border-radius: 35px;
}

.div-instalation3 {
    width: 100%;
    height: 520px;
    border-radius: 35px;
}

.installation-img {
    height: 250px;
    width: 100%;
    background-image: url(../img/saladeespera.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
}

.installation-img2 {
    background-image: url(../img/grupal.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    height: 500px;
    width: 100%;
}

.installation-img3 {
    height: 250px;
    width: 100%;
    background-image: url(../img/room.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
}

.installation-img4 {
    background-image: url(../img/sala.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    height: 500px;
    width: 100%;
}

.text-cards-title {
    font-size: 2rem;
    color: #081F62;
    font-weight: bold;
}

.text-cards {
    font-size: 1.5rem;
}

.installation-txt {
    text-align: left;
}

.footer-section {
    width: 96%;
    background-color: black;
    margin-left: 2%;
    margin-right: 2%;
    border-radius: 40px;
    margin-top: 2%;
    color: white;
    font-family: 'metropolis', sans-serif;
}

.padding-footer-p1 {
    padding-top: 5%;
    padding-left: 2%;
    padding-right: 2%;
    padding-bottom: 3%;
    border-bottom: 1px solid white;
}


/* 1. Contenedor principal (Formulario) */

.subscription-form {
    display: flex;
    /* Permite que los elementos internos se alineen */
    max-width: 550px;
    background-color: #000;
    /* Fondo negro */
    border-radius: 50px;
    /* Redondea todo el formulario para contener los elementos */
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* Borde sutil */
}


/* 2. Campo de Entrada (Input) */

.email-input {
    flex-grow: 1;
    /* Ocupa el espacio restante */
    padding: 15px 25px;
    background: transparent;
    border: none;
    outline: none;
    /* Quita el resplandor de enfoque por defecto */
    color: #fff;
    /* Texto blanco */
    font-size: 16px;
    /* Estilo del placeholder */
}


/* Estilo específico para el placeholder */

.email-input::placeholder {
    color: #ccc;
}


/* 3. Botón de Suscripción */

.subscribe-button {
    /* Define la forma de píldora para el botón */
    border-radius: 50px;
    /* Aplica el degradado de color (azul oscuro a azul vibrante) */
    background: linear-gradient(90deg, rgba(8, 31, 98, 1) 0%, rgba(55, 76, 181, 1) 50%, rgba(101, 136, 200, 1) 100%);
    ;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    margin-right: 0;
    transition: background 0.3s ease;
}

.subscribe-button:hover {
    background: linear-gradient(145deg, #5a82ff, #2354bb);
}


/* Contenedor de la lista */

.social-list {
    list-style: none;
    /* Quita los puntos de la lista */
    padding: 0;
    margin: 0;
    display: flex;
    /* Alinea los iconos horizontalmente */
    gap: 15px;
    /* Espacio entre los iconos */
}

.social-list li {
    display: inline-block;
    /* Asegura que los li se muestren en línea */
}


/* Estilo del enlace (El círculo exterior) */

.social-list a {
    /* Define el tamaño del círculo y la alineación */
    width: 50px;
    height: 50px;
    display: flex;
    /* Usa flex para centrar el icono dentro del círculo */
    justify-content: center;
    align-items: center;
    /* Propiedad clave para hacerlo circular */
    border-radius: 50%;
    /* Estilo del borde blanco */
    border: 2px solid white;
    /* Estilos de color (Fondo oscuro, transparente o negro) */
    background-color: #000;
    transition: all 0.3s ease;
}


/* Estilo del Icono (El 'i' de Font Awesome) */

.social-list i {
    font-size: 20px;
    /* Tamaño del icono */
    color: white;
    /* Color blanco */
}


/* Opcional: Efecto al pasar el ratón (Hover) */

.social-list a:hover {
    background-color: white;
    /* Invierte el fondo y el color */
    border-color: white;
}

.social-list a:hover i {
    color: #1a1a1a;
    /* El icono se vuelve oscuro */
}

.icon-container {
    display: flex;
    justify-content: flex-end;
    /* Alinea la lista a la derecha */
    width: 100%;
    padding: 10px;
}

.footer-title {
    font-size: 2.5vw;
    font-weight: bold;
}

.footer-title-align {
    text-align: left;
}

.footer-btn-align {
    text-align: center;
}

.footer-padding-p2 {
    padding-top: 3%;
}

.footer-list {
    font-size: 16px;
}

.footer-img-align {
    text-align: left;
}

.padding-stores {
    padding-top: 15%;
}

.padding-contact {
    text-align: center;
    padding-top: 0px;
}

.whatsapp-container {
    position: fixed;
    bottom: 0;
    right: 0;
    padding-bottom: 20px;
    padding-right: 10px;
    z-index: 999
}

.whatsapp-img {
    padding: 10px 10px;
    width: 70px;
    border-radius: 65%;
    background-color: #0A52E4;
    box-shadow: 0px 0px 15px rgba(10, 82, 228, 0.97);
    animation: infinite resplandorAnimation 3s;
}

.improve-col {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 200px;
}

.improve-bar {
    width: 25px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    border-radius: 6px;
}

.improve-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #b8d0ff;
    position: absolute;
    margin-top: -20px;
    margin-left: -12px;
    border: solid 6px white;
    text-align: center;
    font-size: 12px;
    padding-top: 8px;
}

.header-p {
    width: 50%;
    position: relative;
    z-index: 1;
}

.accordion-item {
    border-radius: 30px !important;
    overflow: hidden;
}

.accordion-button::after {
    background-image: none !important;
    width: auto !important;
    height: auto !important;
}

.accordion-button.collapsed::after {
    content: "+";
    font-size: 1.5rem;
    color: #333;
}

.accordion-button:not(.collapsed)::after {
    content: "-";
    font-size: 1.5rem;
    color: #333;
}

@media screen and (max-width: 1425px) {}

@media (max-width: 1275px) {
    .section1-img-l {
        bottom: 120px
    }
    .img-l {
        max-width: 60%;
    }
    .btn-feeding {
        background-color: #374cb5;
        background: linear-gradient(90deg, rgba(101, 136, 200, 1) 0%, rgba(55, 76, 181, 1) 50%, rgba(8, 31, 98, 1) 100%);
        color: white;
        width: 50%;
        height: 70px;
        border-radius: 50px;
    }
    .footer-title {
        font-size: 3vw;
        font-weight: bold;
    }
    .header-p {
        width: 80%;
    }
}

@media screen and (max-width: 991px) {
    /*Límite del header*/
    .btn-feeding {
        background-color: #374cb5;
        background: linear-gradient(90deg, rgba(101, 136, 200, 1) 0%, rgba(55, 76, 181, 1) 50%, rgba(8, 31, 98, 1) 100%);
        color: white;
        width: 50%;
        height: 70px;
        border-radius: 50px;
    }
    .footer-title {
        font-size: 3.5vw;
        font-weight: bold;
    }
    .footer-title-align {
        text-align: center;
    }
    .footer-img-align {
        text-align: center;
    }
    .padding-stores {
        padding-top: 5%;
        padding-bottom: 7%;
    }
    .icon-container {
        display: flex;
        justify-content: center;
        /* Alinea la lista a la derecha */
        width: 100%;
        padding: 10px;
    }
    .padding-contact {
        text-align: left;
    }
    .subscription-form {
        display: flex;
        /* Permite que los elementos internos se alineen */
        max-width: 100%;
        background-color: #000;
        /* Fondo negro */
        border-radius: 50px;
        /* Redondea todo el formulario para contener los elementos */
        padding: 5px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        /* Borde sutil */
        justify-content: center !important;
    }
    .installation-txt {
        text-align: center;
    }
    .align-title-statistics {
        text-align: center;
    }
    .program-padding-txt {
        padding-left: 20%;
        padding-right: 20%;
    }
    .whatsapp-img {
        width: 50px;
    }
}

@media screen and (max-width: 810px) {
    .slide {
        width: 550px;
        height: 450px;
    }
    .header-p {
        width: 95%;
    }
}

@media screen and (max-width: 767px) {
    /*Límite de col-sm*/
    .section-w {
        display: none !important;
        visibility: hidden;
    }
    .section-m {
        display: block;
    }
    .border-div-input {
        border-bottom: 2px solid #cecece;
        border-right: none;
        margin-top: 5px;
        width: 100%;
    }
    .border-div-input-r {
        border-bottom: none;
        margin-top: 5px;
        width: 100%;
    }
    .form-card {
        border-radius: 35px;
        margin-left: 5%;
        margin-right: 5%;
    }
    .program-image {
        width: 85%;
        height: auto;
        object-fit: cover;
        z-index: 2;
        margin-top: -40px;
    }
    .feeding-container {
        width: 96%;
        min-height: 40vh;
        margin-left: 2%;
        margin-right: 2%;
        border-radius: 35px;
    }
    .feeding-banner {
        background: url(../img/food.png) no-repeat center center fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        max-height: 40vh !important;
        height: 40vh !important;
    }
    .feeding-text {
        color: white;
        font-size: 5vw;
    }
    .feeding-btn-text {
        font-size: 18px;
    }
    .btn-feeding {
        background-color: #374cb5;
        background: linear-gradient(90deg, rgba(101, 136, 200, 1) 0%, rgba(55, 76, 181, 1) 50%, rgba(8, 31, 98, 1) 100%);
        color: white;
        width: 80%;
        height: 60px;
        border-radius: 50px;
    }
    .mindu-btn-form-content2 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 50px;
        padding-left: 20px;
    }
    .icon-arrow-form2 {
        background: white;
        color: #2348ff;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: -10px;
        font-size: 20px;
    }
    .footer-title {
        font-size: 4vw;
        font-weight: bold;
    }
    .padding-contact {
        text-align: left;
        padding-top: 35px;
    }
    .program-padding-txt {
        padding-left: 10%;
        padding-right: 10%;
    }
}

@media screen and (max-width: 619px) {
    .banner-title {
        text-align: center;
        font-size: 7vw;
        color: white;
    }
    .feeding-container {
        width: 96%;
        min-height: 40vh;
        margin-left: 2%;
        margin-right: 2%;
        border-radius: 35px;
    }
    .feeding-banner {
        background: url(../img/food.png) no-repeat center center fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        max-height: 40vh !important;
        height: 40vh !important;
    }
    .slide {
        width: 420px;
        height: 550px;
    }
}

@media screen and (max-width: 414px) {}

@media screen and (max-width: 380px) {}