@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(78, 122, 199, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 1rem 2rem rgba(0, 123, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

@keyframes pulse2 {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(36, 126, 70, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 1rem 2rem rgba(22, 163, 74, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
    }
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

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

:root {
    --mint-color-1: #e6f8f3;
    --mint-color-2: #b3ebda;
    --mint-color-3: #03bb85;
    --mint-color-4: #013828;
    --mint-color-5: #01251b;
    --green-price: #03bb85;
    --white: #ffffff;
}

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

body {
    font-family: "Montserrat", system-ui;
    overflow-x: hidden;
}

/* REUSABLE COMPONENTS */

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

.container {
    max-width: 114rem;
    width: 90%;
    margin: auto;
}

.grid {
    display: grid;
    column-gap: 4rem;
}

.grid--2-cols {
    grid-template-columns: repeat(2, 1fr);
}

.grid--3-cols {
    grid-template-columns: repeat(3, 1fr);
}

.btn-container {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.btn-container.center {
    display: flex;
    justify-content: center;
}

.btn {
    display: inline-block;
    text-decoration: none;
    background-color: var(--mint-color-3);
    padding: 2rem 4rem;
    font-size: 1.8rem;
    font-weight: bold;
    border-radius: 1rem;
    color: var(--white);
    margin-top: 0.8rem;
}

.btn-img {
    display: block;
    width: 20rem;
    margin-top: 1.6rem;
}

.product-feedback {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 3.2rem;
}

.product-feedback--text {
    font-size: 1.4rem;
}

.old-price {
    color: #ff0000;
    font-weight: 900;
    text-decoration: line-through;
}

.black {
    font-weight: 900;
    color: var(--green-price);
}

.motion-offer {
    animation: pulse2 1.5s infinite;
}

.styled-title {
    background: linear-gradient(
        to right,
        var(--mint-color-3) 20%,
        var(--mint-color-5) 40%,
        var(--mint-color-5) 40%,
        var(--mint-color-3) 80%
    );
    background-size: 200% auto;
    font-weight: bold;
    color: #000;
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 7s linear infinite;
}

@keyframes shine {
    100% {
        background-position: 200% center;
    }
}

.m-top {
    margin-top: 4.8rem;
}

/**************************/
/* ALERT BAR  */
/**************************/

.alert {
    padding: 1rem 2rem;
    background-color: var(--mint-color-3);
    color: var(--mint-color-1);
    font-size: 1.4rem;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    text-align: center;
    line-height: 1.4;
}

.alert svg {
    width: 1.5em;
    color: var(--mint-color-1);
    fill: var(--mint-color-1);
}

.alert span {
    font-weight: bold;
}

/* SECTION HERO */

.section-hero {
    padding: 0 0 8rem 0;
}

.hero-logo {
    display: block;
    width: 15rem;
    height: auto;
    margin: 4rem auto;
}

.highlight-text {
    color: var(--mint-color-5);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: bold;
    margin-bottom: 2.4rem;
    color: var(--mint-color-5);
}

.hero-subtitle {
    font-size: 2rem;
    line-height: 1.5;
    font-weight: normal;
    color: var(--mint-color-5);
}

.benefits-list {
    list-style: none;
    margin-top: 3.2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit {
    color: var(--mint-color-5);
    font-size: 2rem;
}

.hero-img {
    width: 100%;
    border-radius: 2rem;
}

/* SECTION SABIA */

.section-sabia {
    padding: 8rem 0;
}

.subtitle {
    color: var(--mint-color-3);
    font-size: 1.4rem;
    text-transform: uppercase;
}

.headline {
    margin-top: 0.8rem;
    font-size: 3rem;
    color: var(--mint-color-5);
    line-height: 1.2;
    text-transform: capitalize;
}

.description {
    margin-top: 2.4rem;
    font-size: 2rem;
    color: var(--mint-color-5);
    line-height: 1.8;
}

/* SECTION BENEFITS */

.section-benefits {
    padding: 8rem 0;
}

.container-benefits {
    margin-top: 4.8rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.box-benefits {
    background-color: var(--mint-color-5);
    padding: 3rem;
    border-radius: 0.9rem;
    text-align: center;
    flex: 1 1 30%;
    cursor: pointer;
}

.box-benefits:hover {
    background-color: var(--mint-color-3);
}

.box-emoji {
    font-size: 4rem;
}

.box-title {
    margin-top: 0.8rem;
    font-size: 2.4rem;
    color: var(--mint-color-1);
}

.box-description {
    margin-top: 1.6rem;
    font-size: 1.4rem;
    color: var(--mint-color-1);
}

/* SECTION TRUST */

.section-trust {
    padding: 8rem 0;
}

/* SECTION PRAQUEM */

.section-praquem {
    padding: 8rem 0;
}

.praquem-img {
    width: 15rem;
    height: auto;
    border-radius: 100rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
}

.area-praquem {
    display: flex;
    margin-top: 4.8rem;
    gap: 4rem;
    flex-wrap: wrap;
}

.box-praquem {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 30%;
}

.area-praquem > .box-praquem:nth-child(4),
.area-praquem > .box-praquem:nth-child(5) {
    justify-content: center;
    width: 45%;
}

.praquem-title {
    margin-top: 2.4rem;
    font-size: 1.8rem;
    color: var(--mint-color-3);
    text-transform: capitalize;
}

.praquem-description {
    margin-top: 1.6rem;
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--mint-color-4);
}

/* SECTION REVIEWS */

.section-reviews {
    padding: 8rem 0;
}

.dep-videos {
    margin-top: 4.8rem;
}

.btn-mobile {
    display: none;
}

.reviews-img {
    width: 100%;
    height: 100%;
}

/**************************/
/* SECTION OFFERS  */
/**************************/

.subtitle.light,
.headline.light,
.description.light {
    color: #f0f9f3;
}

.section-offers {
    background-color: var(--mint-color-5);
    padding: 8rem 0;
}

.offer {
    margin-top: 6rem;
    background-color: #fff;
    border-radius: 0.9rem;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.2),
        0px 0px 10px rgba(255, 255, 255, 0.1);
    position: relative;
}

.ajust-offer {
    text-align: center;
    /* padding-top: 21rem; */
    font-size: 3rem;
    color: var(--mint-color-5);
    font-weight: 900;
    letter-spacing: -0.1rem;
    margin-bottom: 1.6rem;
    margin-top: 1.6rem;
}

.offer-percentage {
    background-color: var(--mint-color-3);
    padding: 1.5rem;
    color: #fff;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.2;
}

.offer-off {
    font-weight: normal;
}

.offer-img {
    display: block;
    margin: auto;
    width: 100%;
    height: auto;
    /* position: absolute; */
    top: -5rem;
    border-top-left-radius: 0.9rem;
    border-top-right-radius: 0.9rem;
}

.offer-box--img {
    width: 100%;
    height: 60rem;
}

.offer-pricetext {
    color: var(--mint-color-5);
    font-size: 1.6rem;
    text-align: center;
    line-height: 1.5;
}

.black {
    font-weight: 900;
}

.offer-price {
    font-size: 5rem;
    text-align: center;
    margin-top: 1.6rem;
    color: var(--green-price);
    font-weight: 900;
    margin-bottom: 1.6rem;
}

.offer-discount {
    font-weight: 900;
    letter-spacing: 0.1rem;
    color: var(--mint-color-5);
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 3rem;
}

.offer-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.offer-benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.benefit-text {
    font-size: 1.6rem;
    font-weight: normal;
    color: var(--mint-color-5);
}

.offer-btn {
    display: block;
    width: 80%;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    text-decoration: none;
    background-color: var(--green-price);
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    border-radius: 1rem;
}

.offer-payments {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20rem;
    height: auto;
    margin: 1.6rem auto;
    padding-bottom: 2rem;
}

.free-shipping {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45%;
    height: auto;
    margin: 0 auto;
    padding-bottom: 2.4rem;
}

/* SECTION TRUTH */

.section-truth {
    padding: 8rem 0;
}

/* SECTION FAQ */

.section-faq {
    padding: 8rem 0;
}

.accordion {
    border-radius: 1rem;
    padding: 1rem;
    width: 100%;
    margin-top: 3.2rem;
}

.accordion-item {
    margin-bottom: 1.5rem;
}

.accordion-header {
    background-color: var(--mint-color-2);
    color: var(--mint-color-4);
    cursor: pointer;
    padding: 1.8rem;
    font-size: 2rem;
    font-weight: bold;
    border: none;
    border-radius: 0.5rem;
    text-align: left;
    width: 100%;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: var(--mint-color-3);
}

.accordion-content {
    background-color: var(--mint-color-2);
    font-size: 1.8rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1rem;
    border-left: 2px solid var(--mint-color-4);
}

.accordion-content p {
    margin: 1rem 0;
}

.active .accordion-content {
    max-height: 10rem; /* Adjust according to content */
}

/* SECTION GUARANTEE */

.section-guarantee {
    padding: 8rem 0;
}

.guarantee-right {
    margin-left: 5rem;
    align-self: center;
}

.guarantee-img {
    width: 60%;
}
/* FOOTER */

.footer {
    padding: 8rem 0 2rem 0;
    background-color: var(--mint-color-5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    color: var(--mint-color-1);
    font-size: 1.6rem;
    text-align: center;
}

.logo-footer {
    width: 15rem;
    height: auto;
    display: none;
}

.about-logo {
    width: 15rem;
    height: auto;
}

.about-text {
    text-align: center;
    line-height: 1.5;
    font-size: 1.6rem;
}

.about-text span {
    font-weight: 900;
}

.footer-title {
    font-size: 2rem;
    margin-bottom: 2.4rem;
    color: var(--white);
}

.footer-email {
    margin-bottom: 1.2rem;
}

.footer-bold {
    font-weight: 700;
}

.footer-ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.footer-link {
    display: block;
    width: 100%;
    text-decoration: none;
    font-weight: normal;
    color: #fff;
    border: 1px solid #fff;
    padding: 1rem 2rem;
    border-radius: 0.9rem;
    transition: all 0.5s ease;
}

.footer-link:hover {
    background-color: var(--mint-color-3);
    color: #fff;
    border: 1px solid var(--mint-color-3);
}

.copyright {
    text-align: center;
    line-height: 1.5;
    font-size: 1.2rem;
    color: var(--white);
}

.advice {
    font-style: italic;
    line-height: 1.5;
    font-size: 1.4rem;
    max-width: 126rem;
    width: 80%;
    color: var(--white);
}

/**************************/
/* OTHER PAGES */
/**************************/

.alert.other-pages {
    background-color: var(--normal-blue);
    color: #fff;
}

.alert.other-pages img {
    fill: #fff;
}

.privacy {
    padding: 4rem 1rem 8rem 1rem;
    flex-direction: column;
}

.thanks-center {
    text-align: center;
}

.pages-title {
    font-size: 3rem;
    color: var(--normal-blue);
    font-weight: 900;
    margin-bottom: 1.6rem;
}

.pages-subtitle {
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--dark-blue);
    margin-bottom: 2rem;
}

.pages-bold {
    font-weight: 900;
    text-decoration: none;
    font-size: 1.6rem;
    color: var(--normal-blue);
}

.privacy p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--dark-blue);
    margin-bottom: 4rem;
}

.btn-privacy {
    padding: 1.2rem 2.4rem;
    background-color: var(--green-price);
    color: #fff;
    text-decoration: none;
    border-radius: 0.9rem;
    transition: all 0.3s;
    font-size: 2rem;
}

/* CONTACT FORM */

.contact-form {
    display: flex;
    flex-direction: column;
}

.inputs {
    margin-bottom: 1.6rem;
    padding: 1rem 1.5rem 1.2rem;
    height: auto;
    border-radius: 0.6rem;
    border: 1px solid var(--mint-color-5);
    font-size: 1.6rem;
    color: var(--mint-color-5);
}

option {
    padding: 1rem 1.5rem 1.2rem;
    height: auto;
    border-radius: 0.6rem;
    border: 1px solid var(--dark-blue);
    font-size: 1.2rem;
    color: var(--dark-blue);
}

select {
    padding-right: 2.8rem;
    padding: 1rem 1.5rem 1.2rem;
    height: auto;
    border-radius: 0.6rem;
    border: 1px solid var(--dark-blue);
    font-size: 1.2rem;
    color: var(--dark-blue);
}

label {
    display: block;
    margin: 0;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.8;
    color: var(--dark-blue);
}

.submit-btn {
    background-color: var(--green-price);
    padding: 1.6rem 2.4rem;
    font-size: 1.6rem;
    font-weight: bold;
    border: none;
    color: #fff;
    border-radius: 0.6rem;
}

.span-faq {
    color: var(--dark-blue);
    font-weight: bold;
}

textarea {
    height: 12rem !important;
    font-size: 1.6rem;
}
