/* ===== HERO SLIDER - CSS MELHORADO ===== */
/* === HUMANE === */
@font-face {
  font-family: 'Humane';
  src: url('/assets/fonts/Humane-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Humane';
  src: url('/assets/fonts/Humane-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Humane';
  src: url('/assets/fonts/Humane-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Humane';
  src: url('/assets/fonts/Humane-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Humane';
  src: url('/assets/fonts/Humane-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* === ALIBABA SANS === */
@font-face {
  font-family: 'Alibaba Sans';
  src: url('/assets/fonts/AlibabaSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Alibaba Sans';
  src: url('/assets/fonts/AlibabaSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Alibaba Sans';
  src: url('/assets/fonts/AlibabaSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Alibaba Sans';
  src: url('/assets/fonts/AlibabaSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Alibaba Sans';
  src: url('/assets/fonts/AlibabaSans-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Alibaba Sans';
  src: url('/assets/fonts/AlibabaSans-Heavy.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

/* === MONUMENT EXTENDED === */
@font-face {
  font-family: 'Monument Extended';
  src: url('/assets/fonts/MonumentExtended-Regular.otf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Monument Extended';
  src: url('/assets/fonts/MonumentExtended-Ultrabold.otf') format('truetype');
  font-weight: 900;
  font-style: normal;
}
.hero {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    background: #ff6600;
    color: white;
    font-family: 'Alibaba Sans', sans-serif;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

/* Overlay escuro sobre as imagens para melhor legibilidade */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.slide-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
    max-width: 1200px;
}

.slide-text h1 {
    font-size: 3.5em;
    font-weight: bold;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
    font-family: 'Alibaba Sans', sans-serif;
}

.slide-text p {
    font-size: 1.4em;
    margin: 10px 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
    font-family: 'Alibaba Sans', sans-serif;
}

/* Animação de entrada do texto */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Indicadores (Speed Icons) */
.speed-icons {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.speed-icon {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.speed-icon:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scaleX(1.1);
}

.speed-icon.active {
    background: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Animação de progresso no indicador ativo */
.speed-icon.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 102, 0, 0.6);
    animation: progressBar 5s linear;
}

@keyframes progressBar {
    to {
        width: 100%;
    }
}

/* Estilos para mobile */
@media (max-width: 768px) {
    .hero {
        height: 400px;
    }

    .slide-text h1 {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .slide-text p {
        font-size: 1em;
    }

    .speed-icons {
        bottom: 20px;
        gap: 10px;
    }

    .speed-icon {
        width: 30px;
        height: 3px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 350px;
    }

    .slide-text h1 {
        font-size: 1.5em;
    }

    .slide-text p {
        font-size: 0.9em;
    }
}