@import url('https://fonts.googleapis.com/css2?family=Bevan:ital@0;1&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

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

@font-face {
  font-family: 'telegraf';
  src: url('../fonts/PPTelegraf-Regular.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root{
    --primary-color: #608334
}

.container{
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.section{
    padding: 4.5rem 0 2rem;
    color: #fff;
}


body{
    background: linear-gradient(to bottom,  #9db97b ,#CBDDB5, #ccd3c5);
    color: #fff;
    font-family: 'telegraf';
}

html{
    scroll-behavior: smooth;
}

a{
    text-decoration: none;
    color: #fff;
}

h2{
    font-size: 2.3rem;
    color: var(--primary-color);
    font-family: "Playfair Display";
    margin-bottom: 2rem;
}
h3, h4, h2{
    text-align: center;
}
h3{
    color: #090909;
    margin-top: 20px;
    margin-bottom: 10px;
}
h4{
    color: #565656;
    margin-bottom: 2rem;
}

ul{
    list-style: none;
}

img{
    max-width: 150%;
    height: auto;
}

main{
    overflow: hidden;
}

.header{
    position: fixed;
    height: 60px;
    width: 100%;
    z-index: 999;
}
#header-home{
    font-size: 2.2rem;
}

#header-home img{
    width: 45px;
    height: auto;
}

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

.button,
.buttonEmail{
    background-color: var(--primary-color);
    border: 0;
    color: #fff;
    border-radius: 10px;
    padding: 12px 10px;
    font-size: 1.1rem;
    transition: all .3s ease-in-out;
    cursor: pointer;
}
.button:hover{
    opacity: .7;
}

.nav-logo img{
    width: 150px;
}

.nav-logo a{
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: bold;
}

@media(max-width: 767px){

    .nav-menu{
        position: fixed;
        width: 60vw;
        top: 0;
        right: -100%;
        bottom: 0;
        background-color: #93A267;
        padding-bottom: 4rem;
        transition: .5s;
        border-left: 1px solid var(--primary-color);
    }
}

.nav-list{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5rem;
    gap: 2rem;
}
.nav-list li a{
    color: #fff;
    font-size: 1.2rem;
    padding: .8rem;
    border-radius: 20px;
}
.nav-list li a:hover{
    color: #b3c2a3;
    
}

.nav-button{
    border: 20px solid #fff;
    padding: 1400px 2000px ;
    border-radius: 30px;
    
}


.nav-item:has(.nav-button){
    margin-top: 18px;
}

.nav-link{
    color: var(--title-color);
    font-weight: bold;
    transition: .3s;
}
.nav-link:hover{
    color: var(--secundary-color);
}

#menu-img{
    position: absolute;
    top: 0;
    width: 100px;
}

.nav-close{
    position: absolute;
    font-size: 2rem;
    top: 4%;
    right: 6%;
    cursor: pointer;
}

.menu-opener{
    font-size: 1.3rem;
    cursor: pointer;
    color: #fff;
}

/* MENU OPENED */
.menu-opened{
    right: 0;
}

/* BACKGROUND HEADER */

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


@media(min-width: 767px){

    #menu-img,
    .nav-close,
    .menu-opener{
        display: none;
    }

    .header{
        height: 80px;
    }

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

    .nav-item:has(.nav-button){
        margin-top: -1px;
    }

    
    .nav-list{
        display: flex;
        flex-direction: row;
        gap: 3rem;
        margin: 0;
    }

    .nav-item a{
        font-weight: initial;
    }
}


/* Banner */

.banner-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.banner-content h2{
    text-align: left;
    margin-bottom: 0;
}

.banner-info{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: #090909;
}

.banner-img-area{
    flex: 1
}

.banner-img-area{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: end;
}

.banner-img-area img{
    width: 85%;
    border-radius: 20px;
}

/* SOBRE MIM */

.about-content{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.about-content h2{
    text-align: left;
    margin-bottom: 0;
}

.about-content img{
    height: auto;
    width: 90%;
    border-radius: 20px;
}

.about-info,
.about-info div{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.about-info{
    gap: 10px;
    color: #090909;
}

.about-info div{
    flex: 1;
    font-size: 1.1rem;
}

/* SERVICES */

.services-content h2{
    text-align: center;
}

.services-area{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 4.5rem;
}

.service{
    background-color: #fff;
    color: #000;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.service h5{
    font-size: 1.6rem;
    margin: 20px 0;
}
.service i{
    font-size: 2.4rem;
    color: var(--primary-color);
}


.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 auto;
}

.area-card {
    background: #fff;
    color: #000;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}


/* BENEFITS */

div.beneficios {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 60px 20px;
  }

.beneficios-texto {
    flex: 1 1 450px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.beneficio-card {
    background: #fff;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid #4b8b3b;
}
.beneficio-card.card-final{
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 2px solid var(--primary-color)
}

.beneficio-card:hover {
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.beneficio-card i {
    font-size: 28px;
    color: #4b8b3b;
    flex-shrink: 0;
}

.beneficio-card p {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
}

.beneficio-card strong {
    color: #000;
}

.beneficios-img {
    flex: 1 1 350px;
    display: flex;
    justify-content: center;
}

.beneficios-img img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}


/* FAQ */


.faq-item {
    background: #d7efff;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    color: #000;
}

.faq-question {
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 500;
}

.faq-question:hover {
    background: #c9e9ff;
}

.faq-answer {
    background: #fff;
    padding: 15px 20px;
    display: none;
    font-size: 0.95rem;
    color: #333;
}

.faq-item.active .faq-answer {
    display: block;
}

/* TESTIMONIAL */

.depoimentos-section {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.depoimentos-section h2 {
    font-size: 2rem;
    color: #4b8b3b;
    margin-bottom: 40px;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    justify-content: center;
}

.depoimento-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.coroa {
    font-size: 24px;
    position: absolute;
    top: -18px;
    left: 0;
}

.depoimento-card h3 {
    color: #4b8b3b;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 10px;
    margin-bottom: 12px;
}

.depoimento-card p {
    font-size: 0.95rem;
    color: #222;
    line-height: 1.6;
}


/* CONTATO */

.contact-content {
  display: flex;

}

.info-contato{
    flex: 1;
}

.info-contato h4{
  margin-bottom: 3rem;
}


.info-contato p {
  line-height: 1.6;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 2rem;
  color: #090909;
}

.info-item h6{
    font-size: 1rem;
}
.info-item i{
    font-size: 1.6rem;
}


/* FORMULÁRIO */
.form-contato {
  flex: 1;
  background-color: #98b379;
  padding: 40px;
  border-radius: 12px;
}

.form-contato label {
  display: block;
  color: #fff;
  margin-bottom: 6px;
  font-weight: 500;
}

.form-contato input,
.form-contato textarea {
  width: 100%;
  background-color: #CBDDB5;
  border: 2px solid #93A267;
  border-radius: 8px;
  padding: 12px 15px;
  color: #222;
  margin-bottom: 20px;
  font-size: 15px;
}

.form-contato input:focus,
.form-contato textarea:focus {
  outline: none;
  border-color: #485935;
}

.form-contato textarea {
  height: 120px;
  resize: none;
}

.form-contato div{
    display: flex;
    justify-content: center;
    align-items: center;
}



/* ===== FOOTER ===== */
.footer {
  background-color: var(--primary-color);
  color: #ddd;
  padding: 40px 20px;
  font-family: 'Inter', sans-serif;
  text-align: center;
  border-top: 1px solid #1a1a1a;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 20px;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d2cfcf;
  font-size: 15px;
}

.footer-item i {
  color: #303b23;
  font-size: 20px;
}

.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding-top: 15px;
  font-size: 14px;
  color: #303b23;
}

.footer-bottom p {
  margin: 0;
}


/* MEDIA QUERIE */

@media(max-width: 1150px){
    .container{
        margin: 0 1.5rem;
    }
}

@media(max-width: 767px){
    .banner-content{
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .banner-info h2{
        text-align: center;
    }

    .banner-img-area{
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
    }

    .banner-img-area img{
        width: 80%;
        border-radius: 20px;
    }



    .about-content{
        display: flex;
        flex-direction: column-reverse;
        gap: 2rem;
        align-items: center;
    }
    .about-content img{
        width: 80%;
    }
    .about-info div{
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }


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

    div.beneficios {
        padding-top: 0;
    }


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


@media(max-width: 550px){
    h2{
        font-size: 1.8rem;
    }

    .button{
        font-size: .9rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 15px;
    }

}

@media(max-width: 400px){
    h2{
        font-size: 1.4rem;
    }
    h3{
        font-size: 1rem;
    }
    h4{
        font-size: .9rem;
    }

    .button{
        font-size: .9rem;
    }

    .banner-content{
        text-align: justify;
    }

    .banner-info div{
        text-align: center;
    }
    .banner-img-area img{
        width: 100%;
        border-radius: 20px;
    }


    .about-info p{
        font-size: 0.9rem;
    }
    .about-content img{
        width: 100%;
    }


    .areas-grid, .services-area{
        grid-template-columns: repeat(1, 1fr);
    }
}