/* ===================================
   MEDICORP - SOLUCIONES EMPRESAS
=================================== */

.business-hero {
    position: relative;
    padding: 115px 0 95px;
    background:
        radial-gradient(circle at top right, rgba(14, 77, 146, 0.18), transparent 35%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 60%, #eef6ff 100%);
    overflow: hidden;
}

.business-hero::before {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    right: -180px;
    bottom: -220px;
    border-radius: 50%;
    background: rgba(14, 77, 146, 0.08);
}

.business-hero::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    left: -70px;
    top: 80px;
    border-radius: 50%;
    background: rgba(46, 160, 210, 0.12);
}

.business-hero .container {
    position: relative;
    z-index: 2;
}

.business-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 55px;
    align-items: center;
}

.business-badge,
.pre-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(14, 77, 146, 0.10);
    color: #0E4D92;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.business-hero h1 {
    margin: 0;
    color: #102A43;
    font-size: clamp(2.3rem, 5vw, 4.4rem);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.045em;
}

.business-hero p {
    margin-top: 24px;
    color: #52616B;
    font-size: 1.12rem;
    line-height: 1.8;
}

.business-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 30px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #0E4D92, #2EA0D2);
    color: #ffffff;
    border: none;
    box-shadow: 0 16px 34px rgba(14, 77, 146, 0.25);
    cursor: pointer;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-3px);
}

.btn-secondary {
    background: #ffffff;
    color: #0E4D92;
    border: 1px solid rgba(14, 77, 146, 0.15);
}

.business-hero-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 38px 34px;
    border: 1px solid rgba(14, 77, 146, 0.10);
    box-shadow: 0 24px 65px rgba(16, 42, 67, 0.12);
}

.hero-card-icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: linear-gradient(135deg, #0E4D92, #2EA0D2);
    color: #ffffff;
    font-size: 1.7rem;
    margin-bottom: 22px;
}

.business-hero-card h2 {
    margin: 0;
    color: #102A43;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.3;
}

.business-hero-card ul {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 14px;
}

.business-hero-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #52616B;
    font-weight: 600;
}

.business-hero-card li i {
    color: #2EA0D2;
}

/* ================================
   SECCIONES GENERALES
================================ */

.business-intro,
.business-solutions,
.business-process,
.business-form-section {
    padding: 95px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 55px;
}

.section-header h2 {
    margin: 0;
    color: #102A43;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.section-header p {
    margin-top: 18px;
    color: #5B6770;
    line-height: 1.8;
}

/* ================================
   INTRO
================================ */

.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.intro-card,
.solution-card,
.process-card {
    padding: 34px 30px;
    background: #ffffff;
    border-radius: 26px;
    border: 1px solid rgba(14, 77, 146, 0.10);
    box-shadow: 0 18px 45px rgba(16, 42, 67, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.intro-card:hover,
.solution-card:hover,
.process-card:hover {
    transform: translateY(-7px);
    border-color: rgba(14, 77, 146, 0.22);
    box-shadow: 0 26px 58px rgba(16, 42, 67, 0.12);
}

.intro-card i,
.solution-card i {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, #0E4D92, #2EA0D2);
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.intro-card h3,
.solution-card h3,
.process-card h3 {
    margin: 0;
    color: #102A43;
    font-size: 1.18rem;
    line-height: 1.35;
    font-weight: 850;
}

.intro-card p,
.solution-card p,
.process-card p {
    margin-top: 14px;
    color: #5B6770;
    line-height: 1.7;
}

/* ================================
   SOLUCIONES
================================ */

.business-solutions {
    background: #f7fbff;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ================================
   DIFERENCIAL
================================ */

.business-difference {
    position: relative;
    padding: 95px 0;
    background: linear-gradient(135deg, #0E4D92, #123E6F);
    overflow: hidden;
}

.business-difference::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -220px;
    top: -190px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.business-difference::after {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    left: -160px;
    bottom: -170px;
    border-radius: 50%;
    background: rgba(46, 160, 210, 0.18);
}

.business-difference .container {
    position: relative;
    z-index: 2;
}

.difference-grid {
    display: grid;
    grid-template-columns: 1fr 0.48fr;
    gap: 48px;
    align-items: center;
}

.business-difference .pre-title {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.difference-content h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.difference-content p {
    max-width: 760px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.75;
}

.difference-list {
    display: grid;
    gap: 14px;
    margin-top: 34px;
}

.difference-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 17px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 650;
}

.difference-item i {
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: #0E4D92;
    font-size: 0.8rem;
}

.difference-note {
    padding: 34px 30px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.16);
}

.difference-note > i {
    width: 62px;
    height: 62px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, #0E4D92, #2EA0D2);
    color: #ffffff;
    font-size: 1.55rem;
}

.difference-note h3 {
    margin: 0;
    color: #102A43;
    font-size: 1.28rem;
    line-height: 1.35;
    font-weight: 900;
}

.difference-note p {
    margin: 14px 0 0;
    color: #5B6770;
    font-size: 0.98rem;
    line-height: 1.72;
}

/* ================================
   PROCESO
================================ */

.business-process {
    background: #ffffff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-card span {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 18px;
    background: rgba(14, 77, 146, 0.10);
    color: #0E4D92;
    font-size: 1rem;
    font-weight: 900;
}

/* ================================
   FORMULARIO
================================ */

.business-form-section {
    background: #f7fbff;
}

.business-form {
    max-width: 950px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(14, 77, 146, 0.10);
    box-shadow: 0 24px 65px rgba(16, 42, 67, 0.10);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #102A43;
    font-size: 0.9rem;
    font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-height: 52px;
    border: 1px solid rgba(14, 77, 146, 0.15);
    border-radius: 15px;
    padding: 0 16px;
    background: #f9fcff;
    color: #102A43;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.form-group textarea {
    padding: 15px 16px;
    min-height: 130px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(14, 77, 146, 0.46);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(14, 77, 146, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9AA6B2;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 6px 0 24px;
}

.form-check input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: #0E4D92;
}

.form-check label {
    color: #5B6770;
    font-size: 0.9rem;
    line-height: 1.55;
}

.business-form .btn-primary {
    width: 100%;
}

/* ================================
   CTA FINAL
================================ */

.business-final-cta {
    padding: 95px 0;
    background: #ffffff;
}

.final-cta-box {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    border-radius: 32px;
    background: linear-gradient(135deg, #0E4D92, #123E6F);
    box-shadow: 0 24px 65px rgba(16, 42, 67, 0.14);
}

.final-cta-box h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.final-cta-box p {
    max-width: 700px;
    margin: 20px auto 30px;
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.8;
}

.final-cta-box .btn-primary {
    background: #ffffff;
    color: #0E4D92;
}

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

@media (max-width: 1180px) {

    .business-hero-grid,
    .difference-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 900px) {

    .intro-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {

    .business-hero,
    .business-intro,
    .business-solutions,
    .business-difference,
    .business-process,
    .business-form-section,
    .business-final-cta {
        padding: 75px 0;
    }

    .business-hero-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .business-hero-card,
    .business-form {
        padding: 28px 22px;
        border-radius: 24px;
    }

    .process-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .final-cta-box {
        padding: 42px 24px;
        border-radius: 26px;
    }

}

@media (max-width: 480px) {

    .business-hero h1 {
        font-size: 2.2rem;
    }

    .section-header h2,
    .difference-content h2,
    .final-cta-box h2 {
        font-size: 2rem;
    }

    .business-badge,
    .pre-title {
        font-size: 0.74rem;
        padding: 8px 14px;
    }

    .intro-card,
    .solution-card,
    .process-card,
    .difference-note {
        padding: 28px 24px;
        border-radius: 22px;
    }

}