/* SLIDER FUNCIONANDO E RESPONSIVO */

.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    margin-top: 80px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-slider {
        height: 400px;
        margin-top: 70px;
    }
}

/* Slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

/* IMAGEM RESPONSIVA */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 20px;
        text-align: center;
    }
}

/* Título */
.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-style: italic;
    color: white;
}

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

/* Botões */
.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-btns {
        justify-content: center;
    }
}

/* SETAS */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s;
}

.slider-arrow:hover {
    background: rgba(255,0,110,0.8);
    border-color: #FF006E;
}

.slider-arrow-left {
    left: 20px;
}

.slider-arrow-right {
    right: 20px;
}

@media (max-width: 768px) {
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-arrow-left {
        left: 10px;
    }
    
    .slider-arrow-right {
        right: 10px;
    }
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 100;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dots .dot.active {
    background: #FF006E;
    width: 30px;
    border-radius: 5px;
}

/* Ícones brancos */
.hero-btns i,
.agenda-card i,
.slider-arrow i {
    color: white !important;
}

/* TODOS ÍCONES DE AGENDA BRANCOS */
.agenda-card i[data-feather],
.agenda-card svg {
    color: white !important;
    stroke: white !important;
}

/* Ícones do slider brancos */
.hero-btns i[data-feather],
.hero-btns svg,
.slider-arrow i[data-feather],
.slider-arrow svg {
    color: white !important;
    stroke: white !important;
}
