/**
 * Hero Premium - Estilos profesionales
 */

.asap-hero {
    position: relative;
    width: 100%;
    padding: 100px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.asap-hero.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.asap-hero__container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    gap: 60px;
    align-items: center;
}

/* Variante Split */
.asap-hero--split .asap-hero__container {
    grid-template-columns: 1fr 1fr;
}

/* Variante Centrada */
.asap-hero--centered .asap-hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 800px;
}

.asap-hero--centered .asap-hero__cta {
    justify-content: center;
}

/* Variante Asimétrica */
.asap-hero--asymmetric .asap-hero__container {
    grid-template-columns: 60% 40%;
}

.asap-hero__content {
    display: flex;
    flex-direction: column;
}

.asap-hero__headline {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
}

.asap-hero__subheadline {
    font-size: 22px;
    line-height: 1.5;
    margin: 0 0 32px 0;
    opacity: 0.95;
}

.asap-hero__cta {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.asap-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
    background: #ffffff;
    color: #000000 !important;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.asap-hero__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    color: #000000 !important;
}

.asap-hero__trust {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

.asap-hero__visual {
    position: relative;
}

.asap-hero__visual img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 968px) {
    .asap-hero {
        padding: 80px 24px;
    }

    .asap-hero__container {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .asap-hero__headline {
        font-size: 36px;
    }

    .asap-hero__subheadline {
        font-size: 18px;
    }

    .asap-hero__button {
        padding: 16px 32px;
        font-size: 16px;
    }

    .asap-hero--centered {
        text-align: center;
    }
}

