:root {
    --color-black: #1a1713;
    --color-beige: #c4b0a0;
    --color-beige-alt: #c8c2b9;
    --color-gray: #eceeed;
    --color-yelow-dark: #bc994e;
    --color-yelow-light: #d8b976;
    --color-yelow-footer: #d7b77a;
    --background: var(var(--color-gray))
}

/* reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 400;
    outline: none;
    color: var(--color-black);
}

a {
    text-decoration: none;
    color: var(--color-black);
}

a:hover {
    color: var(--color-black);
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

body {
    background-color: var(--background);
}

input,
select {
    border: none;
    padding: 14px 16px;
    background: var(--background-inputs);
    border-radius: 8px;
    border: 1px solid var(--background-inputs);
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    color: var(--input-color);
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    margin-bottom: 16px;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    margin-bottom: 24px;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    margin-bottom: 16px;
}

p {
    margin: 0;
}

section {
    padding: 32px 0;
}

[data-bs-toggle] {
    cursor: pointer;
}

/* fim do reset */

/* utilidades */
h1 .highlight {
    color: var(--color-yelow-dark);
    font-weight: 600;
    font-size: 26px;
    text-transform: uppercase;
}

.highlight {
    color: var(--color-yelow-dark);
    font-weight: 600;
    font-size: 20px;
}

.text-shadow {
    -webkit-filter: drop-shadow(0px 1px 0px currentcolor);
    filter: drop-shadow(0px 1px 0px currentcolor);
}

.line-through {
    text-decoration: line-through;
}

.w-fit {
    width: fit-content !important;
}


/* loader */
.page-loader {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
    flex-direction: column;
}

.page-loader img {
    height: auto;
    width: auto;
    max-width: 100vw;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* fim loader */

/* botão do whats */
a.float-whats {
    position: fixed;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: rgba(0, 200, 0, 1);
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    transition-duration: 0.5s;
    animation: pulse 3s infinite;
    z-index: 10;
}

a.float-whats svg {
    height: 30px;
    width: 30px;
    color: #fff;
    fill: #fff;
}

@keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 1);
    }

    70% {
        -webkit-box-shadow: 0 0 0 20px rgba(0, 200, 0, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 0);
    }
}

/* fim do botão do whats */

.btn-whats-normal svg {
    color: #fff;
    fill: #fff;
    height: auto;
    width: 28px;
}

.btn-buy-now {
    min-height: 48px;
    width: 100%;
    border-radius: 8px;
    outline: none;
    border: 0;
    background-color: rgba(0, 200, 0, 1);
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    transition: .3s;
    cursor: pointer;
    padding: 12px 16px;
}

.btn-buy-now:hover {
    filter: brightness(1.1);
}

.btn-buy {
    width: max-content;
    border-radius: 12px;
    outline: none;
    border: 0;
    background-color: rgba(0, 200, 0, 1);
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    transition: .3s;
    cursor: pointer;
    padding: 16px;
    max-width: 100%;
    padding: 12px 16px;
    display: block;
    margin: 0 auto;
}

.buy-now .card .btn-buy {
    font-size: 18px;
}

.buy-now .card {
    margin-top: 50px;
}

.buy-now .card.special {
    margin-top: 0;
    border-color: #BDB9CC !important;
    background-color: #EAE7FF !important;
}

.buy-now .card.special .card-body {
    padding: 2rem 2rem;
}

.buy-now .card.special h3 {
    font-size: 20px
}

/* conteúdos */
.wrapper-article {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.text {
    font-size: 14px;
    color: var(--color-black);
    font-weight: normal;
}

.icon-isis {
    height: auto;
    width: 240px;
}


.background-product-section {
    height: 200px;
    width: 100%;
    background-color: var(--color-yelow-dark);
    background-image: url(../imgs/backgrounds/bg-ni.webp);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-section {
    margin: -32px 0;
    background-color: rgba(255, 255, 255, 1);
}

/* @media (min-width: 768px) {
    .container,
    .container-md,
    .container-sm {
        max-width: 95%;
        padding: 1em;
    }
}


@media (min-width: 576px) {
    .container,
    .container-sm {
        max-width: 95%;
        padding: 1em;
    }
} */

/* footer */
footer {
    background: var(--color-yelow-footer);
}

footer .content-footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    font-size: 18px;
    gap: 16px;
}

footer .content-footer h3 {
    font-size: 28px;
}

/* footer .content-footer .left-content{} */

footer .content-footer .left-content img {
    height: auto;
    width: 300px;
    margin-bottom: 16px;
}

footer .content-footer .center-content img {
    height: auto;
    width: 300px;
    margin-bottom: 16px;
}

footer .content-footer .center-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
}

footer .content-footer .right-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
}

footer .content-footer a {
    border: 1px solid transparent;
    padding: 8px;
    border-radius: 8px;
    margin: 0 0 0 -8px;
    transition: .3s;
}

footer .content-footer a:hover {
    border: 1px solid var(--color-black);
}

.developed-by {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
    padding: 16px;
    border-top: 1px solid var(--color-black);
}

.developed-by img {
    height: auto;
    width: 250px;
}

@media (max-width: 992px) {
    .payment-props img {
        width: 100%;
    }

    footer .content-footer {
        flex-direction: column;
        gap: 48px;
    }
}

@media (max-width: 465px) {
    .payment-props img {
        width: 100%;
    }

    .logo-footer {
        max-width: 150px;
    }

    footer .left-content {
        text-align: center;
    }

    section {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    h1 {
        font-size: 20px;
    }

    h1 .highlight {
        font-size: 22px;
    }

    h3 {
        font-size: 20px;
    }

    footer {
        font-size: 14px;
    }

    footer .content-footer h3 {
        font-size: 20px;
    }

    .background-product-section {
        display: none;
    }
}

/* footer */