/* ==================== HERO ==================== */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
    margin-top: -90px;
    padding-top: 0;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: carouselFade 20s infinite;
}

.hero-carousel-img:nth-child(1) {
    animation-delay: 0s;
}

.hero-carousel-img:nth-child(2) {
    animation-delay: 4s;
}

.hero-carousel-img:nth-child(3) {
    animation-delay: 8s;
}

.hero-carousel-img:nth-child(4) {
    animation-delay: 12s;
}

.hero-carousel-img:nth-child(5) {
    animation-delay: 16s;
}

@keyframes carouselFade {
    0% {
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    20% {
        opacity: 1;
    }
    25% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 40px;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 72px;
    font-family: 'Bebas Neue', sans-serif;
    color: #FFFFFF;
    margin-bottom: 30px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 18px;
    font-family: 'Raleway', sans-serif;
    color: #D6D6D6;
    line-height: 1.8;
    margin-bottom: 40px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== BUTTON PRIMARY ==================== */
.btn-primary {
    display: inline-block;
    padding: 14px 40px;
    background: var(--laranja);
    color: #FFFFFF;
    border-radius: 2px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-primary:hover {
    background: #D64A0F;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 91, 26, 0.3);
}

/* ==================== BUTTON WHATSAPP ==================== */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #25D366;
    color: #FFFFFF;
    border-radius: 2px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
    font-size: 18px;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .hero {
        margin-top: 60px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 40px;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary,
    .btn-whatsapp {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        margin-top: 50px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .btn-primary,
    .btn-whatsapp {
        padding: 12px 24px;
        font-size: 12px;
    }
}
