html {
    scroll-behavior: smooth;
}

#mobileMenu,
#mobileMenu *{
    animation: none;
}

#mobileMenu {
    transform: translateX(0);
    transition: transform 0.3s ease-in-out;
}

#mobileMenu > * {
    transform: scale(1);
    transition: transform 0.6s ease-in-out;
}

#mobileMenu.notShowed > *{
    transform: scale(0.5);
    transition: transform 0.6s ease-in-out;
}


#mobileMenu.notShowed {
    transform: translateX(100%);
    transition: transform 0.6s ease-in-out;
}

.elegirnos--item {
    border-radius: 12px;
    padding: 48px;
}

.hero {
    background-image: url('../img/home/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home__hero {
    min-height: 100vh;
}

.hero--section {
    padding: 120px 48px;
}

.about__hero {
    background-image: url('../img/about/hero.png');
}

.product__hero {
    background-image: url('../img/product/hero.png');
}

.faq__hero {
    background-image: url('../img/faq/hero.png');
}

.contacto__hero {
    background-image: url('../img/contacto/hero.png');
}

.testimonio__hero {
    background-image: url('../img/testimonio/hero.png');
}

.contact__form {
    display: flex;
    flex-direction: column;
    margin: 12px 0;
}

.contact__form label {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact__form input,
.contact__form textarea {
    border-radius: 24px;
    border: 1px solid #D4D2E3;
    padding: 12px 20px;
}

.vision__title {
    border-bottom: 4px solid #08CA8C;
    width: fit-content;
}

.navbar--link.a--white {
    /*text-shadow: rgba(0, 0, 0, 1) 0px 0px 10px;*/
}

.navbar--desktop {
    background-color: rgba(0, 0, 0, 0.45);
}

.section--reviews {
    background: #ffffff;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 50%, rgba(7, 202, 139, 1) 50%);
}

.proceso__step {
    border-radius: 12px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background-color: #FFF;
    padding: 48px 32px;
    position: relative;
    text-align: center;
}

.proceso__number {
    align-content: center;
    background-color: var(--light--green);
    border-radius: 50%;
    color: var(--green-ll);
    display: block;
    font-size: 52px;
    height: 74px;
    left: 50%;
    text-align: center;
    top: 0;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    width: 74px;
}

.proceso__lines {
    align-content: center;
}

.proceso__lines .line {
    border: 1px dashed black;
    width: 100%;
    display: block;
}

.proceso {
    display: grid;
    grid-template-columns: 4fr 1fr 4fr 1fr 4fr;
    margin-top: 52px;
}

#splideReviews .splide__arrow:disabled {
    opacity: 0.1 !important;
}

#splideReviews .splide__arrow {
    background-color: var(--green-ll);
}

#splideReviews .splide__arrow svg {
    fill: white;
}

.section--video {
    background: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 50%, rgba(249, 250, 255, 1) 50%);
}

.footer__links li a {
    align-content: center;
    background-color: #E7E6F2;
    border-radius: 8px;
    color: #8D8BA7 !important;
    display: block;
    height: 32px;
    margin: 8px;
    text-align: center;
    transition: background 0.6s ease-in-out;
    width: 32px;
}

.footer__links li a:hover {
    background-color: var(--green-ll);
    transition: background 0.3s ease-in-out;
}

.accordion-header button{
    font-size: 24px !important;
    font-weight: 700 !important;
}

.accordion-body {
    font-size: 18px !important;
}

.accordion-item {
    border-radius: 16px !important;
    border: 1px solid #000 !important;
    overflow: hidden;
}

.accordion-button {
    border: none;
    border-radius: 0 !important;
}

.accordion-button:not(.collapsed),
.accordion-item {
    background-color: #032C23 !important;
    color: white;
}

.accordion-button:not(.collapsed) {
    border: none !important;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.section__video {
    position: relative;
}

.section__video > button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hover--pulse:hover {
    animation: pulse 2s infinite;
}

.navbar__header {
    position: fixed !important;
    top: 0;
    width: 100%;
    z-index: 9000;
}

@media (max-width: 720px) {
    .proceso {
        grid-template-columns: 1fr;
        grid-template-rows: 4fr 1fr 4fr 1fr 4fr;
        margin-top: 52px;
    }

    .proceso__lines .line {
        border: 1px dashed black;
        height: 100%;
        width: 0;
        display: block;
        margin: 0 auto;
    }

    .proceso__lines {
        text-align: center;
    }
}

@keyframes appear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}