/* HERO BASE */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0b0b0f;
}

/* GRID BACKGROUND */
.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 0H0v60' fill='none' stroke='%23fff' stroke-width='.5'/%3E%3C/svg%3E");
}

/* CONTAINER */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 0px;
    position: relative;
    z-index: 10;
}

/* GRID */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* CONTENT */
.hero-content h1 {
    font-size: 55px;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    max-width: 500px;
}

/* BADGE */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.hero-badge svg {
    width: 1em;
    height: 1em;
}

/* GRADIENT TEXT */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.btn-primary-lg {
    background: var(--gradient-primary);
    border: none;
    padding: 14px 24px;
    color: white;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
}

.btn-outline-lg {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 14px 24px;
    color: white;
    border-radius: 12px;
    cursor: pointer;
}

/* FEATURES */
.hero-features {
    display: flex;
    gap: 20px;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* IMAGE */
.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.image-glow {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, #4f46e5, #9333ea);
    opacity: 0.2;
    filter: blur(40px);
    border-radius: 20px;
}

/* RESPONSIVO */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin: 0 auto 30px;
    }

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

    .hero-features {
        justify-content: center;
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero-container {
        padding: 60px 15px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 10px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .btn-primary-lg, .btn-outline-lg {
        padding: 12px 20px;
        font-size: 14px;
    }

    .hero-features {
        gap: 8px;
        font-size: 13px;
    }
}