/* HERO BASE */
.hero {
    position: relative;
    width: 100%;
    min-height: auto;
    padding: 120px 0 0;

    background-position: center;
    background-size: cover;
    /* ESSENCIAL */
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* OVERLAY (AJUSTADO - MENOS OPACO) */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* WRAPPER */
.hero-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT */
.hero-left {
    flex: 1;
    max-width: 600px;
    padding-bottom: 60px;

    animation: fadeUp 0.8s ease forwards;
}

/* RIGHT */
.hero-right {
    flex: 1.2;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;

    animation: fadeUp 1s ease forwards;
    animation-delay: 0.2s;
}

/* TITLE */
.hero-title {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    color: #fff;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -1px;
}

.hero-title span {
    color: #ff0000;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

/* SUBTITLE */
.hero-subtitle {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.9);
    /* levemente mais claro */
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 500px;
}

/* BUTTONS */
.hero-buttons {
    margin-top: 35px;
    display: flex;
    gap: 15px;
}

/* BTN PRIMARY */
.btn-primary {
    background: #ff0000;
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
}

/* BTN SECONDARY */
.btn-secondary {
    background: #1f8f3a;
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(31, 143, 58, 0.4);
}

/* IMAGE */
.hero-right img {
    width: 100%;
    max-width: 750px;
    transform: scale(1.3) translateY(5%);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
    z-index: 2;

    animation: floatSlow 6s ease-in-out infinite;
}

/* FEATURES BAR */
.hero-features {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 60px;

    padding: 30px 20px;
    background: #0a0a0a;
    border-top: 2.5px solid rgba(255, 0, 0, 0.5);

    animation: fadeUp 1.2s ease forwards;
    animation-delay: 0.4s;
}

/* FEATURE ITEM */
.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 0.95rem;
}

.feature-item i {
    color: #ff0000;
    font-size: 1.2rem;
}

/* ANIMAÇÕES */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatSlow {
    0% {
        transform: scale(1.3) translateY(5%);
    }

    50% {
        transform: scale(1.3) translateY(0%);
    }

    100% {
        transform: scale(1.3) translateY(5%);
    }
}

/* RESPONSIVO */
@media (max-width: 992px) {

    .hero {
        padding: 80px 0 0;
    }

    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-left {
        padding-bottom: 40px;
    }

    .hero-right {
        margin-top: 30px; /* sobe o bloco inteiro */
        justify-content: center;
    }

    .hero-right img {
        transform: scale(1.1) translateY(-40px); /* sobe a imagem */
        max-width: 100%;
        animation: floatSlowMobile 6s ease-in-out infinite;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-features {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 40px 20px;
    }
}

/* FLOAT MOBILE */
@keyframes floatSlowMobile {
    0% {
        transform: scale(1.1) translateY(-40px);
    }

    50% {
        transform: scale(1.1) translateY(-50px);
    }

    100% {
        transform: scale(1.1) translateY(-40px);
    }
}