/* Container padrão para alinhar com o Navbar */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-section {
    position: relative;
    height: 100vh; /* Ocupa a tela toda */
    width: 100%;
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efeito de profundidade ao scrollar */
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    /* animation: MoveInUp 1.3s ease-out forwards; */
    animation-delay: 0s;
}

/* Camada escura sobre a foto */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2; /* Fica acima do overlay */
    width: 100%;
}

.hero-content {
    max-width: 600px; /* Mantém o texto no lado esquerdo */
    color: #ffffff;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    animation: fadeInUp 1.3s ease-out forwards;
    animation-delay: 0.1s;
    opacity: 0;
    text-align: left;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #e0e0e0;
    line-height: 1.6;
    animation: fadeInUp 1.3s ease-out forwards;
    animation-delay: 0.13s;
    opacity: 0
}

.hero-btn {
    display: inline-block;
    background-color: #2564eb2d;
    color: #00aeff;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #00c3ff;
    animation: fadeInUp 1.3s ease-out forwards;
    animation-delay: 0.16s;
    opacity: 0;
    transition: color 0.5s ease, background-color 0.5s ease, border-color 0.5s ease;
}

.hero-btn:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #fff;
}

/* Animação de entrada */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(-100px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes MoveInUp {
    from { transform: translateY(40px); }
    to { transform: translateY(0); }
}


/* Responsividade Mobile */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-content { 
        /* text-align: center;  */
        margin: 0 auto; 
    }
    .hero-overlay {
        background: rgba(0,0,0,0.6); /* Overlay uniforme no mobile */
    }
    .hero-section {
        background-attachment: scroll; /* Efeito de profundidade ao scrollar */
    }
    .hero-btn {
        padding: 12px 35px;
    }
}