/* Hero Section */
.hero {
    width: 100%;
    height: 60vh; /* Ajuste a altura conforme necessário */
    overflow: hidden;
    position: relative;
    color: #fff;
    margin-top: 0; /* REMOVA qualquer margem superior */
}

.banner-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.banner-slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-content {
    max-width: 800px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    animation: fadeInUp 1s ease;
}

.banner-slide h1 {
    font-size: 3em;
    margin-bottom: 15px;
    color: #fff;
}

.banner-slide p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #eee;
}

.banner-slide .btn {
    display: inline-block;
    background-color: #4CAF50;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.banner-slide .btn:hover {
    background-color: #3e8e41;
}

/* Banner Navigation */
.banner-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 3;
}

.banner-nav button {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 15px 10px;
    cursor: pointer;
    font-size: 1.5em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.banner-nav button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Banner Indicators */
.banner-indicators {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.indicator.active {
    background-color: #4CAF50;
    transform: scale(1.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        height: 50vh;
    }

    .banner-slide h1 {
        font-size: 2.2em;
    }

    .banner-slide p {
        font-size: 1em;
    }

    .banner-nav button {
        padding: 10px 8px;
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 40vh;
    }

    .banner-slide h1 {
        font-size: 1.8em;
    }

    .banner-slide p {
        font-size: 0.9em;
    }

    .banner-slide .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}