/* OneRACE - Hero Header com Background de Carros de Corrida */

.hero-header {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 4rem 0;
    overflow: hidden;
    background-color: #0b1220;
}

.hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/images/onerace-bg01.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(11, 18, 32, 0.95) 0%,
        rgba(11, 18, 32, 0.85) 40%,
        rgba(11, 18, 32, 0.75) 60%,
        rgba(11, 18, 32, 0.65) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #e5e7eb;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #e5e7eb;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    max-width: 600px;
}

.hero-content .btn {
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hero-content .btn-primary {
    background-color: #f97316;
    border-color: #f97316;
    color: #ffffff;
}

.hero-content .btn-primary:hover {
    background-color: #ea580c;
    border-color: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
}

.hero-content .btn-outline-light {
    border-color: #e5e7eb;
    color: #e5e7eb;
}

.hero-content .btn-outline-light:hover {
    background-color: rgba(229, 231, 235, 0.1);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-header {
        min-height: 400px;
        padding: 3rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-header::after {
        background: linear-gradient(
            to right,
            rgba(11, 18, 32, 0.95) 0%,
            rgba(11, 18, 32, 0.90) 100%
        );
    }
}

@media (max-width: 576px) {
    .hero-header {
        min-height: 350px;
        padding: 2rem 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-content .btn {
        font-size: 1rem;
        padding: 0.65rem 1.5rem;
    }
}
