/**
 * Hero Simple Component Styles
 * Mobile First
 * Basado en el diseño de Figma "Hero banner"
 */

.dh-hero-simple {
    position: relative;
    width: 100%;
    padding: 40px 0;
    overflow: hidden;
}

/* Background con gradiente */
.dh-hero-simple__background {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: var(--white-red);
    /* #FFF8F8 */
}

.dh-hero-simple__background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, color-mix(in srgb, var(--primary-red-100), transparent 90%) 0%, color-mix(in srgb, var(--primary-red-100), transparent 100%) 100%);
    mix-blend-mode: multiply;
}

.dh-hero-simple__container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.dh-hero-simple__text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    max-width: 100%;
}

/* Overline Badge */
.dh-hero-simple__overline {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    background: var(--primary-white);
    border-radius: 9999px;
    overflow: hidden;
}

.dh-hero-simple__overline p {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1.68px;
    text-transform: uppercase;
    color: var(--primary-red-100);
    text-align: center;
    white-space: nowrap;
    margin: 0;
}

/* Title */
.dh-hero-simple__title {
    font-family: 'Lato', sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary-black-100);
    text-align: center;
    margin: 0;
    width: 100%;
}

/* Description */
.dh-hero-simple__description {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.32;
    color: var(--primary-black-100);
    text-align: center;
    margin: 0;
    width: 100%;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .dh-hero-simple {
        padding: 60px 0;
    }

    .dh-hero-simple__text-wrapper {
        gap: 20px;
        max-width: 800px;
    }

    .dh-hero-simple__title {
        font-size: 36px;
    }

    .dh-hero-simple__description {
        font-size: 16px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .dh-hero-simple {
        padding: 60px 0;
    }

    .dh-hero-simple__text-wrapper {
        gap: 16px;
        max-width: 720px;
    }

    .dh-hero-simple__title {
        font-size: 42px;
        line-height: 1.16;
        max-width: 500px;
    }
}