/* =========================
   HERO COMPANY
========================= */

.hero--company {
    min-height: 100vh;
    padding: 150px 0 70px;
}

.company {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 48px;
    min-height: inherit;
}

.company__content {
    max-width: 620px;
}

.company__title {
    font-size: clamp(2.6rem, 5.2vw, 4.6rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 22px;
}

.company__title span {
    color: var(--gold-400);
}

.company__description {
    max-width: 420px;
    color: rgba(255, 255, 255, .9);
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    line-height: 1.6;
}

/* =========================
   FEATURES
========================= */

.company__features {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.company__feature {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
}

.company__icon {
    flex-shrink: 0;
    width: 74px;
    height: 74px;
    border-radius: 50%;

    display: grid;
    place-items: center;

    background: var(--green-400);
    box-shadow: 0 10px 24px rgba(135, 186, 48, .4);
}

.company__icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.company__feature p {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.25;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .hero--company {
        min-height: auto;
        padding: 120px 0 60px;
        text-align: center;
    }

    .company {
        gap: 40px;
    }

    .company__content {
        margin: 0 auto;
    }

    .company__description {
        margin: 0 auto;
    }

    .company__features {
        justify-content: center;
        gap: 28px;
    }
}

@media (max-width: 576px) {

    .company__features {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        max-width: 280px;
        margin: 0 auto;
    }

    .company__feature {
        text-align: left;
    }

    .company__icon {
        width: 62px;
        height: 62px;
    }

    .company__icon img {
        width: 32px;
        height: 32px;
    }
}

/* =========================
   BENEFICIOS EMPRESA (no reutilizable)
========================= */

.benefits__title {
    text-align: center;
    text-transform: uppercase;
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--gold-400);
    max-width: 640px;
    margin: 0 auto 54px;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: start;
}

.benefits__item {
    text-align: center;
}

.benefits__icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 18px;

    background: var(--gold-400);
    border-radius: 50%;
    display: grid;
    place-items: center;

    box-shadow: 0 12px 26px rgba(249, 180, 16, .35);
    transition: var(--transition);
}

.benefits__item:hover .benefits__icon {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(249, 180, 16, .45);
}

.benefits__icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.benefits__name {
    font-size: clamp(1.02rem, 1.6vw, 1.2rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--black-900);
    margin-bottom: 10px;
}

.benefits__text {
    max-width: 220px;
    margin: 0 auto;
    font-size: clamp(.88rem, 1.3vw, .98rem);
    line-height: 1.45;
    color: var(--black-500);
}

/* ----- Responsive ----- */

@media (max-width: 880px) {
    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
        max-width: 520px;
        margin: 0 auto;
    }
}

@media (max-width: 460px) {
    .benefits__grid {
        grid-template-columns: 1fr;
        gap: 36px;
        max-width: 280px;
    }
}

/* =========================
   CTA ASESOR (no reutilizable)
========================= */

.advisor {
    overflow: hidden;
    background: var(--gold-400);
    padding-top: 14px;
}

.advisor__inner {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 46px);
    min-height: 150px;
}

.advisor__char {
    flex-shrink: 0;
    align-self: flex-end;
    width: clamp(110px, 12vw, 150px);
    height: auto;
    display: block;
}

.advisor__text {
    flex: 1;
    min-width: 0;
}

.advisor__title {
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--black-900);
}

.advisor__title span {
    font-weight: 800;
}

.advisor__sub {
    margin-top: 8px;
    font-size: clamp(.88rem, 1.3vw, 1rem);
    line-height: 1.4;
    color: var(--black-800);
}

/* Botón WhatsApp */
.advisor__btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 15px 28px;
    border-radius: 12px;

    background: #3FA535;
    color: var(--white);
    font-weight: 700;
    font-size: clamp(.95rem, 1.4vw, 1.1rem);
    text-decoration: none;

    box-shadow: 0 10px 24px rgba(63, 165, 53, .4);
    transition: var(--transition);
}

.advisor__btn img {
    width: 26px;
    height: 26px;
}

.advisor__btn:hover {
    background: #379030;
    transform: translateY(-2px);
}

/* Horarios */
.advisor__hours {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.advisor__hours-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--black-900);
    color: var(--white);
    font-size: 22px;
}

.advisor__hours-icon i {
    display: block;
    line-height: 0;
}

.advisor__hours-label {
    display: block;
    color: var(--black-800);
    font-size: .82rem;
    font-weight: 600;
}

.advisor__hours p {
    color: var(--white);
    font-weight: 700;
    line-height: 1.3;
    font-size: .95rem;
}

/* ----- Responsive ----- */

@media (max-width: 1080px) {
    .advisor__inner {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        padding-bottom: 26px;
        gap: 24px;
    }

    .advisor__char {
        align-self: center;
    }

    .advisor__text {
        flex: 1 1 100%;
        order: -1;
    }
}

@media (max-width: 480px) {
    .advisor__char {
        width: 96px;
    }

    .advisor__btn {
        width: 100%;
        justify-content: center;
    }

    .advisor__hours {
        text-align: left;
    }
}