/* -- Estilos do conteúdo -- */
.bg-fluid {
    position: relative;
    overflow: hidden;
}

.acland .faixa-banner b {
    color: var(--cor-perfil) !important;
}

.acland .tema-turq .faixa-banner .bg-apoio {
    background: var(--turq) !important;
}

.baixar {
    display: none;
    gap: var(--size-2);
}

@media (max-width: 992px) {
    .baixar {
        display: flex;
    }
}

.baixar .playstore-button {
    --app-color-1: var(--branco);
    --app-color-2: var(--verdee);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--turq);
    border-radius: 999px;
    padding: 0.5rem 1.25rem;
    text-align: center;
    outline: 0;
    transition: var(--transition-1);
    text-decoration: none;
    min-width: 150px;
    background-color: var(--turq);
    color: var(--verdee);
}

.baixar .playstore-button:hover {
    background-color: transparent;
    color: var(--turq);
}

.baixar .playstore-button .icon {
    height: 1.5rem;
    width: 1.5rem;
}

.baixar .playstore-button .texts {
    margin-left: 0.75rem;
    display: flex;
    text-wrap: nowrap;
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.baixar .playstore-button .text-1 {
    margin-bottom: 0.1rem;
    font-size: var(--font-size-xs);
}

.baixar .playstore-button .text-2 {
    font-size: var(--font-size-sm);
    font-weight: 600;
}

/* --
    Estilos do background animado
-- */
.bg-fluid-banner-shape {
    filter: blur(40px);
    border-radius: 40% 50% 30% 40%;
    opacity: 0.7;
    position: absolute;
    pointer-events: none;
}

.bg-fluid-banner-shape.shape-0 {
    background: linear-gradient(270deg, var(--persian-green-500), var(--persian-green-700));
    height: 80%;
    width: 100%;
    left: 75%;
    top: 40%;
    animation: fluid-transform 18s ease-in-out infinite both alternate, fluid-movement 12s ease-in-out infinite both;
}

.bg-fluid-banner-shape.shape-1 {
    background: linear-gradient(180deg, var(--persian-green-400), var(--persian-green-600));
    height: 80%;
    width: 50%;
    left: 5%;
    top: 5%;
    transform: rotate(-190deg);
    animation: fluid-transform 8s ease-in-out infinite both alternate, fluid-movement 20s ease-in-out infinite both;
}

.bg-fluid-banner-shape.shape-2 {
    background: linear-gradient(90deg, var(--persian-green-500), var(--persian-green-800));
    height: 80%;
    width: 40%;
    left: 50%;
    top: 60%;
    transform: rotate(-60deg);
    animation: fluid-transform 10s ease-in-out infinite both alternate, fluid-movement 24s ease-in-out infinite both;
}

.bg-fluid-banner-shape.shape-3 {
    background: linear-gradient(90deg, var(--persian-green-500), var(--persian-green-700));
    height: 60%;
    width: 30%;
    left: 800px;
    top: -10%;
    transform: rotate(-120deg);
    animation: fluid-transform 7s ease-in-out infinite both alternate, fluid-movement 36s ease-in-out infinite both;
}

.bg-fluid-banner-shape.shape-4 {
    background: linear-gradient(90deg, var(--persian-green-500), var(--persian-green-700));
    height: 50%;
    width: 40%;
    left: 60%;
    top: -20%;
    transform: rotate(-220deg);
    animation: fluid-transform 17s ease-in-out infinite both alternate, fluid-movement 13s ease-in-out infinite both;
}

.bg-fluid-banner-shape.shape-5 {
    background: linear-gradient(90deg, var(--persian-green-800), var(--persian-green-400));
    height: 90%;
    width: 40%;
    left: -20%;
    top: -20%;
    transform: rotate(-230deg);
    animation: fluid-transform 12s ease-in-out infinite both alternate, fluid-movement 22s ease-in-out infinite both;
}

.bg-fluid-banner-shape.shape-6 {
    background: linear-gradient(30deg, var(--persian-green-500), var(--persian-green-600));
    height: 70%;
    width: 30%;
    left: -10%;
    top: 70%;
    transform: rotate(-140deg);
    animation: fluid-transform 14s ease-in-out infinite both alternate, fluid-movement 18s ease-in-out infinite both;
}

.bg-fluid-container {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: absolute;
    filter: blur(40px);
}

.bg-fluid-shape {
    filter: blur(40px);
    border-radius: 40% 50% 30% 40%;
    opacity: 0.7;
    position: absolute;
    pointer-events: none;
}

.bg-fluid-shape.shape-1 {
    background: linear-gradient(180deg, var(--persian-green-100), var(--persian-green-50));
    height: 180%;
    width: 80%;
    left: 20%;
    top: 20%;
    transform: rotate(-190deg);
    animation: fluid-transform 8s ease-in-out infinite both alternate, fluid-movement-1 20s ease-in-out infinite both;
}

.bg-fluid-shape.shape-2 {
    background: linear-gradient(90deg, var(--persian-green-100), var(--persian-green-50));
    height: 180%;
    width: 90%;
    left: -70%;
    top: -50%;
    transform: rotate(-60deg);
    animation: fluid-transform 10s ease-in-out infinite both alternate, fluid-movement-2 24s ease-in-out infinite both;
}

@keyframes fluid-transform {

    0%,
    100% {
        border-radius: 33% 67% 70% 30%/30% 40% 70% 70%;
    }

    20% {
        border-radius: 37% 63% 51% 49%/37% 35% 35% 63%;
    }

    40% {
        border-radius: 36% 64% 64% 36%/64% 48% 52% 26%;
    }

    60% {
        border-radius: 37% 63% 51% 49%/30% 30% 70% 73%;
    }

    80% {
        border-radius: 40% 60% 42% 58%/51% 51% 49% 59%;
    }
}

@keyframes fluid-movement {

    0%,
    100% {
        transform: none;
    }

    50% {
        transform: translate(50%, 20%) rotate(-200deg) scale(1.3);
    }
}

@keyframes fluid-movement-1 {

    0%,
    100% {
        transform: none;
    }

    50% {
        transform: translate(30%, 15%) rotateY(10deg) scale(1);
    }
}

@keyframes fluid-movement-2 {

    0%,
    500% {
        transform: none;
    }

    50% {
        transform: translate(30%, -20%) rotate(-200deg) scale(1.3);
    }
}

#produtos .container:hover .cartao-produto {
    transform: scale(.97);
    filter: saturate(.2);
}

#produtos .container:hover .cartao-produto:hover {
    filter: saturate(1);
    transform: scale(1);
}

#produtos .cartao-produto {
    width: 293px;
    min-width: 293px;
    height: 370px;
    min-height: 370px;
    border-radius: 16px;
    border: solid 1px var(--turq);
    overflow: hidden;
    transition: all .5s;
    margin-bottom: 0px;
}

#produtos .cartao-produto .card-image {
    height: 179px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#produtos .cartao-produto .card-text p {
    margin-bottom: 0px;
}

#sect-passos .owl-motivos {
    margin: auto;
    max-width: var(--card-size);
}

#sect-passos .owl-motivos .item {
    max-width: var(--card-size);
}

#sect-passos .owl-prev,
.owl-next {
    position: absolute;
    top: 40%;
    translate: 0 -45%;
    height: 25%;
    width: 30px;
    border-radius: var(--size-2);
    transition: var(--transition-1);
    opacity: 1;
    font-size: 1.5rem;
}

#sect-passos .owl-prev:hover,
#sect-passos .owl-next:hover {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    opacity: 0.6;
}

#sect-passos .owl-prev.disabled,
#sect-passos .owl-next.disabled {
    opacity: 0;
}

#sect-passos .owl-prev span,
#sect-passos .owl-next span {
    opacity: 0;
}

#sect-passos .owl-prev {
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%2300AE9D' viewBox='0 0 20 20' width='18' height='18'%3e%3cpath d='M14.3,2.4c0.5,0.5,0.5,1.3,0,1.8L8.4,10l5.8,5.8c0.5,0.5,0.5,1.3,0,1.8c-0.5,0.5-1.3,0.5-1.8,0l-6.7-6.7c-0.5-0.5-0.5-1.3,0-1.8l6.7-6.7C13,1.9,13.8,1.9,14.3,2.4z'/%3e%3c/svg%3e") center center no-repeat !important;
    left: -24px;
}

#sect-passos .owl-next {
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%2300AE9D' viewBox='0 0 20 20' width='18' height='18'%3e%3cpath d='M5.7,17.6c-0.5-0.5-0.5-1.3,0-1.8l5.8-5.8L5.7,4.2c-0.5-0.5-0.5-1.3,0-1.8c0.5-0.5,1.3-0.5,1.8,0l6.7,6.7 c0.5, 0.5, 0.5, 1.3, 0, 1.8l-6.7, 6.7C7, 18.1, 6.2, 18.1, 5.7, 17.6z'/%3e%3c/svg%3e") center center no-repeat !important;
    right: -24px;
}

#sect-passos .owl-dots {
    display: flex;
    justify-content: center;
    gap: var(--size-2);
    padding: var(--size-3);
}

#sect-passos .owl-dots.disabled {
    display: none;
}

#sect-passos .owl-dot {
    height: var(--size-3);
    width: var(--size-3);
    border-radius: var(--size-3);
    background-color: var(--cinza-400) !important;
    transition: var(--transition-1);
}

#sect-passos .owl-dot.active {
    width: calc(var(--size-3) * 2);
    background-color: var(--turq) !important;
}

#sect-video video {
    border-radius: 15px;
    border: solid 2px var(--turq);
    cursor: pointer;
}

#sect-vantagens #produtos .container:hover .cartao-produto {
    transform: scale(.97);
    filter: saturate(.2);
}

#sect-vantagens #produtos .container:hover .cartao-produto:hover {
    filter: saturate(1);
    transform: scale(1);
}

#sect-vantagens #produtos .cartao-produto {
    width: 293px;
    min-width: 293px;
    height: 420px;
    min-height: 420px;
    border-radius: 16px;
    border: solid 1px var(--turq);
    overflow: hidden;
    transition: all .5s;
    margin-bottom: 0px;
}

#sect-vantagens #produtos .cartao-produto .card-image {
    height: 210px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#sect-vantagens #produtos .cartao-produto .card-text p {
    margin-bottom: 0px;
}

@media (max-width: 590px) {
    #sect-vantagens .produtos .container {
        flex-direction: column;
    }
}

/* -- Fim estilos do conteúdo -- */