/* Hero Section - Ajuste para Header */
.hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: 
        radial-gradient(ellipse at top, #1e3c72, #2a5298),
        linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-blend-mode: multiply;
    color: white;
    position: relative;
    box-shadow: inset 0 0 100px rgba(0,0,0,0.3);
    z-index: 999;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/5aac2f52-5288-4146-8dbc-50c2cc74387c.png') no-repeat center right;
    background-size: 100% auto;
    opacity: 0.90;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}


@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero {
        padding: 6rem 2rem 3rem;
    }
}


.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #e7e7e7;
    animation: fadeInUp 1s ease-out;
}

.hero h1 span {
    background: linear-gradient(45deg, #4B0082, #0064FF, var(--color-accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-text-stroke: 1px white;
}

.hero h1 :not(span) {
    text-shadow: 0 2px 4px rgba(0,0,0,0.3); 
    -webkit-text-stroke: 2px black;
}

.hero p {
    font-size: 1.3rem;
    color: #f2f2f2;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3); 
}


.hero-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(45deg, #4B0082, #0064FF);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(75, 0, 130, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(75, 0, 130, 0.4);
}