.boton-generico-hero-wrapper {
    display: inline-block;
}

.boton-generico-hero {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    color: #086378;
    border-radius: var(--Radius-999px, 999px);
    border: 2px solid var(--INS-Primary-50, #086378);
    background: var(--Gray-00, #FCFCFC);
    border-radius: 24px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    color: var(--INS-Primary-50, #086378);
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
}

    .boton-generico-hero:hover {
        background-color: #E4EDEF;
        color: #086378;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(13, 123, 143, 0.3);
    }

.boton-generico-hero:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(13, 123, 143, 0.2);
}

.boton-generico-hero:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(13, 123, 143, 0.2);
}

.boton-generico-hero .icono-boton {
    display: inline-flex;
    align-items: center;
    font-size: 18px;
}

.boton-generico-hero .texto-boton {
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .boton-generico-hero {
        padding: 10px 20px;
        font-size: 14px;
    }

    .boton-generico-hero .texto-boton {
        font-size: 12px;
    }
}
