/* Container Principal */
.sm-hero-section {
    position: relative;
    height: 90vh;
    overflow: hidden;
    background-color: #000;
}

/* Wrapper do Slider (o que move) */
.sm-hero-slider {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    transition: transform 1s ease-in-out;
    /* duration-1000 */
}

/* Item Individual do Slide */
.sm-hero-item {
    position: relative;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
}

.sm-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay Escuro */
.sm-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    /* bg-black/40 */
}

/* Conteúdo Centralizado */
.sm-hero-content {
    position: absolute;
    bottom: 6rem;
    /* bottom-24 */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    max-width: 48rem;
    /* max-w-3xl */
    width: 100%;
    padding: 0 1.5rem;
    z-index: 10;
}

.sm-hero-title {
    font-size: 2.5rem;
    /* text-4xl */
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.sm-hero-description {
    font-size: 1.125rem;
    /* text-lg */
    margin-bottom: 1rem;
    color: #fff;
}

/* Botão com efeito de vidro */
.sm-hero-btn {
    padding: 0.75rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    /* backdrop-blur-xl */
    color: #fff;
    font-weight: 700;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sm-hero-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Navegação (Setas) */
.sm-hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background 0.3s;
    z-index: 20;
}

.sm-hero-nav:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.sm-hero-nav-prev {
    left: 1rem;
}

.sm-hero-nav-next {
    right: 1rem;
}

/* Animações */
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fadeInLeft {
    animation: fadeInLeft 1.2s forwards;
    /* Reduzi para 1.2s para ser mais fluido que os 2.5s originais */
}