* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

:root {
    /* Colores */
    --color-white: #FFFFFF;
    --color-black: #000000;
    --light-blue: #0F75BD;
    --blue-opiniones: #e4f0f9;
    --light-pink: #FCF5F3;
    --purple: #92278F;
    --gray-footer: #d0d0d0;
    --pink-form: #ffeafe;
    --green: #84BD51;
    --gray-text: #A6A6A6;
    --light-gray: #f4f4f5;
    /* Tamaño de fuentes */
    --sm: 1.6rem;
    --md: 2rem;
    --lg: 3.2rem;
    --xl: 7.2rem;

    /* Transitions */
    --in: all 0.3s ease-in-out;
    --out: all 0.6s ease-in-out;

    /*formas*/
    --border-radius: 8px;
}

.whatsapp-button{
    position: fixed;
    bottom: 100px;
    right: 15px;
    z-index: 99;
    background-color: #25d366;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    width: 50px;
    height: 50px;
    font-size: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
    -moz-box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
    box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
    animation: effect 5s infinite ease-in;
}

@keyframes effect {
    20%, 100% {
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
    0%, 10%{
        width: 55px;
        height: 55px;
        font-size: 35px;
    }
    5%{
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
}

.whatsapp-button:hover {
    text-decoration: none;
    color: #fff;
}

/* Botones */
.button {
    border: none;
    border-radius: var(--border-radius);
    padding: 16px 28px;
    font-size: var(--sm);
}

.button--transparent {
    border: 1px solid var(--color-white);
    color: var(--color-white);
    background-color: transparent;
    transition: var(--out);
}

.button--transparent:hover {
    border: 1px solid rgba(255, 255, 255, 0);
    background-color: var(--light-blue);
    transition: var(--in);
}

.button--purple {
    background-color: var(--purple);
    color: var(--color-white);
    transition: var(--out);
    width: fit-content;
}

.button--purple:hover {
    color: var(--purple);
    background-color: var(--color-white);
    transition: var(--in);
}

.button--blue {
    background-color: var(--light-blue);
    color: var(--color-white);
    transition: var(--out);
    width: fit-content;
}

.button--blue:hover {
    background-color: var(--color-white);
    color: var(--purple);
    transition: var(--out);
    width: fit-content;
}

.button--green {
    background-color: var(--green);
    color: var(--color-white);
    transition: var(--out);
    width: fit-content;
}

.button--green:hover {
    background-color: var(--light-blue);
    transition: var(--out);
}

.button__blue--group {
    background-color: var(--light-gray);
    color: var(--color-black);
    border-radius: var(--border-radius) !important;
    border: none !important;
    max-width: 100%;
    min-width: 20%;
    width: 100%;
    font-size: var(--sm);
}

.button__blue--group:hover {
    background-color: var(--light-blue);
    color: var(--color-white);
    transition: var(--out);
}

.btn-check:checked+label {
    background-color: var(--light-blue) !important;
    color: var(--color-white) !important;
}

.button--play {
    border: none;
    background-color: var(--color-white);
    padding: 12px;
    border-radius: 50%;
    height: 64px;
    width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button--play svg {
    height: 24px;
}

.w_all {
    width: 100% !important;
}

/* Header */

.header.padding {
    padding: 12px 32px;
}

#navBar.bg-light {
    font-size: var(--sm);
    background-color: var(--color-white) !important;
}

#navBar .collapse {
    justify-content: flex-end;
}

.navbar-nav {
    /* margin-top: 30px; */
}

#navBar .navbar-nav .nav-link {
    margin: 0 8px;
}

.navbar--logo {
    width: 120px;
}

a.nav-link {
    transition: all 0.9s ease-in-out;
    border-radius: 4px;
}

a.nav-link:hover {
    border-bottom: 1px solid var(--light-blue);
    transition: all 0.9s ease-in-out;
}

.footer--logo {
    width: 300px;
}

.footer__social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    margin-top: 20px;
}

a.footer--smedia {
    text-decoration: none;
    background-color: var(--color-white);
    padding: 8px;
    margin: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--out);
    width: 40px;
    height: 40px;
}

.footer--smedia svg {
    width: 24px;
    height: 24px;
    fill: var(--light-blue);
}

.footer__dir {
    display: flex;
    align-items: flex-start;
    text-align: left !important;
}

.footer__dir .icon {
    width: 32px;
    margin: 8px;
}

.footer__email,
.footer__tel {
    display: flex;
    align-items: center;
}

.footer__email .icon,
.footer__tel .icon {
    margin: 8px;

}

/* Clases Reutilizables */
.title {
    font-size: var(--lg);
    font-weight: bold;
    margin-bottom: 24px;
}

.text {
    font-size: var(--sm);
}

green {
    color: var(--green);
}

.otro {
    background-color: rgba(0, 0, 0, 0.6);
}

/* Página index */
.index__main--hero {
    position: relative;
}

.index__main--hero img {
    width: 100%;
}

.index__main--hero .hero__text {
    color: var(--color-white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__video-container>div {
    position: absolute;
    top: 48%;
    transform: translateY(-50%);
    padding: 42px;
    height: auto;

}

@media (max-width: 600px) {
    .hero__video-container>div {
        padding: 12px;
    }

    #carouselOpiniones {
        display: flex;
        flex-direction: column;
    }

    #carouselOpiniones .opiniones__texto {
        width: 100% !important;
    }

    #carouselOpiniones .carousel {
        width: 100% !important;
    }


}



video.video {
    width: 100%;
}

.hero__text .hero__text--index {
    background-image: none !important;
    min-height: 360px;
}

.index__main--hero .hero__text--nosotros {
    background-image: url('../images/about_head.png');
    min-height: 360px;
}

@media (max-width: 576px) {
        .index__main--hero .hero__text--nosotros {
        min-height: 50px;
    }
}

.index__main--hero .hero__text--mayores {
    min-height: 360px;
    background-image: url('../images/heroGastosmayores.jpg')
}

.index__main--hero .hero__text--educativo {
    background-image: url('../images/educativo_head.jpg');
    min-height: 360px;
}

.index__main--hero .hero__text--retiro {
    min-height: 360px;
    background-image: url('../images/viejitosGolf.png');
    background-position: top;

}

.index__main--hero .hero__text--blog {
    min-height: 360px;
    background-image: url('../images/comofuncoina_head.jpg');
}

.index__main--hero .hero__text--contacto {
    background-image: url('../images/heroContacto.jpg');
    min-height: 360px;
}

.credenciales {
    margin: 64px 32px;
    text-align: center;
    column-gap: 1em;

}

.credenciales h2 {
    font-size: var(--lg);
}

.container--credenciales>img {
    padding: 0% 1%;
}

.container--credenciales {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 120px));
    gap: 24px;
    align-items: center;
    justify-content: center;
    margin: 32px;

}

.container--credenciales>* {
    width: 100%;
}

.index__main--servicios {
    display: grid;
    align-items: center;
    gap: 24px;
}

.servicios__items {
    display: grid;
    gap: 12px;

}

.servicios__item {
    background-color: var(--blue-opiniones);
    font-size: var(--md);
    font-weight: bold;
    flex-direction: column;
    display: flex;
    justify-content: space-between;
    padding: 16px;
    transition: var(--out);
}

.servicios__item:hover {
    background-color: #A2C8E3;
    transition: var(--in);
}

a.servicios__item {
    text-decoration: none;
}

a.servicios__item p {
    color: var(--color-black);
}

.servicios__item img {
    height: 60px;
    width: 60px;
}

.section__qsomos {
    display: grid;
    background-color: var(--light-blue);
    align-items: center;
}

.section__qsomos img {
    width: 100%;
}

.qsomos__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--color-white);
    padding-top: 32px;
    padding-bottom: 32px;
}

.qsomos__content>* {
    margin-bottom: 24px;
}

.qsomos__content h2 {
    font-weight: bold;
    font-size: var(--lg);
}

.qsomos__content h5 {
    font-size: var(--md);
}

.qsomos__content p {
    font-size: var(--sm);
}

.qsomos__content--ul {
    font-size: var(--sm);
    list-style: none;
}

.qsomos__content--ul li::before {
    content: "\2022";
    display: inline;
    color: var(--green);
    font-size: 16px;
    vertical-align: baseline;
}

.max-width.section__nproceso {
    margin-top: 80px;
    margin-bottom: 80px;
}

.max-width.section__nproceso h2 {
    font-size: var(--lg);
    font-weight: bold;
    margin-bottom: 24px;
    text-align: center;
}

.carousel__card {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 4px;
    margin: 12px 0;
}


.carousel__card img {
    width: 100%;
    max-width: auto;
}

.carousel__card h4 {
    font-size: var(--md);
    margin-bottom: 16px;
    font-weight: bold;
}

.carousel__card>div {
    padding: 24px;
    font-size: var(--sm);
}

.carousel-indicators {
    bottom: -98px;
    padding-bottom: 20px;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--light-blue);
}

.section__opiniones .carousel-control-prev,
.section__opiniones .carousel-control-next {
    height: 40px !important;
    visibility: visible;
    background-color: var(--color-white);
    opacity: 1;
    color: #000;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    position: absolute;
    top: 100%;
}

.section__nservicios {
    display: grid;
    align-items: center;
    background-color: var(--purple);
}

.section__nservicios img {
    width: 100%;
    height: auto;
}

.section__opiniones.padding {
    display: grid;
    /* background-color: var(--blue-opiniones); */
    align-items: center;
    padding-top: 32px;
    padding-bottom: 128px;
}

.section__opiniones h2 {
    font-size: var(--lg);
    margin: 12px 24px;
}

.section__opiniones button {
    background-color: var(--color-white);
    border-radius: 32px;
    margin: 8px;
    padding: 8px 32px;
}

.opiniones__container {
    display: grid;
    gap: 24px;
}

.opinion {
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: var(--sm);
    padding: 24px;
    box-shadow: rgba(0, 0, 0, 0.35) 2px 2px 8px;
    /* margin: 1% 2%; */
    border-radius: var(--border-radius);
    min-height: 240px;
}

.opinion>div {
    display: flex;
    align-items: center;
}

.opinion img {
    width: 64px;
}

.opinion__nombre {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 16px;
}

.opinion__nombre img {
    width: 80px;
}

/********INDEX MAPA SECCION ******/
.mapa {
    width: 100%;
    transition: all 0.6s ease-in-out;
}

.mapa:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: all 0.3s ease-in-out;
}

.form__contacto {
    display: grid;
    border-radius: var(--border-radius);
    border: 1px solid var(--light-blue);
    text-align: center;
    margin: 2% 8%;
    row-gap: 1em;
    column-gap: 1em;
    min-width: min-content;
    background-color: var(--color-white);
}

.form__contacto>.input {
    border: 1px solid var(--light-blue);
    background-color: var(--color-white);
    /* font-size: var(--sm); */
}

.form__contacto>textarea {
    width: 100%;
    height: 200px;
    resize: none;
}

.form__contacto>button {
    justify-self: center;
}

.index__contacto {
    position: relative;
    height: 1000px;
    max-height: 1200px;
}

.form__contacto--sobreponer {
    position: absolute;
    margin: 0 auto;
    top: 400px;
    width: 100%;
}

/***** Banner video retiro***/

.video__hero {
    color: var(--color-white);
    background-position: center right -700px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('../images/videoEducativos.png');
    min-height: 480px;
}

.video__hero--retiro {
    background-image: url('../images/mayoresVideo.png');
    color: var(--color-white);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 480px;
}

@media (min-width: 576px) {

    .video__hero {
        color: var(--color-white);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url('../images/videoEducativos.png');
        min-height: 480px;
    }

    .video__hero--retiro {
        background-image: url('../images/mayoresVideo.png');
        color: var(--color-white);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        min-height: 480px;
    }

}

.video__hero--fondo {
    background-color: rgba(0, 0, 0, 0.4);
    min-height: 480px;
}

/* .video__hero video{
    width: 100%;
    height: 1000px;
    margin: 0;
    padding: 0;
    object-fit: inherit;
} */

.video__button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video__texto {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video__hero h2 {
    color: var(--color-white);
}

.video__hero p {
    color: var(--color-white);
}

#frameYoutube {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;

}

/*BANNER WHATS Y COTIZAR GRID-- SEGUROS MAYORES */
.segMayores__cotizar {
    display: grid;
    column-gap: 1.5em;
}

/******** BANNER WHATSAPP ******/
.banner__whatsapp {
    display: grid;
    border-radius: var(--border-radius);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    align-self: center;
    justify-self: center;
}

.banner__whatsapp h2,
.whatsapp__contacto p {
    font-size: var(--sm);
}

.banner__whatsapp>p,
hr {
    color: var(--gray-text);
    margin: 0 0 0.5% 0;
}

.whatsapp__contacto {
    display: grid;
    align-items: center;
    padding: 12px;
    grid-template-columns: 1fr 3fr;
    margin: 12px auto;
}

.whatsapp__contacto a {
    text-decoration: none;
    color: var(--color-white);
}

.banner__whatsapp span {
    color: var(--purple);
    font-size: var(--sm);
    grid-column: 1/3;
    text-align: center;
}

.icon__whatsapp {
    fill: var(--color-white);
    padding: 2% 16%;
}

/******** FORM COTIZAR PREMIUM ******/
.form__cotizarPremium {
    border: 1px solid var(--purple);
    border-radius: var(--border-radius);
    width: fit-content;
    align-self: center;
    justify-self: center;
    font-size: var(--sm);
}

.form__cotizarPremium h2 {
    text-align: center;
    color: var(--light-blue);
    font-size: var(--lg);
    margin-bottom: 32px;
}

.form__cotizarPremium> :not(h2) {
    width: 100%;
}

.cotizar__datos {
    display: flex;
    row-gap: 1em;
    flex-direction: column;
}

.cotizar__datos>* {
    margin: 0;
}

.cotizar__datos .btn.btn-outline-primary.button__blue--group.me-2 {
    margin: 8px 0;
}

select {
    border: 1px solid #FFFFFF !important;
    border-radius: var(--border-radius);
    background-color: var(--light-gray);
    height: 50px;
    padding: 6px 15px;
}

.form__cotizarPremium input {
    border: 1px solid #FFFFFF !important;
    border-radius: var(--border-radius);
    background-color: var(--light-gray);
    height: 50px;
    padding: 6px 15px;
    width: 100%;
    margin: 8px 0;
}

.form__cotizarPremium input::placeholder {
    color: var(--color-black);
}

select option {
    background-color: var(--light-gray);
    border: 1px solid #FFFFFF !important;
}

/*** BENEFICIOS SEGUROS MAYORES **/
.beneficios {
    display: grid;
    text-align: center;
    row-gap: 1em;
    column-gap: 1em;
    margin: 3% 0;
}

.beneficios h2 {
    font-size: var(--lg);
}

.beneficio__circ h3 {
    color: var(--purple);
}

.beneficio__circ p {
    padding: 0 5%;
}


/*BANNER ZOOM Y COTIZAR GRID-- CONTACTO */
.bannerContacto {
    text-align: center;
    margin: 3% 4%;
}

.banner__zoom img {
    width: 100%;
    max-width: 300px;
}

/********FOOTER ******/
footer {
    width: 100%;
    background-color: var(--gray-footer);
    display: grid;
    column-gap: 3em;
}

.logo__footer {
    width: 50px;
}

.footer__blog {
    text-align: center;
}

.footer__blog>a {
    color: black;
}

.icon {
    width: 15px;
    fill: var(--light-blue);
    margin: 0 1%;
}

.icon__morado {
    width: 60px !important;
    height: 60px !important;
    background-color: var(--color-white);
    padding: 12px;
    border-radius: 50%;
}

.icon__proteccion {
    width: 80px !important;
    height: auto;
    margin: 12px auto;
}

/* ============== Página de nostros ============ */
.nosotros__mision {
    display: grid;
    grid-template-columns: 5fr 4fr;
    font-size: var(--md);
}

.nosotros__mision>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nosotros__mision h1 {
    font-size: var(--lg);
    font-weight: bold;
    margin-bottom: 24px;
}

.nosotros__mision img {
    width: 100%;
}

.nosotros__filosofia {
    font-size: var(--sm);
    background-color: var(--purple);
    color: var(--color-white);
}

.qhacemos {
    background-color: var(--blue-opiniones);
    margin: 32px 0;
}

.two__cols {
    display: grid;
    gap: 24px;
}

.three__cols {
    display: grid;
    gap: 24px;
}

.nosotros__equipo>.title {
    margin: 32px 0;
    text-align: center;
}

.equipo__founder img {
    width: 100%;
    padding: 5% 0;
    height: 100%;
}

.equipo__founder {
    position: relative;
}

.equipo__founder>div {
    position: absolute;
    bottom: -5%;
    padding: 34px 20px;
    color: var(--color-white);
    width: 100%;
}

@media (min-width: 576px) {

    .equipo__founder>div {
        position: absolute;
        bottom: -5%;
        padding: 60px;
        color: var(--color-white);
        width: 100%;
    }
}


.equipo__founder--title {
    font-size: var(--lg);
}

.equipo__text {
    font-size: var(--sm);
    margin: 100px 0;
}

.equipo__text.promesas .opinion {
    transition: all 0.6s ease-in-out;
}

.equipo__text.promesas .opinion:hover {
    background-color: var(--blue-opiniones);
    transition: all 0.3s ease-in-out;
}

.qsomos__content.quote .title {
    font-size: var(--lg);
}

.qsomos__content.quote p {
    font-size: var(--lg);
}

.blog__video--grande {
    width: 100%;
    aspect-ratio: 16/9;
}

.founding__parner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.founding__parner h3 {
    margin: 0;
}

.founding__parner i {
    font-size: var(--lg);
    margin-left: 8px;
}

section.segMayores__cotizar.seguro__medicosm .form__cotizarPremium {
    width: 100%;
}

@media (min-width: 320px) {

    /* Clases Reutilizables */
    .padding {
        padding: 20px 5%;
    }

    .padding--hero {
        padding: 32px;
    }

    /* Página index */
    .index__main--hero .hero__text h1.index--h1 {
        font-size: var(--md);
        color: var(--color-white);
    }

    .index__main--hero .hero__text h1 {
        font-size: var(--lg);
    }

    .index__main--hero .hero__text p {
        font-size: var(--sm);
    }

    .index__main--servicios,
    .section__qsomos,
    .servicios__items,
    .section__nservicios,
    .nosotros__mision,
    .two__cols,
    .three__cols {
        grid-template-columns: 1fr;
    }

    .beneficios {
        grid-template-columns: 1fr;
    }

    .beneficios h2 {
        grid-column: 1/2;
    }

    .equipo__founder i {
        font-size: 40px;
    }

    .equipo__founder--title {
        font-size: var(--sm);
        margin: 0;
    }

    .banner__whatsapp {
        grid-template-rows: repeat(4, min-content);
        min-width: 100px !important;
        max-width: 100%;
        width: 95%;
    }

    .bannerContacto {
        margin: 0;
    }

    .icon__whatsapp {
        width: 40px;
    }

    .segMayores__cotizar {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .form__cotizarPremium {
        padding: 6% 4%;
        width: 95%;
        min-width: 100px !important;
        max-width: 100%;
    }

    .btn-group {
        flex-direction: column;
    }

    .cotizar__datos {
        padding: 0 6%;
    }

    .servicios__item {
        flex-direction: row;
        align-items: center;
        text-align: center;
        justify-content: space-between;
    }

    footer {
        grid-template-columns: 1fr;
        row-gap: 1em;
        padding: 8% 4%;
        justify-items: center;
    }

    #footer__datos>* {
        margin-bottom: 24px;
        text-align: center;
    }

    #footer__datos>img {
        margin: 12px auto;
    }

    footer>* {
        margin-bottom: 24px;
    }

    .credenciales--index {
        padding-top: 200px;
    }

    .quitar-width .button__blue--group {
        min-width: 25%;
        max-width: 45%;
    }

    .beneficio__circ img {
        width: 30%;
    }

    .equipo__text .two__cols {
        gap: 0;
    }

    .form__contacto--sobreponer {
        margin-bottom: 5%;
    }

    .index__main--servicios {
        padding: 64px 5% !important;
    }

    .form__cotizarPremium,
    .banner__whatsapp {
        margin: 34px 0 !important;
    }

    .qsomos__content.quote .title {
        font-size: var(--sm);
    }

    .qsomos__content.quote p {
        font-size: var(--sm);
    }

    .index__main--servicios h2 {
        font-size: var(--md);
    }


}

@media (min-width: 768px) {

    /* Clases Reutilizables */
    .padding {
        padding: 44px 64px;
    }

    .padding--hero {
        padding: 64px;
    }

    /* Página index */
    .index__main--hero .hero__text h1 {
        font-size: var(--xl);
    }

    .index__main--hero .hero__text p {
        font-size: var(--md);
        margin: 32px 0;
    }

    .index__main--servicios {
        grid-template-columns: 2fr 3fr;
    }

    .section__qsomos {
        grid-template-columns: 3fr 2fr;
    }

    .servicios__items {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .section__nservicios {
        grid-template-columns: 3fr 3fr;
    }

    .nosotros__mision {
        grid-template-columns: 5fr 4fr;
    }

    .two__cols {
        grid-template-columns: 1fr 1fr;
    }

    .three__cols {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .beneficios {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 1fr 3fr 3fr;
    }

    .beneficios h2 {
        grid-column: 1/4;
    }

    .form__contacto {
        grid-template-columns: 1fr 1fr;
    }

    .form__contacto h2 {
        font-size: var(--lg);
        grid-column: 1/3;
    }

    .form__contacto #mensaje,
    #tel,
    button {
        grid-column: 1/3;
    }

    .opiniones__container {
        grid-template-columns: 1fr 1fr;
    }

    .banner__whatsapp {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, min-content);
        min-width: 400px;
        max-width: max-content;
        width: 100%;
        height: min-content;
    }

    .icon__whatsapp {
        width: 60px;
    }

    .banner__whatsapp span {
        grid-column: 1/3;
    }

    .btn-group {
        display: flex;
        flex-direction: row;
    }

    .servicios__item {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
        justify-content: space-between;
    }

    footer {
        grid-template-columns: 30% 30% 40%;
        padding: 2% 5%;
    }

    .quitar-width .button__blue--group {
        min-width: 15%;
        max-width: 20%;
    }

    .beneficio__circ img {
        width: 30%;
    }

    .credenciales--index {
        padding-top: 200px;
    }

    #footer__datos>* {
        margin-bottom: 24px;
        text-align: left;
    }

    .equipo__text .two__cols {
        gap: 32px;
    }

    .index__main--hero .hero__text h1.index--h1 {
        font-size: var(--xl);
    }

    .index__main--servicios h2 {
        font-size: var(--lg);
    }
}

.carousel-item.carouselFooter {
    height: 160px;
}


.carousel-item.carouselFooter img {
    width: 120px;
    height: auto;
    margin: 12px;
}

.slide--image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide--image img {
    width: 90%;
    height: auto;
    max-height: 100px;
}

.splide__pagination {
    bottom: -16px !important;
}

#situacion .splide__arrows {
    position: unset;
}

.splide__arrows {
    position: relative;
    bottom: -100px !important;
}

.splide__arrow--prev {
    z-index: 1;
    position: absolute;
    bottom: 0 !important;
}

.splide__arrow--next {
    z-index: 1;
    position: absolute;
    bottom: 12px !important;
}

#situacion-list {
    margin: 32px !important;
}

#carouselPromesas-list {
    margin: 32px !important;
}

#carouselPromesas-list .opinion {
    min-height: auto;
}

@media (max-width: 440px) {
    .carousel-inner .carousel-item>div {
        display: none;
    }

    .carousel-inner .carousel-item>div:first-child {
        display: block;
    }

    .texto-video div {
        text-align: center;
    }

    .texto-video a {
        margin: 0 auto;
    }

    .index__main--hero .hero__text p {
        font-size: 1.2rem;
    }

    .button-hero {
        padding: 8px 12px;
    }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
    justify-content: center;
}

/* medium and up screens */
@media (min-width: 481px) {

    .carousel-inner .carousel-item-end.active,
    .carousel-inner .carousel-item-next {
        transform: translateX(25%);
    }

    .carousel-inner .carousel-item-start.active,
    .carousel-inner .carousel-item-prev {
        transform: translateX(-25%);
    }
}

.carousel-inner .carousel-item-end,
.carousel-inner .carousel-item-start {
    transform: translateX(0);
}

#carouselOpiniones {
    display: flex;
    margin: 64px auto;
}

#carouselOpiniones .opiniones__texto {
    width: 30%;
    display: flex;
    align-items: center;
}

#carouselOpiniones .carousel {
    width: 70%;
    height: max-content;
    margin: 0;
    padding: 0;
}

#carouselOpiniones .splide__arrows {
    bottom: 0 !important;
}

#carouselOpiniones ul.splide__pagination {
    display: none;
}

#carouselOpiniones .splide__arrows button {
    border: 1px solid #000;
}

#carouselOpiniones .splide__track {
    padding: 12px !important;
}

#carouselOpiniones .opinion {
    width: 100%;
    margin: 0;
}

.max-width {
    max-width: 1320px;
    margin: 0 auto;
}

.equipo__founder--title {
    font-size: var(--md);
    margin: 0;
}

.hoverable {
    cursor: pointer;
    transition: var(--out);

}

.hoverable:hover {
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
    transition: var(--in);
}

@media (min-width: 1024px) {
    .section__opiniones {
        grid-template-columns: 2fr 3fr;
    }

    .segMayores__cotizar {
        grid-template-columns: 1fr 1fr;
    }
}