/* ===================================
   MEDICORP - AHORRO E INVERSIÓN
=================================== */

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

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

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

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

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

.savings-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,.10);
    color:#0E4D92;
    font-size:.82rem;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em;
}

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

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

.savings-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:.25s;
}

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

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

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

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

.savings-hero-card{
    background:#fff;
    border-radius:30px;
    padding:38px 34px;
    border:1px solid rgba(14,77,146,.10);
    box-shadow:0 24px 65px rgba(16,42,67,.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:#fff;
    font-size:1.7rem;
    margin-bottom:22px;
}

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

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

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

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

/* ========================= */

.savings-intro,
.savings-benefits{
    padding:95px 0;
}

.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;
}

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

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

.intro-card{
    padding:34px 30px;
    background:#fff;
    border-radius:26px;
    border:1px solid rgba(14,77,146,.10);
    box-shadow:0 18px 45px rgba(16,42,67,.08);
}

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

.intro-card h3{
    margin:0;
    color:#102A43;
}

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

/* ========================= */

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

.savings-goals .pre-title{
    background:rgba(255,255,255,.15);
    color:#fff;
}

.savings-goals .section-header h2{
    color:#fff;
}

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

.goal-card{
    background:rgba(255,255,255,.10);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.12);
    border-radius:24px;
    padding:30px;
}

.goal-card i{
    color:#fff;
    font-size:2rem;
    margin-bottom:18px;
}

.goal-card h3{
    color:#fff;
    margin:0;
}

.goal-card p{
    margin-top:14px;
    color:rgba(255,255,255,.80);
    line-height:1.7;
}

/* ========================= */

.savings-benefits{
    background:#f7fbff;
}

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

.benefit-card{
    background:#fff;
    padding:30px;
    border-radius:24px;
    border:1px solid rgba(14,77,146,.10);
    box-shadow:0 18px 45px rgba(16,42,67,.08);
}

.benefit-card i{
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    background:rgba(14,77,146,.10);
    color:#0E4D92;
    font-size:1.3rem;
    margin-bottom:18px;
}

.benefit-card h3{
    margin:0;
    color:#102A43;
}

.benefit-card p{
    margin-top:12px;
    color:#5B6770;
    line-height:1.7;
}

/* ========================= */

.savings-form-section{
    padding:95px 0;
    background:#fff;
}

.financial-form{
    max-width:950px;
    margin:0 auto;
    background:#fff;
    padding:40px;
    border-radius:30px;
    border:1px solid rgba(14,77,146,.10);
    box-shadow:0 24px 65px rgba(16,42,67,.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:.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,.15);
    border-radius:15px;
    padding:0 16px;
    background:#f9fcff;
    font-family:inherit;
    outline:none;
}

.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:#0E4D92;
    background:#fff;
}

/* ========================= */

.savings-final-cta{
    padding:95px 0;
    background:#f7fbff;
}

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

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

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

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

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

@media (max-width:1180px){

    .savings-hero-grid,
    .benefits-grid{
        grid-template-columns:1fr;
    }

}

@media (max-width:900px){

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

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

}

@media (max-width:768px){

    .savings-hero,
    .savings-intro,
    .savings-goals,
    .savings-benefits,
    .savings-form-section,
    .savings-final-cta{
        padding:75px 0;
    }

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

    .financial-form{
        padding:28px 22px;
    }

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

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

    .benefits-grid{
        grid-template-columns:1fr;
    }

}

@media (max-width:480px){

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

    .section-header h2{
        font-size:2rem;
    }

    .final-cta-box{
        padding:40px 24px;
    }

}