/* ============================================
   HERO — Slider Principal
   Fundos: CB750 Four | CB450 | Gold Wing GL1000
   ============================================ */

.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    max-height: 850px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.92) 0%,
        rgba(10, 10, 10, 0.7) 35%,
        rgba(10, 10, 10, 0.55) 60%,
        rgba(204, 0, 0, 0.2) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    max-width: 700px;
}

.hero-logo-badge {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease;
}

.hero-logo-img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.15));
}

.hero-badge {
    display: inline-block;
    background: var(--red);
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    width: fit-content;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title span {
    color: var(--red);
    text-shadow: 0 0 30px var(--red-glow);
}

.hero-text {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    max-width: 550px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-dots {
    position: absolute;
    bottom: 3.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active,
.hero-dot:hover {
    background: var(--red);
    border-color: var(--red);
    box-shadow: 0 0 10px var(--red-glow);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    color: var(--white);
    cursor: pointer;
    font-size: 1rem;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-arrow:hover {
    background: var(--red);
    border-color: var(--red);
    box-shadow: var(--shadow-red);
}

.hero-prev {
    left: 1.5rem;
}

.hero-next {
    right: 1.5rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}
