html,
body{
    margin:0;
    padding:0;
    min-height:100vh;
}

body{
    display:flex;
    flex-direction:column;
    background:#f4f7f3;
    font-family:Arial,sans-serif;
}

main{
    flex:1;
}

.top-header,
.footer{
    background:#1A6B35;
}

.top-header{
    padding:10px 40px;
}

.logo{
    height:50px;
}

.navbar-nav .nav-link{
    color:#fff !important;
    font-weight:700;
    margin:0 14px;
}

.navbar-nav .nav-link:hover{
    color:#ffdf28 !important;
}

.resultados-hero{
    background:linear-gradient(135deg,#1A6B35,#0f3f20);
    color:#fff;
    text-align:center;
    padding:55px 20px;
}

.resultados-hero h1{
    font-size:42px;
    font-weight:800;
}

.resultados-hero p{
    font-size:18px;
    opacity:.9;
}

.resultado-area{
    max-width:1200px;
    margin:-35px auto 60px;
    padding:0 20px;
}

.accordion-item{
    border:none;
    margin-bottom:14px;
    border-radius:16px !important;
    overflow:hidden;
    box-shadow:0 6px 20px rgba(0,0,0,.08);
}

.accordion-button{
    background:#fff;
    color:#1A6B35;
    font-weight:800;
    padding:20px 24px;
    box-shadow:none !important;
}

.accordion-button:not(.collapsed){
    background:#eaf5ee;
}

.accordion-title{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.accordion-body{
    padding:24px;
}

.info-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.info-card{
    background:#fff;
    border-left:5px solid #1A6B35;
    border-radius:12px;
    padding:22px;
    box-shadow:0 3px 12px rgba(0,0,0,.08);
}

.info-card span{
    display:block;
    font-size:13px;
    color:#777;
    text-transform:uppercase;
    font-weight:700;
    margin-bottom:10px;
}

.info-card strong{
    color:#1A6B35;
    font-size:18px;
    display:block;
    word-break:break-word;
}

.hash{
    color:#245CC2 !important;
    font-family:monospace;
    font-size:15px !important;
}

.footer{
    padding:35px 40px;
}

.whats-fixo{
    position:fixed;
    right:35px;
    bottom:35px;
    width:70px;
    height:70px;
    border-radius:18px;
    background:#1fbe38;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    text-decoration:none;
}

@media(max-width:768px){

    .top-header{
        padding:10px 20px;
    }

    .resultados-hero h1{
        font-size:32px;
    }

    .accordion-title{
        flex-direction:column;
        align-items:flex-start;
        gap:8px;
    }

}