/* config/style.css */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins', sans-serif;
    background:#f5f5f5;
    color:#222;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HEADER */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#ffffff;
    z-index:999;
    box-shadow:0 2px 15px rgba(0,0,0,0.08);
}

.nav-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:80px;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo{
    width:55px;
    height:55px;
    object-fit:contain;
}

.logo-area h1{
    font-size:20px;
    color:#1f5c2d;
}

.menu ul{
    display:flex;
    list-style:none;
    gap:30px;
}

.menu ul li{
    position:relative;
}

.menu ul li a{
    text-decoration:none;
    color:#222;
    font-weight:500;
    transition:0.3s;
}

.menu ul li a:hover{
    color:#1f5c2d;
}

/* SUBMENU */

.submenu{
    position:absolute;
    top:100%;
    left:0;
    background:#fff;
    width:180px;

    display:flex;
    flex-direction:column;

    padding:15px 0;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);

    opacity:0;
    visibility:hidden;
    transition:0.3s;
}

.dropdown:hover .submenu{
    opacity:1;
    visibility:visible;
}

.submenu li{
    padding:10px 20px;
}

.submenu li a{
    font-size:14px;
    display:block;
    width:100%;
}

/* MOBILE */

.menu-mobile-btn{
    display:none;
    font-size:28px;
    cursor:pointer;
}

/* BANNER */

.banner{
    width:100%;
    height:100vh;
    position:relative;
    overflow:hidden;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:1s;
}

.slide.active{
    opacity:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    z-index:1;
}

.banner-content{
    position:relative;
    z-index:2;
    width:100%;
    height:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    padding:20px;
}

.banner-content h2{
    font-size:60px;
    margin-bottom:20px;
}

.banner-content p{
    font-size:20px;
    max-width:700px;
}

.btn{
    margin-top:30px;
    background:#1f5c2d;
    color:#fff;
    text-decoration:none;
    padding:14px 35px;
    border-radius:40px;
    transition:0.3s;
}

.btn:hover{
    background:#163f1f;
}

/* SOBRE */

.sobre{
    padding:120px 0;
    background:#fff;
}

.sobre .container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.sobre-img img{
    width:100%;
    border-radius:20px;
}

.sobre-texto span,
.titulo span,
.contato-info span{
    color:#1f5c2d;
    font-weight:600;
}

.sobre-texto h2,
.titulo h2,
.contato-info h2{
    font-size:40px;
    margin:15px 0 25px;
}

.sobre-texto p{
    margin-bottom:20px;
    line-height:1.8;
}

.instagram-btn{
    display:inline-block;
    margin-top:15px;
    background:#E1306C;
    color:#fff;
    text-decoration:none;
    padding:14px 30px;
    border-radius:40px;
}

/* AÇÕES */

.acoes{
    padding:120px 0;
    background:#f0f3f1;
}

.titulo{
    text-align:center;
    margin-bottom:60px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.4s;
}

.card:hover{
    transform:translateY(-8px);
}

.card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.card h3{
    padding:25px 25px 10px;
}

.card p{
    padding:0 25px 30px;
    line-height:1.7;
}

/* CONTATO */

.contato{
    padding:120px 0;
    background:#fff;
}

.contato-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.contato-info p{
    margin-bottom:15px;
    line-height:1.8;
}

.contato-img img{
    width:100%;
    border-radius:20px;
}

/* FOOTER */

.footer{
    background:#1f5c2d;
    color:#fff;
    text-align:center;
    padding:30px 20px;
}

/* RESPONSIVO */

@media(max-width:991px){

    .menu{
        position:absolute;
        top:80px;
        right:-100%;
        width:280px;
        background:#fff;
        height:calc(100vh - 80px);
        transition:0.4s;
        padding-top:30px;
    }

    .menu.active{
        right:0;
    }

    .menu ul{
        flex-direction:column;
        padding-left:30px;
    }

    .submenu{
        position:relative;
        top:10px;
        box-shadow:none;
        width:100%;
    }

    .menu-mobile-btn{
        display:block;
    }

    .banner-content h2{
        font-size:38px;
    }

    .sobre .container,
    .contato-container,
    .cards{
        grid-template-columns:1fr;
    }

}

.contato-img.mapa{
    width:100%;
    height:100%;
}

.contato-img.mapa iframe{
    width:100%;
    height:500px;
    border:none;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

/* =========================
PÁGINA INTERNA
========================= */

.pagina-topo{
    padding:160px 0 80px;
    background:#f5f5f5;
}

.pagina-topo-texto{
    text-align:center;
}

.pagina-topo-texto span{
    color:#0d5c2f;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.pagina-topo-texto h2{
    font-size:42px;
    margin:15px 0;
    color:#222;
}

.pagina-topo-texto p{
    color:#666;
    font-size:17px;
}

/* =========================
TABELA DE COTAÇÕES
========================= */

.cotacoes{
    padding:0 0 100px;
    background:#fff;
}

.tabela-cotacoes{
    width:100%;
    overflow-x:auto;
}

.tabela-cotacoes table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.tabela-cotacoes thead{
    background:#0d5c2f;
}

.tabela-cotacoes thead th{
    color:#fff;
    padding:18px;
    text-align:left;
    font-size:15px;
    font-weight:600;
}

.tabela-cotacoes tbody tr{
    border-bottom:1px solid #eee;
    transition:0.3s;
}

.tabela-cotacoes tbody tr:hover{
    background:#f8f8f8;
}

.tabela-cotacoes tbody td{
    padding:18px;
    color:#444;
    font-size:15px;
}

.btn-download{
    display:inline-block;
    background:#0d5c2f;
    color:#fff;
    padding:10px 18px;
    border-radius:8px;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

.btn-download:hover{
    background:#11753d;
}

/* =========================
RESPONSIVO
========================= */

@media(max-width:768px){

    .pagina-topo{
        padding:140px 0 60px;
    }

    .pagina-topo-texto h2{
        font-size:30px;
    }

    .tabela-cotacoes table{
        min-width:700px;
    }

}