/* ===================================================== */
/* HERO DESKTOP ONLY */
/* ===================================================== */

.hero-home {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #f5f5f5;
    overflow: hidden;
    margin-top: 50px;
}

.hero-inner {
    width: 100%;
    padding: 0 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

/* ===================================================== */
/* HERO CONTENT */
/* ===================================================== */

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;

    width: 80%;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.mini-brand {
    display: inline-block;
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.hero-title {
    display: block;
    font-size: clamp(56px, 6vw, 120px);
    line-height: .9;
    font-weight: 900;
    color: #0d47a1;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: clamp(18px, 1.6vw, 26px);
    line-height: 1.4;
    color: #0d47a1;
    margin-bottom: 35px;
}

.hero-btn {
    display: inline-block;
    background: #0d47a1;
    color: #fff;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 14px;
    font-size: 20px;
    font-weight: 700;
}

/* ===================================================== */
/* HERO IMAGE (NO TOCAR MÁS) */
/* ===================================================== */

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image img {
    width: 100%;
   
    height: auto;
    display: block;
}

/* ===================================================== */
/* ICONOS DESKTOP */
/* ===================================================== */

.menu-icons {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;

    width: 60%;
    margin: 0 auto;

    gap: 10px;
}

.item-icon {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 0;
}

.item-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.item-icon span {
    margin-top: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
}

.hero-image img {
    opacity: 0;
    transform: translateX(80px);
    animation: heroImageIn 1.2s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes heroImageIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 991px) {

.hero-home {
    width: 100%;
    min-height: 70vh;
}

.hero-inner {
  margin-top: 15px;
    padding: 7%;

}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    width: 100%;
    margin: 0 auto;
}

/* SOLO IMAGEN HERO */
.hero-image img {
    width: 100%;
    min-width: 280px;
    height: auto;
    display: block;
}

/* TEXTO MÁS PEQUEÑO */
.mini-brand {
    font-size: 10px;
    margin: 5px 0px;
}

.hero-title {
    display: block;
    font-size: clamp(30px, 5vw, 58px);
    line-height: .95;
    font-weight: 900;
    color: #0d47a1;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.hero-text p {
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.45;
    color: #0d47a1;
    margin-bottom: 24px;
}

.hero-btn {
    font-size: 17px;
    padding: 14px 28px;
}

.menu-icons {
    width: 100%;
}
.hero-image img {
    opacity: 0;
    transform: translateX(10px);
    animation: heroImageIn 1.2s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes heroImageIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
}
    