* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    font-family: "Roboto", sans-serif;
    transition: 0.3s all;
    outline: none;
    text-decoration-line: none;
}

.Section1 {
    display: flex;
    justify-content: center;
    max-width: 100vw;
    padding: 80px 50px;
    padding-top: 170px;
    gap: 70px;
}

.TopHeader {
    position: absolute;
    top: 0;
    max-width: 100%;
}

.SpanSec1 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 543px;
    align-items: center;
}

.Doubletext {
    display: flex;
    gap: 15px;
    position: relative;
    right: 90px;
}

.icon1 {
    color: #00ab28;
}

.icon2 {
    color: #f2cb00;
}

.Dtext {
    background-color: #daf0e8;
    padding: 9px 20px;
    border-radius: 25px;
}

.HeadlineSec1 {
    font-size: 56px;
    font-weight: bold;
}

.Byellow {
    color: #f2cb00;
}

.Bwhite {}

.Text1Sec1 {
    font-size: 20px;
}

.ButtonSec1 {
    position: relative;
    overflow: hidden;

    padding: 13px 40px;
    font-size: 20px;
    border-radius: 12px;
    background-color: #00ce9c;
    color: white;
    font-weight: bold;
    margin-top: 20px;
    cursor: pointer;
    border: none;
}

/* brilho */
.ButtonSec1::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );

    animation: shine 2.5s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}


.ButtonSec1:hover {
    opacity: 0.7;
    box-shadow: 0 0 25px rgb(0, 255, 183);
    transform: translateY(-5px);
}

.TextButton {}

.ImageSec1 {
    height: 100%;
    width: 20%;
    animation: floatY 3s ease-in-out infinite;
}

@keyframes floatY {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/*SECTION 2*/

.Section2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background-color: #f6f6f6;
}

.SpanSec2 {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 5px;
    align-items: center;
}

.P1Sec2 {
    padding: 8px 17px;
    background-color: #cff2e4;
    border-radius: 35px;
    color: #009365;
    font-weight: bold;
}

.HeadlineSec2 {
    font-size: 40px;
    font-weight: bold;
}

.Bgreen {
    color: #00ac85;
}

.P2Sec2 {
    width: 80%;
    opacity: 0.5;
}

.MainSec2 {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    width: 80%;
    margin-top: 60px;
}

.BoxBenefit {
    background-color: white;
    box-shadow: 0 0 15px #00000021;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    padding: 16px;
    align-items: baseline;
    width: 340px;
    gap: 15px;
}

.BoxBenefit:hover {
    transform: translateY(-12px);
    box-shadow: 0 0 25px #00000039;

}

.BoxBenefit:hover .iconBenefit{
    color: #00a033;
    background-color: #beffd7;

}

.iconBenefit {
    color: #00a033;
    background-color: #e6f1ee;
    padding: 10px;
    font-size: 25px;
    border-radius: 5px;
}

.BenefitText1 {
    font-weight: bold;
    font-size: 20px;
    width: 80%;
}

.BenefitText2 {
    font-size: 14px;
    line-height: 20px;
    opacity: 0.6;
    font-weight: 400;
}

/*SECTION 3*/

.Star {
    color: #ffe200;
    font-size: 18px;
}

.Section3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 70px 20px;
}

.SpanSec3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.Sec3T1 {
    border-radius: 50px;
    padding: 8px 12px;
    background-color: #fcfacc;
    color: #ffbf00;
}

.Sec3T2 {
    font-weight: bold;
    font-size: 30px;
}

.Sec3T3 {
    display: flex;
    align-items: center;
    text-align: center;
}

.MainSec3 {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
    align-items: center;
    justify-content: center;
}

.BoxComent {
    padding: 15px;
    width: 358px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-radius: 15px;
    box-shadow: 0 0 15px #0000002e;
}

#C1{
    animation: floatSimple1 5s ease-in-out infinite;
}
#C2{
    animation: floatSimple2 4s ease-in-out infinite;
}
#C3{
    animation: floatSimple3 5s ease-in-out infinite;
}

@keyframes floatSimple1 {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}
@keyframes floatSimple2 {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}
@keyframes floatSimple3 {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }

    100% {
        transform: translateY(0);
    }
}


.Cstars {
    display: flex;
}

.Cperson {
    line-height: 25px;
    font-weight: 500;
}

.DivPerson {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.PersonProfile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.NameWord {
    color: #00aa07;
    font-size: 18px;
    background-color: #d5f4e7;
    padding: 10px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.PersonNames {}

.NamePerson {
    font-weight: bold;
}

.NameCity {
    opacity: 0.5;
}

.Verify {
    color: green;
    background-color: #d5ffeb;
    padding: 4px 12px;
    font-weight: 500;
    border-radius: 25px;
    font-size: 12px;
}



/*SECTION 4*/

.Section4 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 20px;
}

.GuaranteeBox {
    background-color: #005669;
    position: relative;
    padding: 90px 80px 174px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    width: 60%;
    border-radius: 25px;
}

.SymbolSec4 {
    position: absolute;
    top: -60px;
    height: 27%;
    max-width: 100%;
}

.Sec4Text1 {
    font-weight: bold;
    font-size: 34px;
}

.Sec4Text2 {
    font-size: 15px;
    opacity: 0.8;
    margin-top: 25px;
}

.GuaranteeBox2 {
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: green;
    bottom: 0;
    padding: 20px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    background: linear-gradient(98deg, rgba(0, 86, 105, 1) 15%, rgba(255, 255, 255, 1) 100%);
}

.Symbol2Sec4 {
    height: 100%;
    width: 45%;
}



/*SECTION5*/

.Section5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding: 70px 20px;
    background: linear-gradient(142deg, rgba(0, 145, 121, 1) 43%, rgba(90, 173, 164, 1) 100%);
    color: white;
}

.SpanSec5 {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 50%;
    align-items: center;
}

.Sec5span1 {
    background-color: #6ccabb5c;
    padding: 8px 35px;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    box-shadow: 0 0 35px #00000021;
    display: flex;
    align-items: center;
    gap: 5px;
}

.Sec5span2 {
    font-weight: bold;
    font-size: 40px;
}

.Sec5span3 {
    font-size: 18px;
    opacity: 0.8;
}

.MainSec5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.ImageProduct {
    height: 100%;
    width: 18%;
    animation: floatY 3s ease-in-out infinite;
}

.ButtonSec5 {
    position: relative;
    overflow: hidden;

    padding: 13px 40px;
    font-size: 20px;
    border-radius: 12px;
    background-color: #00ce9c;
    color: white;
    font-weight: bold;
    margin-top: 20px;
    cursor: pointer;
    border: none;
}

/* brilho */
.ButtonSec5::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );

    animation: shine 2.5s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}


.ButtonSec5:hover {
    opacity: 5;
    box-shadow: 0 0 25px rgba(0, 255, 183, 0.521);
    transform: translateY(-5px);
}

.TextSec5 {
    opacity: 0.5;
    font-size: 12px;
}




/*FOOTER*/

footer {
    background-color: rgb(16, 35, 48);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.Pfooter1 {
    opacity: 0.5;
    font-size: 12px;
}

.Pfooter2 {
    opacity: 0.5;
    font-size: 10px;
}



@media screen and (max-width: 1000px) {
    .Section1 {
        flex-direction: column;
        padding: 50px 20px 20px;
        align-items: center;
    }

    .SpanSec1 {
        width: 100%;
    }

    .Doubletext {
        right: 0;
    }

    .HeadlineSec1 {
        font-size: 35px;
        text-align: center;
    }

    .Text1Sec1 {
        text-align: center;
    }

    .ImageSec1 {
        width: 50%;
    }





    /*SECTION4*/

    .GuaranteeBox {
        width: 90%;
        padding: 70px 35px 90px;
    }

    .Sec4Text1 {
        font-size: 20px;
    }

    .Sec4Text2 {
        font-size: 12px;
    }

    .Symbol2Sec4 {
        width: 65%;
    }




    /*SECTION 5*/

    .SpanSec5 {
        width: 100%;
        font-size: 13px;
    }

    .Sec5span3 {
        font-size: 13px;
    }

    .ImageProduct {
        width: 35%;
    }

    .ButtonSec5 {
        font-size: 15px;
    }
}