@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;400;600&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

* {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
}
html{
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
    position: relative;
    width: 100%;
}

nav{
    width: 100%;
    height: 65px;
    background-color: #0dca8b;
}

nav .container{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


nav .container img{
    height: 100%;
}

.modal-area{
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    padding: 0 15px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    z-index: 9;
}

.modal{
    width: 100%;
    max-width: 450px;
    padding: 10px 25px;
    background-color: rgb(30, 90, 66);
    border-radius: 6px;
    min-height: 250px;
    -webkit-box-shadow: 0px 0px 20px -2px rgba(0, 0, 0, 0.35);
    -moz-box-shadow: 0px 0px 20px -2px rgba(0, 0, 0, 0.35);
    box-shadow: 0px 0px 20px -2px rgba(0, 0, 0, 0.35);
}

.modal-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h2{
    color: #fff;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.modal-header button{
    padding: 6px 6px;
}

hr {
    border: 0.8px solid white;
    opacity: 0.6;
}

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

.form-control input{
    width: 100%;
    height: 40px;
    border-radius: 4px;
    border: 0;
    margin-bottom: 10px;
    padding: 10px;

}

.form-control button{
    margin-top: 10px;
}

.form-control button:hover{
    transform: none;
}

.container{
    width: 100%;
    max-width: 1140px;
    margin: auto;
    padding: 0 25px;
}

.main{
    width: 100%;
    height: 80vh;
    background-image: linear-gradient(90deg, rgba(18, 44, 35, 0.8), rgba(11, 165, 114, 0.8));
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left top;
}

.main .container{
    height: 100%;
    display: flex;
    align-items: center;
}

.main-info{
    width: 50%;
}

.main-info h1{
    font-size: 3.2rem;
    color: rgb(255, 255, 255);
    line-height: 3.4rem;
    margin-bottom: 25px;
    font-weight: bold;
}

.main-info p{
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 35px;
    color: #e4e4e4;
}

.main-info-img{
    width: 50%;
}

.main-info-img img{
    width: 100%;
}

button{
    padding: 12px 25px;
    background-color: #0ca773;
    border: 0;
    font-weight: 400;
    border-radius: 5px;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    transition: 0.8s;
}

button:hover{
    transform: scale(1.1);
}

.about{
    width: 100%;
    padding: 100px 0 40px 0;
}

.about-area{
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.about .container{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about h2{
    font-size: 32px;
    color: rgb(41, 41, 41);
}

.about span{
    margin-bottom: 25px;
}

.about-thumb, .about-cards{
    width: 50%;
}

.about-thumb img{
    width: 100%;
}

.about-cards{
    display: flex;
    flex-wrap: wrap;
}

.about-cards span{
    display: flex;
    width: 40%;
    padding: 10px;
    background-color: rgb(231, 231, 231);
    margin: 4px;
    align-items: center;
    border-radius: 4px;
    
}

.faq{
    padding: 75px 0 75px 0;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.faq h2{
    font-size: 2rem;
}

.faq span{
    margin-bottom: 45px;
    font-size: 1.4rem;
}

.faq .container{
    width: 60%;
}

summary{
    background-color: #0ca773;
    width: 100%;
    padding: 15px 8px;
    border: 1px solid #0fc78a;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    border-radius: 4px;
    margin-bottom: 4px;
}

details p{
    padding: 15px;
    border: 1px solid rgb(218, 218, 218);
    border-radius: 4px;
    margin-bottom: 4px;
    font-size: 1.2rem;
}

.store{
    width: 100%;
    padding: 100px 0;
    background-color: #0dca8b;
}

.whatsapp-action{
    background-color: rgb(228, 228, 33);
    color: #000;
    height: 50px;
    margin: 20px 0;
    border: 1px solid #000;
}

.store .container{
    width: 60%;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 50px;
}

.store-info, .store-card{
    width: 50%;
}

.store-info h2{
    font-size: 2.4rem;
    line-height: 2.8rem;
    color: #f0f0f0;
    font-weight: 400;
}

.destaque{
    background-color: #fff;
    padding: 0 5px;
    color: #0dca8b;
}

.store-card{
    background-color: #fff;
    text-align: center;
    border-radius: 10px;
}

.store-price{
    background-color: #227559;
    height: 80px;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #ffffff;
    border-radius: 10px 10px 0 0;
}

.price{
    position: relative;
    display: block;
}

.price::before{
    content: "R$";
    font-size: 1.4rem;
    position: absolute;
    left: -25px;
    top: 8px;
}

.store-beneficios{
    padding: 40px 0;
}

.store-beneficios h3{
    font-size: 2rem;
    margin-bottom: 15px;
}

.store-beneficios ul{
    list-style: none;
    margin-bottom: 35px;
}

.store-beneficios li{
    margin-bottom:  5px;
    font-size: 1.2rem;
}

.button-store{
    width: 50%;
    animation: pulse 1s infinite;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

@keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.1);
      opacity: 0.7;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

footer{
    width: 100%;
    height: 60px;
    background-color: rgb(12, 161, 112);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
    color: #fff;
}

footer span{
    display: block;
}