/* ==========================
   RESET
========================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, sans-serif;
    color:#333;
    background:#ffffff;
    line-height:1.7;
    overflow-x:hidden;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

/* ==========================
   HERO
========================== */
.hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:100vh;
    background:#f6f4ef;
    gap:40px;
    padding:40px 5%;
}

.hero-text{
    width:45%;
    padding:40px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.hero-text h1{
    font-family:Georgia, serif;
    font-size:60px;
    line-height:1.1;
    margin-bottom:20px;
    white-space:nowrap;
}

.hero-text span{
    color:#72804a;
}

.linha{
    width:60px;
    height:3px;
    background:#72804a;
    margin-bottom:25px;
}

.hero-text p{
    line-height:1.8;
    margin-bottom:15px;
    font-size:17px;
}

/* ==========================
   IMAGEM PRINCIPAL
========================== */
.hero-image{
    width:55%;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
}

.hero-image img{
    width:100%;
    max-width:650px;
    border-radius:30px;
    object-fit:cover;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

/* ==========================
   ÍCONES
========================== */
.icones{
    display:flex;
    justify-content:space-between;
    margin-top:40px;
    margin-bottom:40px;
    gap:20px;
}

.icone{
    width:22%;
    text-align:center;
}

.icone i{
    font-size:32px;
    color:#72804a;
    margin-bottom:10px;
}

.icone p{
    font-size:12px;
}

/* ==========================
   BOTÕES
========================== */
.botoes{
    margin-top:20px;
}

.btn,
.btn2{
    display:inline-block;
    text-decoration:none;
    padding:15px 28px;
    border-radius:8px;
    margin-right:10px;
    transition:.3s;
    font-weight:bold;
    text-align:center;
}

.btn{
    background:#72804a;
    color:white;
}

.btn:hover{
    background:#5d693c;
}

.btn2{
    background:white;
    border:1px solid #72804a;
    color:#72804a;
}

.btn2:hover{
    background:#72804a;
    color:white;
}

/* ==========================
   DIFERENCIAIS
========================== */
.diferenciais{
    display:flex;
    justify-content:center;
    gap:40px;
    padding:60px 30px;
    flex-wrap:wrap;
    background:#ffffff;
}

.diferencial{
    width:180px;
    text-align:center;
}

.diferencial i{
    font-size:36px;
    color:#72804a;
    margin-bottom:15px;
}

.diferencial h3{
    margin-bottom:10px;
}

.diferencial p{
    font-size:14px;
}

/* ==========================
   FRASE
========================== */
.frase{
    padding:80px 20px;
    text-align:center;
    background:#f6f4ef;
}

.frase h2{
    font-family:Georgia, serif;
    font-size:34px;
    max-width:900px;
    margin:auto;
}

.frase p{
    margin-top:20px;
    color:#72804a;
    font-size:18px;
}

/* ==========================
   SOBRE
========================== */
.sobre{
    display:flex;
    align-items:center;
    gap:60px;
    padding:80px 5%;
}

.sobre-texto{
    width:40%;
}

.sobre-texto h4{
    color:#72804a;
    margin-bottom:20px;
}

.sobre-texto h2{
    font-family:Georgia, serif;
    font-size:36px;
    margin-bottom:25px;
}

.sobre-texto p{
    margin-bottom:20px;
    line-height:1.8;
}

/* ==========================
   GALERIA
========================== */
.galeria{
    width:60%;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.galeria img{
    width:100%;
    height:240px;
    border-radius:15px;
    object-fit:cover;
    box-shadow:0 5px 15px rgba(0,0,0,.10);
    transition:.3s;
}

.galeria img:hover{
    transform:scale(1.03);
}

/* ==========================
   AJUDA
========================== */
.ajuda{
    padding:80px 20px;
    background:#f6f4ef;
    text-align:center;
}

.ajuda h4{
    color:#72804a;
    margin-bottom:15px;
}

.ajuda h2{
    font-family:Georgia, serif;
    margin-bottom:50px;
    font-size:36px;
}

.cards{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.card{
    width:300px;
    background:white;
    padding:40px 30px;
    border-radius:15px;
    box-shadow:0 0 15px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card i{
    font-size:40px;
    color:#72804a;
    margin-bottom:20px;
}

.card h3{
    margin-bottom:15px;
}

.card p{
    line-height:1.6;
}

/* ==========================
   RODAPÉ
========================== */
footer{
    background:#72804a;
    color:white;
    text-align:center;
    padding:60px 20px;
}

footer h3{
    margin-bottom:15px;
}

footer p{
    margin-top:10px;
}

/* ==========================
   RESPONSIVO TABLET
========================== */
@media screen and (max-width:992px){

    .hero,
    .sobre{
        flex-direction:column;
        text-align:center;
    }

    .hero-text,
    .hero-image,
    .sobre-texto,
    .galeria{
        width:100%;
    }

    .hero-text{
        padding:40px 20px;
    }

    .hero-text h1{
        font-size:42px;
        white-space:normal;
    }

    .linha{
        margin:20px auto;
    }

    .hero-image{
        padding:20px;
    }

    .hero-image img{
        width:80%;
        max-width:500px;
    }

    .icones{
        justify-content:center;
        flex-wrap:wrap;
        gap:20px;
    }

    .icone{
        width:45%;
    }

    .botoes{
        display:flex;
        justify-content:center;
        flex-wrap:wrap;
        gap:15px;
    }

    .sobre{
        padding:50px 30px;
    }

    .galeria{
        grid-template-columns:1fr 1fr;
    }

    .galeria img{
        height:280px;
    }
}

/* ==========================
   RESPONSIVO CELULAR
========================== */
@media screen and (max-width:768px){

    .hero{
        flex-direction:column-reverse;
        min-height:auto;
        padding:30px 20px;
    }

    .hero-text{
        padding:20px 10px;
        text-align:center;
    }

    .hero-text h1{
        font-size:32px;
        white-space:normal;
        line-height:1.2;
    }

    .hero-text p{
        font-size:16px;
    }

    .hero-image img{
        width:90%;
        max-width:400px;
    }

    .icone{
        width:100%;
    }

    .diferencial{
        width:100%;
        max-width:280px;
    }

    .botoes{
        flex-direction:column;
        align-items:center;
    }

    .btn,
    .btn2{
        width:100%;
        max-width:300px;
        margin:0;
    }

    .sobre{
        padding:40px 20px;
    }

    .galeria{
        grid-template-columns:1fr;
    }

    .galeria img{
        height:220px;
    }

    .cards{
        gap:20px;
    }

    .card{
        width:100%;
        max-width:100%;
        padding:30px 20px;
    }

    .frase h2,
    .sobre-texto h2,
    .ajuda h2{
        font-size:28px;
    }

    footer{
        padding:40px 20px;
    }
}

/* ==========================
   CELULARES PEQUENOS
========================== */
@media screen and (max-width:480px){

    .hero-text h1{
        font-size:28px;
    }

    .frase h2,
    .sobre-texto h2,
    .ajuda h2{
        font-size:24px;
    }

    .hero,
    .sobre{
        padding:20px 15px;
    }

    .galeria img{
        height:180px;
    }
}