.home-container {
    width: 100%;
}

.banner {
    background-color: var(--lot-orange);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.banner-content {
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.banner-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.banner-subtitle {
    font-size: clamp(1.3rem, 3vw, 2.2rem);
    color: var(--lot-green);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.banner-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.9;
    margin-bottom: 2.5rem;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.btn-register {
    display: inline-block;
    background-color: var(--lot-green);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.15s ease;
    margin-top: 1rem;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
}

.btn-register:hover {
    background-color: #1a3a32;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.parallax-divider {
    height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

@media (max-width: 768px) {
    .parallax-divider {
        background-attachment: scroll;
        height: 100px;
    }
}
