* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #008F88;
    --btn-color: #097629;
    --text-color: #403A3E;
    --text-white: #FFFFFF;
}

body {
    font-family: "Roboto", sans-serif;
    -webkit-font-smoothing: antialiased;
}

header {
    position: fixed;
    width: 100%;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    padding: 25px 4%;
    z-index: 1000;
    transition: all .35s ease;
}

header .logo {
    color: #f3899b;
    font-family: "Dancing Script", cursive;
    font-size: 1.6rem;
    font-weight: 700;
}

header.sticky {
    background-color: var(--primary-color);

    box-shadow: 0px 0px 1px #13084982;
}

section {
    padding: 0px 4%;
}

/* @keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
} */


.navbar {
    display: flex;
    align-items: center;
}

.navbar a {
    color: var(--text-color);
    padding: 10px 28px;
    font-weight: 700;
    transition: all .35s ease;
}

.navbar a:hover {
    color: #f3899b;
}

/* .navbar a.active{
	color: var(--second-color);
} */
.navbar a.cart {
    font-size: 30px;
}

#menu-icon {
    color: #f3899b;
    font-size: 40px;
    z-index: 10001;
    cursor: pointer;
    display: none;
}

.top-btn a {
    background: none;
    border: none;
    font-weight: 700;
    padding: 4px;
    transition: background-color 0.3s;
}

.top-btn a i {
    font-size: 26px;
    color: pink;
}

.top-btn a i:hover {
    color: var(--text-color);
}

.home {
    background-image: url(../assets/background-banner.png);
    background-size: cover;
    background-position: center center;
    height: 90vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 140px;

}

.home-text {
    width: 50%;
    text-align: left;
    padding: 26px;
}

.home-text h1 {    
    margin: 20px 0px 20px;
    font-size: 4rem;
    font-weight: bold;
    color: #008F88;
}

.home-text h1 span {
    color: #00524E;
}

.home-text p {
    font-size: 1.6rem;
    color: var(--text-color);
    line-height: 27px;
    font-weight: 500;
    margin-bottom: 30px;
}

.home-text .btn {
    width: 70%;    
}

.img-banner {
    width: 100%;
    height: 100%;

    flex: 1;
    align-items: center;
    justify-content: center;
}

.img-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.btn {
    width: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--btn-color);
    color: var(--text-white);
    padding: 17px 32px;
    border-radius: 10px;
    border: none;
    font-size: 17px;
    font-weight: 700;       
    opacity: 0.8;
    margin-top: 30px;
    gap: 8px;
    transition: background-color 0.3s;
}

.btn i {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn:hover {
    opacity: 1;
    color: #fff;
    transition: 0.50s;

}

.home-img img {
    width: 100%;
    height: auto;
}

.about {
    background-image: url(../assets/line-green\ \(2\).png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    /* background-image: linear-gradient(rgba(6, 18, 30, 0.8), #06121e), url(../img/backgroun-blur.jpg);
	background-position: left;
	background-repeat: no-repeat;
	background-size: cover; */
    /* background-color: rgb(17, 29, 51);
	background-image: linear-gradient(to top, rgba(6, 18, 30, 0.6), #06121e); */
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    align-items: center;
    grid-gap: 1rem;
    margin-top: 120px;
    padding: 0px 140px;
}

.about-img {
    margin-bottom: 20px;
    padding: 20px;
}

.about-img img {
    width: 80%;
    height: auto;
    padding: 10px;
}

.about-text {
    margin-top: 40px;
}

.about-text h2 {
    margin: 15px 0px 15px;
    font-size: 1.6rem;
    line-height: 1.1;
    color: var(--text-color);
    font-weight: 700;
}

.about-text h3 {
    color: var(--primary-color);
    font-size: 25px;
    font-weight: 600;
    margin: 15px 0px 15px;
}

.about-text p {
    text-align: justify;
    font-size: 14px;
    color: var(--text-color);
    line-height: 27px;
    font-weight: 500;
    margin-bottom: 30px;
}

.about-2 {
    margin-top: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 140px;
}

.about-2 .img-dots {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    opacity: 0.3;
}

.about-img-2 {
    width: 40%;
    padding: 10px;
    margin-bottom: 20px;
}

.about-img-2 img {
    width: 100%;
    height: auto;
    padding: 10px;
}

.about-text-2 {
    width: 50%;
    margin-top: 40px;
}

.about-text-2 h2 {
    margin: 15px 0px 15px;
    font-size: 1.6rem;
    line-height: 1.1;
    font-weight: 600;
    color: var(--text-color);
}

.img-vetor {
    margin-top: -10px;
    margin-bottom: 20px;

}

.img-vetor img {
    margin-left: 120px;
    width: 280px;
}

.about-text-2 h3 {
    color: var(--primary-color);
    font-size: 25px;
    font-weight: 600;
    margin: 15px 0px 15px;
}

.about-text-2 p {
    text-align: justify;
    font-size: 14px;
    color: var(--text-color);
    line-height: 27px;
    font-weight: 500;
    margin-bottom: 30px;
}

.services {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 120px;
    background-image: url(../assets/line-green\ \(2\).png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.content-services {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: px;
}

.container-img img {
    width: 500px;
    height: auto;
    padding: 20px;

}

.content-services-text {
    width: 100%;
    display: flex;
}

.content-services-text h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 36px;
    font-weight: 600;
}

.content-services-text h4 {
    font-size: 25px;
    color: var(--text-color);
    margin-bottom: 30px;
}

.content-services-text span {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 500;
}

.content-services-text span i {
    font-size: 22px;
    color: var(--btn-color);
    margin-right: 8px;
}


.content-services-text {
    padding: 20px;
    display: flex;
    align-items: left;
    justify-content: center;
    flex-direction: column;
}

.services .btn {
    width: 40%;
    background: #f3899b;
    box-shadow: 0px 5px 15px 0px #f3899b;   
    font-weight: 600;
    opacity: 0.9;
    transition: background-color 0.3s;
}

.services .btn:hover {
    opacity: 1;
}

.question_container {   
    margin-top: 120px;
    text-align: center;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    padding: 0px 140px;
}

.question_container h4 {
    font-size: 2.5rem;
    color: var(--text-color);
}

.question_accordian {    
    max-width: 100%;
    margin-top: 30px;
    
    display: flex;
    align-items: first baseline;
    justify-content: center;
    gap: 30px;       
}

.question_box {
    /* background-color: var(--primary-color); */
    border: 1px solid var(--primary-color);
    width: 500px;
    padding: 10px;
    margin-top: 10px;

    border-radius: 1rem;
    color: var(--text-color);    
}

.question_box .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 26px;
    font-weight: 500;
}

.question_box .title .icon {
    padding: 5px 10px;
    font-size: 1.6rem;
    border-radius: 5px;
    cursor: pointer;
}

.question_box .title .icon:hover {
    opacity: 0.8;
}

.question_box .content {
    height: 0;
    transition: .3s;
    overflow: hidden;
    padding: 0 18px;
    text-align: left;
    font-weight: 500;
    color: var(--text-color);
}

.question_box.active .content {
    height: 70px;
    padding-top: 1rem;
}

.container-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    padding: 26px;
}

.question_container .btn {
    background-color: var(--btn-color);
    width: 40%;
    opacity: 1;    
}

.question_container .btn:hover {
    opacity: 0.9;
}

footer {
    margin-top: 120px;
    width: 100%;
    background: #f3899bad;
    box-shadow: 10px 15px 15px 10px #f3899b;

    color: #fff;
    text-align: center;
    padding: 40px;
}

.text-button-footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 140px;
}

.line-footer {
    height: 1px;
    background-color: #41444E;
    margin: 20px 0;
    opacity: 0.6;    
}

.copy-links-footer {
    margin-top: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 140px;
}

.section-1 {
    font-family: "Dancing Script", cursive;
    font-size: 26px;
    color: #41444E;
}

.section-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;    
}

.section-2 p {
    color: #41444E;
}

.copy-links-footer a {
    font-size: 28px;
    margin-right: 10px;
    text-decoration: none;
}

.copy-links-footer .whats {
    color: var(--btn-color);
}

.copy-links-footer .insta {
    color: #da2d97;
}

.copy-links-footer .face {
    color: rgb(70, 70, 214);
}



@media (max-width: 760px) {
    #menu-icon {
        display: block;
    }

    .top-btn {
        display: none;
    }

    .navbar {
        position: absolute;
        top: -700px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #fff;
        align-items: flex-start;
        box-shadow: 0px 0px 1px #13084982;
        transition: all .40s ease;
    }

    .navbar a {
        display: block;
        padding: 0.8rem;
        margin: 0.5rem;
    }

    .navbar.open {
        top: 100%;
    }

    header .navbar {
        background: var(--primary-color);        
    }

    .question_accordian {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .home {     
        background-position: left;    
        width: 100%;
        height: 90vh;
        flex-direction: column;
    }

    .home-text {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        text-align: center;
        margin-top: 350px;
    }

    .home-text h1 {
        width: 100%;
        font-size: 2.3rem;
    }

    .home-text h3 {
        width: 100%;
        font-size: 0.8rem;
    }

    .home-text .btn {
        display: flex;
        width: 100%;       
        padding: 17px 10px;
        border-radius: 10px;       
        font-size: 16px;
        font-weight: 500;  
        gap: 2;                            
    }

    .btn i {
        font-size: 16px;        
    }

    .img-banner {        
        width: 100%;
        height: 60%;
        flex: 1;        
    }

    .img-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .about {
        padding: 10px;
        background-size: cover;
        display: flex;
        align-items: center;
        flex-direction: column-reverse;
        margin-top: 160px;
        text-align: left;
        width: 100%;
    }

    .about-img {
        text-align: center;
        margin-bottom: 20px;
        padding: 20px;
    }

    .about-img img {
        width: 80%;
        height: auto;
        padding: 10px;
    }

    .about-text {        
        margin-top: 40px;
    }

    .about-text h2 {        
        font-size: 1.4rem;
        line-height: 1.1;   
        padding: 0 10px;   
    }

    .about-text h3 {
        color: var(--primary-color);
        font-size: 22px;
        font-weight: 600;
        margin: 15px 0px 15px;
        padding: 0 10px;
    }

    .img-vetor {
        margin-top: -10px;
        margin-bottom: 20px;

    }

    .img-vetor img {
        margin-left: 95px;
        width: 230px;
    }

    .about-text p {
        text-align: left;
        font-size: 12px;
        color: var(--text-color);
        line-height: 20px;
        font-weight: 500;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .about-text .btn {
        margin: 0 auto;
        width: 80%;
    }

    .about-2 {
        padding: 10px;
        width: 100%;
        margin-top: -60px;
        display: flex;
        align-items: center;
        flex-direction: column;              
    }
    
    .about-2 .img-dots {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;         
        display: flex;
        align-items: right;              
    }
    
    .about-img-2 {
        width: 40%;
        padding: 10px;
        margin-bottom: 20px;
    }
    
    .about-img-2 img {
        display: none;
        width: 100%;
        height: auto;
        padding: 10px;
    }
    
    .about-text-2 {
        width: 100%;
        margin-top: 40px;
    }
    
    .about-text-2 h2 {       
        font-size: 1.6rem;
        line-height: 0;
        font-weight: 600;
        color: var(--text-color);
        padding: 10px;
    }          
    
    .about-text-2 p {
        width: 100%;
        text-align: left;
        font-size: 14px;
        color: var(--text-color);
        line-height: 27px;
        font-weight: 500;
        margin-bottom: 30px;
        padding: 10px;
    }

    .about-text-2 .btn {
        margin: 0 auto;
        width: 80%;
    }

    .services {    
        width: 100%;         
        margin-top: -10px;   
        padding: 10px;    
    }

    .services .btn{
        margin: 0 auto;
        width: 90%;
        font-size: 16px;
        padding: 17px 12px; 
    }
    
    .content-services {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        
    }
    
    .container-img img {
        max-width: 380px;
        max-height: 500px;
        padding: 20px;
    
    }
    
    .content-services-text {
        width: 100%;
        display: flex;
        text-align: left;
    }
    
    .content-services-text h3 {
        width: 100%;
        font-size: 2rem;
        color: var(--primary-color);
        margin-bottom: 36px;
        font-weight: 600;
    }
    
    .content-services-text h4 {       
        font-size: 22px;
        color: var(--text-color);
        margin-bottom: 25px;
    }
    
    .content-services-text span {
        font-size: 1.1rempx;       
        margin-bottom: 12px;
    }
    
    .content-services-text span i {
        font-size: 15px;
        color: var(--btn-color);
        margin-right: 4px;
    } 
    
    .question_container {
        margin-top: 40px;
        padding: 10px;
    }
    
    .question_container h4 {
        padding: 10px;
        text-align: left;
        font-size: 2rem;
    }

    .question_accordian {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .question_box .title {
        font-size: 0.9rem;        
        padding: 0 20px;            
    }

    .question_box.active .content {
        height: 125px;
        font-size: 0.9rem;       
    }

    .container-btn{
        width: 100%;
    }

    .container-btn .btn{
        margin: 0 auto;
        width: 100%;
        font-size: 16px;
        padding: 17px 12px; 
    }

    footer {
        margin-top: 60px;
        width: 100%;
        background: #f3899bad;
        box-shadow: 10px 15px 15px 20px #f3899b;    
        
        text-align: center;
        padding: 16px;
    }
    
    .text-button-footer {       
        justify-content: center;
        flex-direction: column;
    }
    
    .line-footer {
        border: none;
        border-top: 1px solid #41444E;
        opacity: 0.6;        
    }
    
    .copy-links-footer {
        margin-top: 20px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column-reverse;
        gap: 12px;
    }
    
    .section-1 {
        font-family: "Dancing Script", cursive;
        font-size: 22px;
        color: #41444E;
    }
    
    .section-2 {
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;    
    }
    
    .section-2 p {
        width: 100%;
        color: #41444E;
        font-size: 12px;
    }
    
    .copy-links-footer a {
        font-size: 22px;
        margin-right: 10px;
        text-decoration: none;

    }
    
    .copy-links-footer .whats {
        color: var(--btn-color);
    }
    
    .copy-links-footer .insta {
        color: #da2d97;
    }
    
    .copy-links-footer .face {
        color: rgb(70, 70, 214);
    }
    
       
}