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

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f7faf8;
    color:#444;
}

.services{
    padding:80px 20px;
}

.container{
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title span{
    color:#2f9e44;
    font-size:15px;
    font-weight:bold;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-title h2{
    margin-top:10px;
    font-size:36px;
    color:#1f3c2c;
    line-height:1.4;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));
    gap:25px;
}

.service-item{
    background:#fff;
    border-radius:15px;
    padding:25px;
    display:flex;
    align-items:flex-start;
    gap:18px;
    transition:.3s;
    border:1px solid #e5e5e5;
    box-shadow:0 5px 18px rgba(0,0,0,.05);
}

.service-item:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.check{
    width:42px;
    height:42px;
    min-width:42px;
    border-radius:50%;
    /*background:#38b000;*/
    background: #d390bb;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    font-weight:bold;
}

.service-item h3{
    margin-bottom:8px;
    color:#1f3c2c;
    font-size:20px;
}

.service-item p{
    color:#666;
    line-height:1.7;
    font-size:15px;
}

.estrutura{
    padding:80px 20px;
    background:#f8fbf9;
}

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

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title span{
    color:#3aa64a;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-title h2{
    margin-top:12px;
    font-size:34px;
    color:#23402d;
    line-height:1.4;
}

.estrutura-lista{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(450px,1fr));
    gap:25px;
}

.estrutura-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    background:#fff;
    padding:25px;
    border-radius:15px;
    border:1px solid #e8ece9;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
    transition:.3s;
}

.estrutura-item:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

/*.check{
    width:42px;
    height:42px;
    min-width:42px;
    border-radius:50%;
    background:#43b54a;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:bold;
}*/

.conteudo h3{
    margin-bottom:8px;
    font-size:22px;
    color:#23402d;
}

.conteudo p{
    color:#666;
    line-height:1.7;
    font-size:15px;
}

/* Responsivo */
@media(max-width:768px){

    .estrutura-lista{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:28px;
    }

}


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

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f7f9f8;
}

.estrutura{
    padding:80px 20px;
}

.container{
    max-width:1200px;
    margin:auto;
}

.titulo{
    text-align:center;
    margin-bottom:50px;
}

.titulo span{
    color:#3da95b;
    font-weight:bold;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:20px;
}

.titulo h2{
    margin-top:12px;
    color:#23412d;
    font-size:34px;
    line-height:1.4;
}

.galeria{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}

.card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.35s;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.info{
    padding:22px;
}

.info h3{
    color:#23412d;
    margin-bottom:10px;
    font-size:22px;
}

.info p{
    color:#666;
    line-height:1.7;
    font-size:15px;
}

@media(max-width:768px){

    .titulo h2{
        font-size:28px;
    }

    .card img{
        height:200px;
    }

}

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

.equipe{
    padding:80px 20px;
    background:#f7faf8;
}

.container{
    max-width:1200px;
    margin:auto;
}

.titulo{
    text-align:center;
    margin-bottom:50px;
}

.titulo span{
    color:#4caf50;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:14px;
}

.titulo h2{
    margin:15px 0;
    font-size:36px;
    color:#23402d;
}

.titulo p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.7;
}

.equipe-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap:25px;
}

.card-equipe{
    background:#fff;
    padding:35px 20px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    transition:0.3s;
}

.card-equipe:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.10);
}
.icone{
    width:80px;
    height:80px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#f8edf4;          /* Fundo suave */
    border:2px solid #d390bb;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.icone i{
    font-size:34px;
    color: #d390bb;
}

.card-equipe:hover .icone{
    background:#d390bb;
    transform:scale(1.08);
}

.card-equipe:hover .icone i{
    color:#fff;
}


.contato-localizacao{

    padding:90px 20px;
    background:#fafafa;

}



.container{

    max-width:1200px;
    margin:auto;

}



.titulo{

    text-align:center;
    margin-bottom:50px;

}



.titulo span{

    color:#d390bb;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:bold;

}



.titulo h2{

    font-size:38px;
    color:#333;
    margin:15px 0;

}



.titulo p{

    color:#666;
    line-height:1.7;

}



.contato-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;

}



/* FORMULÁRIO */

.form-area{

    background:white;
    padding:40px;
    border-radius:20px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

}



.form-area h3{

    color:#333;
    font-size:25px;
    margin-bottom:25px;

}



.form-area input,
.form-area select,
.form-area textarea{


    width:100%;

    padding:8px;

    margin-bottom:18px;

    border-radius:10px;

    border:1px solid #ddd;

    font-size:15px;

    outline:none;

}



.form-area input:focus,
.form-area select:focus,
.form-area textarea:focus{

    border-color:#d390bb;

}



.form-area button{


    width:100%;

    /*padding:17px;*/

    background:#d390bb;

    color:white;

    border:none;

    border-radius:10px;

    font-size:17px;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;


}



.form-area button:hover{

    background:#c06ca4;

}



/* MAPA */


.mapa-area{

    background:white;

    border-radius:20px;

    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

}



.endereco{

    padding:30px;

}



.endereco h3{

    color:#333;
    margin-bottom:20px;

}



.endereco p{

    color:#666;

    line-height:1.8;

    margin-bottom:15px;

}



.endereco i{

    color:#d390bb;

    margin-right:10px;

}



.mapa-area iframe{

    width:100%;

    height:350px;

    border:0;

    display:block;

}



/* RESPONSIVO */


@media(max-width:900px){

    .contato-grid{

        grid-template-columns:1fr;

    }


    .titulo h2{

        font-size:30px;

    }

}