/* ===========================================================
   ECO FOLHAS APP
   Portal Oficial
   =========================================================== */

:root{

    --verde:#315F42;
    --verde-hover:#254834;
    --cinza:#666;
    --cinza-claro:#f5f5f5;
    --branco:#ffffff;
    --borda:#dddddd;

    --largura:1180px;

}

/* =========================================================== */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    color:#333;

    background:#fff;

    line-height:1.8;

}

/* =========================================================== */

.container{

    width:min(var(--largura),92%);

    margin:auto;

}

/* =========================================================== */
/* HEADER */
/* =========================================================== */

header{

    background:var(--verde);

    position:sticky;

    top:0;

    z-index:999;

    box-shadow:0 2px 8px rgba(0,0,0,.15);

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:82px;

}

/* =========================================================== */
/* LOGO */
/* =========================================================== */

.logo img{

    height:60px;

    display:block;

}

/* =========================================================== */
/* MENU DESKTOP */
/* =========================================================== */

nav{

    display:flex;

    align-items:center;

    gap:30px;

}

nav a{

    color:#fff;

    text-decoration:none;

    font-weight:500;

    transition:.30s;

}

nav a:hover{

    opacity:.75;

}

.site-btn{

    background:#fff;

    color:var(--verde);

    padding:10px 18px;

    border-radius:30px;

    font-weight:600;

}

.site-btn:hover{

    background:#efefef;

}

/* =========================================================== */
/* MENU MOBILE */
/* =========================================================== */

.menu-toggle{

    display:none;

    font-size:34px;

    background:none;

    border:none;

    color:#fff;

    cursor:pointer;

}

/* =========================================================== */

main{

    padding:60px 0;

}

/* =========================================================== */

h1{

    color:var(--verde);

    font-size:2.3rem;

    margin-bottom:30px;

}

h2{

    color:var(--verde);

    margin-top:40px;

    margin-bottom:15px;

}

p{

    margin-bottom:18px;

}

ul{

    margin-left:25px;

    margin-bottom:20px;

}

li{

    margin-bottom:10px;

}

/* =========================================================== */

a{

    color:var(--verde);

}

a:hover{

    text-decoration:none;

}

/* =========================================================== */

footer{

    background:var(--verde);

    color:#fff;

    padding:45px 0;

    margin-top:60px;

}

footer p{

    margin-bottom:10px;

    text-align:center;

}

footer a{

    color:#fff;

}

/* =========================================================== */
/* MOBILE */
/* =========================================================== */

@media(max-width:768px){

    header .container{

        min-height:75px;

    }

    .menu-toggle{

        display:block;

    }

    nav{

        display:none;

        position:absolute;

        left:0;

        right:0;

        top:75px;

        background:var(--verde);

        flex-direction:column;

        gap:0;

        padding:15px 0;

        box-shadow:0 5px 10px rgba(0,0,0,.20);

    }

    nav.active{

        display:flex;

    }

    nav a{

        width:100%;

        padding:16px;

        text-align:center;

        border-top:1px solid rgba(255,255,255,.15);

    }

    .site-btn{

        margin:15px;

    }

    h1{

        font-size:1.8rem;

    }

}

/* =========================================================== */
/* TABLETS */
/* =========================================================== */

@media(min-width:769px) and (max-width:1024px){

    nav{

        gap:18px;

    }

    .site-btn{

        padding:8px 14px;

    }

}

/* ===========================================================
   BOTÕES DE CONTATO
   =========================================================== */

.contact-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-top:25px;

}

.contact-button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:220px;

    padding:14px 22px;

    border-radius:8px;

    background:#315F42;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.25s;

    cursor:pointer;

    border:none;

    font-family:inherit;

    font-size:15px;

}

.contact-button:hover{

    background:#254834;

}

.contact-button.whatsapp{

    background:#25D366;

}

.contact-button.whatsapp:hover{

    background:#1ea952;

}

@media(max-width:768px){

    .contact-buttons{

        flex-direction:column;

    }

    .contact-button{

        width:100%;

    }

}