/* ================================================= */
/* HERO ZONA B – BASE + IMAGEN + BOTONES FLOTANTES   */
/* ================================================= */

.zoneB-hero {
    width: 100%;
    min-height: 420px;
    background: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: -12px;     /* acerca al header */
    padding-bottom: 0px;  /* elimina hueco con marcas */
    margin-bottom: 0;
}

.zoneB-hero-inner {
    width: 100%;
    max-width: 1200px;
    min-height: 420px;

    background-image: url('../img/herob.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    border-radius: 0px;
    position: relative;
}
.brands-strip {
  margin-top: -6px; /* ✅ pega perfecto */
}

/* ============================= */
/* BOTONES GRAFICOS HERO         */
/* ============================= */

.hero-actions {
    position: absolute;
    bottom: 150px;
    left: 100px;
    display: flex;
    gap: 30px;
}

.hero-img-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.25s ease;
}

.hero-img-btn img {
    display: block;
    height: 72px;
    width: auto;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.hero-img-btn:hover img {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.25);
}

/* ============================= */
/* RESPONSIVE BOTONES            */
/* ============================= */

@media (max-width: 768px) {
    .hero-actions {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
        flex-direction: column;
        gap: 14px;
    }

    .hero-img-btn img {
        height: 64px;
    }
}
