/* Hero como en referencia: imagen full-width + overlay + contenido izquierda */
.hero-fullwidth {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: flex-start;
    padding-top: 6vh;
    width: 100%;
    overflow: hidden;
}

.hero-fullwidth__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-fullwidth__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.1) 100%);
}

/* Mismo ancho y padding que header y resto de la página */
.hero-fullwidth__inner {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    width: 100%;
    max-width: var(--content-max-w, 1200px);
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--content-padding-x, 1.5rem) 64px;
    box-sizing: border-box;
}

@media (min-width: 1024px) {
    .hero-fullwidth__inner {
        padding-left: var(--content-padding-x-lg, 3rem);
        padding-right: var(--content-padding-x-lg, 3rem);
    }
}

/* Bloque de texto del hero: ancho amplio pero legible, alineado al grid */
.hero-fullwidth__content {
    max-width: 720px;
}

.hero-fullwidth__tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    margin-bottom: 16px;
}

.hero-fullwidth__title {
    font-family: 'Gotham Bold', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 16px;
    white-space: pre-line;
}

@media (min-width: 768px) {
    .hero-fullwidth__title {
        font-size: 2.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-fullwidth__title {
        font-size: 3rem;
    }
}

.hero-fullwidth__desc {
    font-family: 'Gotham Book', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 28px;
}

.hero-fullwidth__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero-fullwidth__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid transparent;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.hero-fullwidth__btn.hero-btn-anim:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-fullwidth__btn--primary {
    background: #0092D5;
    color: #fff;
    border-color: #0092D5;
}

.hero-fullwidth__btn--primary:hover {
    background: #007ab8;
    border-color: #007ab8;
    color: #fff;
}

.hero-fullwidth__btn--secondary {
    background: #fff;
    color: #1F2732;
    border-color: #727272;
}

.hero-fullwidth__btn--secondary:hover {
    border-color: #0092D5;
    color: #0092D5;
}