/* Hero Section - banner*/
.hero {
    padding-top: 0px;
    padding-bottom: 60px;
    background-image: 
    linear-gradient(rgba(138, 18, 128, 0.7), rgba(193, 60, 178, .9)),
    url('/landing-page/img/fundo-banner.png');
    
    background-attachment: fixed;
    background-position: center;   
    background-size: cover;       
    background-repeat: no-repeat;
    position: relative;
    color: white;
}
.hero::before {
    content: "";
    display: block;
    height: 111px;
    margin-top: 0px;
    visibility: hidden;
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-content img {
    width: 100%;
    max-width: 500px;
    margin-bottom: 5rem;
}

.hero-content p {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--green);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: var(--blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}