.drop-hero {
    background: #fff;
    font-family: 'Arial', sans-serif;
    position: relative;
}

.drop-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 10px;
    background: #06904c;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.drop-hero__inner {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    gap: clamp(32px, 6vw, 80px);
    padding: clamp(32px, 6vw, 72px) 0;
}

/* Media izquierda */
.drop-hero__media {
    margin: 0;
    position: relative;
}

.drop-hero__media img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .15);
    border-radius: 2px;
    /* leve suavizado como en ejemplo */
}

/* Texto derecha */
.drop-hero__content {
    color: #111;
}

.drop-hero__overline {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: .85rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #7b7b7b;
}

.drop-hero__overline .bar {
    width: 64px;
    height: 6px;
    background: #06904c;
    border-radius: 4px;
}

.drop-hero__title {
    margin: 10px 0 16px 0;
    font-weight: 900;
    font-size: clamp(36px, 6vw, 88px);
    line-height: .95;
    letter-spacing: -0.025em;
    color: #111;
}

.drop-hero__copy {
    max-width: 70ch;
    font-size: 1.125rem;
    line-height: 1.2;
    color: #2b2b2b;
    margin: 0 0 28px 0;
}

/* Botón amarillo */
.drop-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #06904c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 14px 22px;
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .10);
    transition: transform .18s ease, box-shadow .18s ease;
}

.drop-hero__btn .plus {
    font-weight: 900;
    font-size: 1.25rem;
    line-height: 1;
}

.drop-hero__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .14);
}

.drop-hero__btn:focus-visible {
    outline: 2px solid # outline-offset: 3px;
}

/* Flechas de navegación */
.drop-hero__nav {
    position: absolute;
    right: 24px;
    bottom: 14px;
    display: flex;
    gap: 28px;
    color: #111;
}

.nav-btn {
    appearance: none;
    background: transparent;
    border: 0;
    padding: 4px;
    cursor: pointer;
    opacity: .9;
    transition: opacity .2s ease, transform .2s ease;
}

.nav-btn:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.nav-btn:focus-visible {
    outline: 2px solid #06904c outline-offset: 2px;
}

/* Responsivo */
@media (max-width: 980px) {
    .drop-hero__inner {
        grid-template-columns: 1fr;
        padding: 50px;
        ;
    }

    .drop-hero__content {
        order: 2;
    }

    .drop-hero__media {
        order: 1;
    }

    .drop-hero__title {
        font-size: clamp(32px, 10vw, 64px);
    }

    .drop-hero__copy {
        font-size: 1rem;
    }

    .drop-hero__nav {
        right: 16px;
        bottom: 10px;
    }
}