.sessao-hero {
    padding: 10rem 2rem 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    text-align: center;
    background: linear-gradient(135deg, #1b005a 0%, #5c06ec 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.sessao-hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('../imagem/img-hero.png') center center no-repeat;
    background-size: cover;
    opacity: 0.3;
    z-index: 0;
    filter: brightness(0.8) saturate(1.2);
}

.sessao-hero h1 {
    font-size: 3.2rem;
    /* font-weight: 800; */
    line-height: 1.2;
    z-index: 2;
    margin-bottom: 1rem;
    max-width: 950px;
}

.sessao-hero p {
    /* font-size: 1.2rem; */
    line-height: 1.6;
    max-width: 850px;
    margin-bottom: 2.5rem;
    z-index: 2;
    color: #e0e0e0;
}

.sessao-hero .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.sessao-hero .cta-buttons a {
    padding: 0.85rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sessao-hero .cta-buttons .btn-primary {
    background-color: #00c9b7;
    color: #ffffff;
}

.sessao-hero .cta-buttons .btn-primary:hover {
    background-color: #00a896;
}

.sessao-hero .cta-buttons .btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.sessao-hero .cta-buttons .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.sessao-hero .badge {
    margin-top: 2rem;
    padding: 0.6rem 1.4rem;
    font-size: 0.95rem;
    border-radius: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: #ffffff;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.sessao-hero .badge i {
    color: #00c9b7;
    font-size: 1.2rem;
}



@media (max-width: 768px) {
    .sessao-hero{
        padding: 5rem 0;
    }
    .sessao-hero h1 {
         font-size: 1.8rem;
     }


     .sessao-hero p {
         font-size: 12px;
     }

 }