:root{
    --resolution-blue:#002387;
    --blueberry:#4184F0;
    --pear:#D4F83A;
    --platinum:#ECE9E5;
    --dark:#111827;
}

body{
    font-family:'Poppins',sans-serif;
    color:var(--dark);
}

.navbar{
    background:#fff;
}

.nav-link{
    font-weight:500;
    color:var(--resolution-blue);
}

.btn-fedepapa{
    background:var(--pear);
    color:var(--resolution-blue);
    border:none;
    font-weight:700;
    padding:12px 24px;
    border-radius:12px;
}

.btn-fedepapa:hover{
    background:#c8ee25;
    color:var(--resolution-blue);
}

.hero-section{
    padding:80px 0;
    background:linear-gradient(
        180deg,
        #ffffff 0%,
        #f7f9fc 100%
    );
}

.min-vh-75{
    min-height:75vh;
}

.hero-title{
    font-size:3rem;
    font-weight:800;
    line-height:1.1;
    color:var(--resolution-blue);
}

.hero-text{
    margin-top:24px;
    font-size:1.1rem;
    line-height:1.8;
    color:#4b5563;
}

.hero-image{
    width:100%;
    max-width:650px;
    height:auto;
}

.benefits-section{
    padding:80px 0;
    background:#fff;
}

.benefit-card{
    background:#fff;
    padding:32px;
    border-radius:20px;
    text-align:center;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.benefit-card:hover{
    transform:translateY(-5px);
}

.icon-box{
    width:70px;
    height:70px;
    background:var(--resolution-blue);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    margin:0 auto 20px;
    font-size:1.6rem;
}

.benefit-card h5{
    font-weight:700;
    color:var(--resolution-blue);
}

.benefit-card p{
    margin-top:10px;
    color:#6b7280;
}

@media(max-width:991px){

    .hero-title{
        font-size:2.2rem;
    }

    .hero-section{
        text-align:center;
    }

}

.problem-section{
    padding:100px 0;
    background:#ffffff;
}

.section-tag{
    display:inline-block;
    background:rgba(65,132,240,.15);
    color:var(--blueberry);
    font-weight:600;
    padding:10px 18px;
    border-radius:50px;
}

.section-title{
    color:var(--resolution-blue);
    font-size:2.5rem;
    font-weight:800;
    line-height:1.2;
}

.section-text{
    color:#4b5563;
    line-height:1.9;
    margin-top:20px;
    font-size:1.05rem;
}

.problem-image{
    border-radius:24px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.risk-item{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:600;
    color:var(--resolution-blue);
}

.risk-item i{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:var(--pear);
    color:var(--resolution-blue);
}

.parametric-section{
    padding:110px 0;
    background:#f8fafc;
}

.section-subtitle{
    max-width:800px;
    margin:auto;
    color:#6b7280;
    line-height:1.8;
}

.process-wrapper{
    position:relative;
    margin-top:60px;
}

.process-line{
    position:absolute;
    top:80px;
    left:15%;
    width:70%;
    height:4px;
    background:linear-gradient(
        90deg,
        var(--blueberry),
        var(--pear)
    );
    z-index:0;
}

.process-card{
    position:relative;
    z-index:2;
    background:#fff;
    padding:40px 30px;
    border-radius:24px;
    text-align:center;
    height:100%;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.3s;
}

.process-card:hover{
    transform:translateY(-8px);
}

.step-number{
    width:45px;
    height:45px;
    margin:auto;
    border-radius:50%;
    background:var(--resolution-blue);
    color:#fff;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.process-icon{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:20px;
    background:rgba(65,132,240,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2rem;
    color:var(--blueberry);
    margin-bottom:25px;
}

.process-card h4{
    color:var(--resolution-blue);
    font-weight:700;
    margin-bottom:15px;
}

.process-card p{
    color:#6b7280;
    line-height:1.8;
}

@media(max-width:991px){

    .process-line{
        display:none;
    }

}

.mapping-section{
    padding:120px 0;
    background:#ffffff;
}

.mapping-image-wrapper{
    position:relative;
}

.mapping-image{
    border-radius:24px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.floating-badge{
    position:absolute;
    bottom:25px;
    left:25px;

    background:#fff;
    padding:14px 22px;
    border-radius:14px;

    box-shadow:0 10px 25px rgba(0,0,0,.12);

    font-weight:600;
    color:var(--resolution-blue);

    display:flex;
    align-items:center;
    gap:10px;
}

.floating-badge i{
    color:var(--pear);
}

.mapping-features{
    margin-top:35px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;

    font-size:1.05rem;
    font-weight:500;
}

.feature-item i{
    color:var(--blueberry);
    font-size:1.2rem;
}

.subsidies-section{
    padding:120px 0;
    background:#f8fafc;
}

.subsidy-flow{
    max-width:900px;
    margin:auto;
}

.flow-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.flow-icon{
    width:85px;
    height:85px;

    margin:auto auto 25px;

    background:rgba(65,132,240,.12);

    color:var(--blueberry);

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:2rem;
}

.flow-card h4{
    color:var(--resolution-blue);
    font-weight:700;
    margin-bottom:15px;
}

.flow-card p{
    color:#6b7280;
    line-height:1.8;
}

.flow-arrow{
    text-align:center;
    padding:20px 0;

    color:var(--pear);
    font-size:2rem;
}

.highlight-card{
    border:3px solid var(--pear);
}

.fedepapa-section{
    padding:120px 0;
    background:#ffffff;
}

.action-card{
    background:#fff;

    border-radius:24px;

    padding:35px;

    text-align:center;

    height:100%;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.3s;
}

.action-card:hover{
    transform:translateY(-8px);
}

.action-card i{
    font-size:2.5rem;

    color:var(--resolution-blue);

    margin-bottom:25px;
}

.action-card h5{
    color:var(--resolution-blue);

    font-weight:700;

    margin-bottom:15px;
}

.action-card p{
    color:#6b7280;

    line-height:1.8;
}

.site-footer{

    background:var(--resolution-blue);

    color:#fff;

    padding:80px 0 30px;
}

.site-footer h5{

    font-weight:700;

    margin-bottom:20px;
}

.footer-description{

    color:rgba(255,255,255,.8);

    line-height:1.8;
}

.footer-links{

    list-style:none;

    padding:0;
}

.footer-links li{

    margin-bottom:10px;
}

.footer-links a{

    color:rgba(255,255,255,.8);

    text-decoration:none;
}

.footer-links a:hover{

    color:var(--pear);
}

.site-footer hr{

    margin:40px 0;

    border-color:rgba(255,255,255,.2);
}

.registration-section{
    padding-bottom:120px;
}

/* ==========================
   REQUISITOS
========================== */

.requirements-section{
    padding:120px 0;
    background:#f8fafc;
}

.requirement-card{

    background:#ffffff;

    border-radius:24px;

    padding:30px;

    height:100%;

    display:flex;

    align-items:flex-start;

    gap:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

    transition:.3s;
}

.requirement-card:hover{

    transform:translateY(-5px);

}

.requirement-icon{

    width:70px;
    height:70px;

    flex-shrink:0;

    border-radius:18px;

    background:rgba(65,132,240,.12);

    display:flex;

    align-items:center;

    justify-content:center;
}

.requirement-icon i{

    font-size:1.8rem;

    color:var(--resolution-blue);
}

.requirement-card h5{

    color:var(--resolution-blue);

    font-weight:700;

    margin-bottom:10px;
}

.requirement-card p{

    color:#6b7280;

    margin:0;

    line-height:1.7;
}

.registration-section{
    padding:140px 0;
    border-top:1px solid #e5e7eb;
}

/* botón contacto */

.floating-whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    background:#25D366;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:2rem;

    text-decoration:none;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

    z-index:9999;
}

.floating-whatsapp:hover{

    color:#fff;

    transform:scale(1.05);
}


/* estilos cards*/

.form-card{
    background:#fff;
    padding:35px;
    border-radius:24px;
    margin-bottom:25px;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
}

.form-card h4{
    color:var(--resolution-blue);
    font-weight:700;
    margin-bottom:25px;
}


@media(max-width:991px){

    .hero-image{
        max-width:100%;
        margin-top:40px;
    }

}

.geo-help-text{
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}
