:root {
    --verde: #71cc98;
    --rosa: #df1995;
    --rosa-claro: #f2a3d5;
}

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

body {
    background-color: #fff;
    color: #000;
    font-family: 'Poppins', sans-serif;
}

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

.current-title {
    padding-top: 40px;
    padding-bottom: 40px;
    background: var(--verde);
    overflow-x: hidden;
    overflow-y: visible;
    z-index: 99;


    & .my-title {
        color: #fff;
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        white-space: nowrap;
        font-size: medium;
        animation: walk 30s linear infinite reverse;
    }

    &.out {

        .my-title {
            animation-direction: normal;
        }
    }
}

.section {
    padding: 20px;
    text-align: center;
    gap: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.column {
    width: min(100%, 1200px);
    margin: 0 auto;
    padding: 20px;
    gap: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    &.row {
        flex-direction: row;
    }
}


.header {
    height: 100vh;
    color: #fff;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-right: 0px;
    background: url("img/principal.webp") bottom right, url("img/hearts.webp"), radial-gradient(circle, #79e098 30%, var(--verde) 50%);
    background-size: contain;
    background-repeat: no-repeat;
    text-align: left;

    & .column {
        align-items: flex-start;
        justify-content: space-between;
        height: 80%;
        padding: 0;
        padding: 0px 0px 0px 50px;

        & .first-title {
            text-transform: uppercase;
            gap: 0;
            line-height: 1.3;
            font-family: 'Poppins', sans-serif;

            p {
                font-size: 1rem;
                font-weight: 400;
                border-radius: 2px;
            }

            & h1 {
                font-size: 2rem;
                font-weight: 600;
                padding: 0px;
                border-radius: 2px;
                text-wrap: balance;
            }
        }

        & button {
            width: fit-content;
            margin: 0;
        }
    }

}

button {
    background-color: var(--rosa);
    width: 100%;
    height: 60px;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 20px;
    transition: .5s;
    box-shadow: 0px 5px 5px #00000060;

    &:hover {
        scale: 1.05;
    }

}

.destaque {
    background-color: var(--rosa);
    color: var(--rosa-claro);
    padding: 2px 10px;
    margin: auto;

    &.verde {
        background-color: var(--verde);
        color: #fff;
    }

    &::after {
        content: '';
        display: block;
        width: 2px;
        height: 40px;
        position: absolute;
        background-color: #fff;
        transform: translate(-10px, -38px);
    }

}

.card {
    background-color: var(--verde);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 6px;
    margin-bottom: 10px;
    width: 250px;
    height: 250px;
    display: grid;
    place-content: center;
    text-align: center;

    & svg {
        width: 100px;
        height: 100px;
        margin: auto;
        margin-bottom: 10px;
    }
}

.trid {
    background: url("img/waves\ copiar.webp") no-repeat center center fixed,
        linear-gradient(to bottom, var(--rosa-claro), var(--rosa-claro));
    background-size: cover;
    color: #fff;
    padding-top: 40px;
    padding-bottom: 40px;

    & h1 {
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 10px;
        color: var(--rosa);
    }
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    width: min(600px 100%);
    margin: 0 auto;
    max-width: 550px;
    text-wrap: balance;
}

.carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);

    & .carousel-slides {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 20px;
        position: relative;
        left: 820px;
        transition: 0.3s ease-in-out;


        & img {
            width: 250px;
            object-fit: cover;
            border-radius: 80px;
            transition: 0.1s ease-in-out;

        }

        & img.active {
            border: 2px solid var(--verde);
            transform: scale(1.1) translate(0, 20px);
        }
    }

    & .carousel-controls {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: space-around;
        padding: 20px;

        & button {
            background-color: var(--verde);
            color: #fff;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            margin: 0 auto;
        }
    }
}

.fouur {
    background: linear-gradient(to bottom, transparent 10%, var(--verde) 10%),
        url("img/waves\ copiar.webp") no-repeat center center fixed,
        linear-gradient(to bottom, var(--rosa-claro) 10%, var(--verde) 10%);
    background-size: cover;
    color: #fff;
    padding-top: 40px;
    padding-bottom: 40px;
    overflow: visible !important;
    width: 100vw !important;


    & .animation-images {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        width: min(500px, 300px);
        margin: -100px -50px 0 -50px;
        position: relative;


        & .frasco {
            width: 100%;
            position: relative;
            z-index: 2;
        }

        & .capsule {
            animation: rotate 10s linear infinite;
            position: absolute ! important;

            &.item01 {
                width: 150px;
                transform: translate(0, -150px);
                z-index: 3;
            }

            &.item02 {
                width: 80px;
                z-index: 1;
                animation-direction: reverse;
            }
        }


    }



    & h1 {
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 10px;
        color: var(--rosa);
    }

    & p {
        font-size: 1.2rem;
        font-weight: 400;
        margin-bottom: 10px;
        color: var(--rosa);
    }

    & ul {
        font-size: 1.2rem;
        font-weight: 400;
        margin-bottom: 10px;
        color: var(--rosa);
        list-style: inside;
        text-align: left;

        & li {
            margin-bottom: 10px;
        }
    }
}

.box-white {
    background-color: #fff;
    color: var(--rosa);
    padding: 20px 60px;
    border-radius: 10px;
    width: 600px;
    margin: 0 auto;
    text-align: center;
    margin-top: -70px;
}

.five {
    color: #fff;
    padding-top: 40px;
    padding-bottom: 80px;
    background: url("img/hello\ hello\ pink.webp") no-repeat;
    background-size: contain;
    background-position: center 110%;
    overflow: visible !important;

    & .card {
        background-color: var(--rosa);
        padding: 20px;
        border-radius: 10px;
        width: min(1000px, 100%);
        height: auto;
        margin: 0 auto;
        text-align: center;

        & .logo {
            width: 100px;
            transform: translate(-130px, 0);
            margin-bottom: -50px;
            position: relative;
            margin-top: -100px;
        }

        & h1 {
            font-size: 2rem;
            font-weight: 600;
            margin: auto;
            margin-bottom: 10px;
        }

        & p {
            font-size: 1.2rem;
            font-weight: 400;
            margin: auto;
            margin-bottom: 10px;
        }

        & h3 {
            margin: auto;
        }

        & .card {
            width: 400px;
            height: 350px;
            color: #fff;
            border: 1px solid #fff;
            padding: 20px;
            border-radius: 10px;
            margin: 0 auto;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            align-items: center;
            gap: 10px;

            & img {
                width: 100%;
                aspect-ratio: 2/1;
                object-fit: cover;
                border-radius: 10px;
            }
        }

        & .dialog-box {
            background-color: var(--rosa-claro);
            padding: 10px 40px;
            border-radius: 6px;
            color: var(--rosa);
            width: 100%;
        }
    }
}

.six {
    background-color: var(--rosa-claro);
    color: var(--rosa);

    & .column {
        & h1 {
            font-size: 2rem;
            font-weight: 600;
            margin: auto;
            margin-bottom: 10px;
        }

        & h2 {
            font-size: 1.5rem;
            font-weight: 400;
            margin: auto;
            margin-bottom: 10px;
        }

        & p {
            font-size: 1.2rem;
            font-weight: 400;
            margin: auto;
            margin-bottom: 10px;
        }

        & .afBef {
            width: min(800px 100%);
            height: auto;
            margin: 0 auto;
        }
    }

    & .box-white {
        padding: 60px 20px;

        & ul {
            border: 2px dashed var(--rosa);
            padding: 20px;
            list-style: none;
            width: 100%;

            & li {
                width: 100%;
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: 10px;
                margin-bottom: 10px;
            }
        }
    }
}

.seven {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-bottom: 0;
    background: url("img/Forma\ green.webp") no-repeat;
    background-size: contain;
    background-position: center 110%;

    & .card {
        & img {
            width: 100px;
            aspect-ratio: 1/1;
            object-fit: cover;
            border-radius: 50%;
            margin: 0 auto;
            margin-bottom: 10px;
        }
    }

    & .box-white {
        background-color: var(--verde);
        color: #fff;
        padding: 20px;
        border-radius: 10px;
        width: 600px;
        margin: 0 auto;
        text-align: center;
        margin-top: -70px;
        box-shadow: 5px 5px 10px #00000050;

        & .destaque {
            background-color: #fff;
            color: var(--verde);
            padding: 2px 10px;
            margin-top: 20px;
        }
    }

    & .modelo-prod {
        margin-bottom: -20px;
    }
}

.item-flutuate {
    position: absolute;
    width: 200px;
    transform: translate(0, -80px);

}

.eight {
    background: var(--verde);
    color: #fff;
    padding-top: 40px;
    padding-bottom: 40px;

    & .column {
        align-items: flex-start;

        & div {
            display: flex;
            flex-direction: column;
            gap: 10px;
            width: min(600px 100%);
            margin: 0 auto;

            & h2 {
                font-size: 1.5rem;
                font-weight: 400;
                text-align: left !important;
                display: flex;
                justify-content: start;
                align-items: center;
                gap: 10px;
                margin-bottom: 10px;
                align-self: flex-start;

                & span {
                    font-size: 3rem;
                    font-weight: 600;
                }
            }
        }
    }
}

[border="white"] {
    border: 2px solid #fff;
}

.nine {
    background: linear-gradient(to bottom, var(--verde), transparent),
        url("img/waves\ copiar.webp") no-repeat center center fixed,
        linear-gradient(to bottom, var(--rosa), var(--rosa-claro));
    background-size: cover;
    color: #fff;
    padding-top: 40px;
    padding-bottom: 40px;
    flex-wrap: wrap;
    width: 100vw !important;
    overflow: hidden;

    & .box-white {
        min-width: 250px;
        max-width: 250px;
        min-height: 500px;
        max-height: 500px;
        margin: 0 auto;
        overflow: hidden;
        padding: 0;
        gap: 0;
        align-items: center;
        position: relative;
        border-radius: 10px;
        box-shadow: 5px 5px 10px #00000050;
        display: grid;
        grid-template-rows: 1fr 3fr 1fr;

        & .offer-head {
            background-color: var(--rosa);
            color: #fff;
            padding: 20px 0 0 0;
            height: 100%;
            display: grid;
            grid-template-rows: 1fr 1fr;
            align-items: center;
            gap: 10px;

            & .discount {
                background-color: var(--rosa-claro);
                color: #fff;
                padding: 20px;
                align-self: flex-end;
                width: 100%;
                height: 60px;
            }
        }


        & .offer-body {
            padding: 20px;
            display: grid;
            grid-template-rows: 1fr 1fr;
            height: 200px;
            align-items: center;
            gap: 10px;
            justify-content: center;
            gap: 0;
            line-height: 1.3;
            font-family: 'Poppins', sans-serif;
            text-align: left;
            align-items: center;

            & .frasco {
                width: 100%;
                height: 100px;
                margin-bottom: 10px;
                flex: 1 1 0px;
                display: flex;
                align-items: center;
                justify-content: center;

                & img {
                    width: 100px;
                    margin: auto;
                }
            }

            & .price {
                margin: 0 auto;
                gap: 0;
                line-height: 1;
                font-family: 'Poppins', sans-serif;
                text-align: left;
                align-items: center;
                height: 200px;
                min-height: 200px;
                max-height: 200px;
                display: flex;
                flex-direction: column;
                margin: 0 auto;
                margin-bottom: 20px;
                width: 100% ! important;
                text-align: center;
                background: linear-gradient(to bottom, transparent 10%, #fff) ;
            }

            & h1 {
                font-size: 2rem;
                font-weight: 800;
                margin: 0 auto;
                margin-bottom: 0;
            }

            & h4,
            p {
                font-size: 1rem;
                font-weight: 600;
                margin: 0 auto;
                margin-bottom: 0;
            }

            & .frete {
                font-size: 0.8rem;
                font-weight: 400;
                margin: auto;
                margin-bottom: 0;
                background-color: #df1995;
                color: #fff;
                padding: 5px 10px;
                border-radius: 10px;
                position: relative;
                top: -350px;
                text-transform: uppercase;
            }
        }
    }

    & button {
        background-color: rgb(41, 196, 41);
        color: #fff;
        border: none;
        border-radius: 0px;
        position: relative;
        bottom: -20px;
    }

    & .best-offer::before {
        content: "melhor oferta!";
        position: absolute;
        top: 0px;
        right: 0px;
        background-color: var(--verde);
        color: #fff;
        padding: 5px 10px;
        border-radius: 0 0 0 50px;
    }

}



@keyframes walk {
    0% {
        transform: translateX(0);

    }

    100% {
        transform: translateX(-80%);

    }
}

a {
    text-decoration: none;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
        filter: blur(0px);
    }

    50% {
        filter: blur(5px);
    }

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

.faq {
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 20px;
}

.accordion {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-header {
    cursor: pointer;
    padding: 15px 20px;
    font-weight: bold;
    position: relative;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #f1f1f1;
}

.accordion-header::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.accordion-header.active::after {
    content: '−';
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    background-color: #fff;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content.open {
    padding: 15px 20px;
}

@media (max-width: 768px) {
    body {
        overflow-y: auto;
        overflow-x: hidden;
    }

    .section {
        padding: 40px 20px;
        width: 100% !important;
        overflow-y: auto;
        overflow-x: hidden;
    }



    .column {
        flex-direction: column !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    img {
        width: 100%;
        max-width: 350px;
        margin: auto;
        margin-bottom: 20px;
    }


    .header {
        height: 67vh;
        text-align: center;
        padding-top: 10px;

        & .column {
            padding: 20px 0;
            height: 100%;

            & .first-title {
                margin: 10px auto;
                font-size: 1.8rem;
                font-weight: 600;
            }
        }
    }


    .box-white {
        & :not(#nine .box-white) {

            width: 100% !important;
            margin: 0 !important;
            padding: 10px !important;
        }

        height: auto !important;
        max-height: none;
        min-height: none;
        margin: 0 !important;
        width: 100% !important;
        display: flex;
    }

    .offer-head {
            padding: 0%;
            & .discount {
                margin: 0 !important;
                max-height: fit-content !important;
                padding: 10px !important;
                width: 100% !important;
            }
        }

    .frete {
        position: static !important;
        margin: 20px !important;
        padding: 20px 0 !important;
    }

    .card {
        margin: 0 !important;
        width: 100% !important;
        padding: 20px !important;
    }

    .seven {
        background-position: bottom;
        margin: 0 !important;
        padding: 0 !important;

        & .box-white {
            margin: 0 !important;
            padding: 20px !important;
            flex-direction: column;
            font-size: 1.2rem;
            width: 100% !important;
            height: fit-content !important;

            & p {
                font-size: large;
            }
        }
    }
}