:root{

    --black:#111111;
    --dark:#1A1A1A;

    --green:#1E8E1C;
    --green-light:#39D10A;

    --gray:#E5E5E5;
    --gray-text:#666666;

    --white:#ffffff;

}

/* =========================================================
   EASYCREDIT - ESTILO PROFESIONAL MODERNO
========================================================= */

/* =========================================================
   RESET GENERAL
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:var(--black);
    overflow-x:hidden;
    line-height:1.6;
}

/* =========================================================
   CONTAINER
========================================================= */

.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

/* =========================================================
   TOPBAR
========================================================= */

.topbar{
    height:42px;
    background:var(--black);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 60px;
    color:white;
    font-size:14px;
}

.topbar span{
    display:flex;
    align-items:center;
    gap:8px;
}

/* =========================================================
   NAVBAR
========================================================= */

.navbar{
    width:100%;
    height:95px;
    position:sticky;
    top:0;
    z-index:999;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 70px;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(8,31,77,.06);
    transition:.4s ease;
    box-shadow:0 10px 35px rgba(0,0,0,.03);
}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:68px;
    transition:.35s ease;
}

.logo img:hover{
    transform:scale(1.04);
}

/* =========================================================
   MENU
========================================================= */

.menu{
    display:flex;
    align-items:center;
    gap:50px;
}

.menu a{
    position:relative;
    text-decoration:none;
    color:var(--black);
    font-size:17px;
    font-weight:600;
    letter-spacing:.3px;
    transition:.3s ease;
}

.menu a::after{
    content:'';
    position:absolute;
    left:50%;
    bottom:-10px;
    width:0%;
    height:3px;
    border-radius:20px;
    background:linear-gradient(
    90deg,
    #1E8E1C,
    #39D10A
);
    transform:translateX(-50%);
    transition:.35s ease;
}

.menu a:hover{
    color:#1E8E1C;
    transform:translateY(-2px);
}

.menu a:hover::after{
    width:100%;
}

.menu a.active{
    color:#1E8E1C;
}

.menu a.active::after{
    width:100%;
}

/* =========================================================
   BOTON NAV
========================================================= */

.btn-nav{
    padding:16px 32px;
    border-radius:14px;
    background:linear-gradient(135deg,var(--green),var(--green-light));
    color:white;
    text-decoration:none;
    font-size:15px;
    font-weight:700;
    letter-spacing:.4px;
    box-shadow:0 12px 30px rgba(0,200,83,.20);
    transition:.35s ease;
}

.btn-nav:hover{
    transform:translateY(-4px) scale(1.02);
    box-shadow:0 20px 40px rgba(0,200,83,.28);
}

/* =========================================================
   TABLET / LAPTOP PEQUEÑA
========================================================= */

@media(max-width:1100px){

    .navbar{

        padding:0 30px;
    }

    .menu{

        gap:28px;
    }

    .menu a{

        font-size:15px;
    }

    .btn-nav{

        padding:14px 22px;

        font-size:14px;
    }

    .logo img{

        height:58px;
    }

}

/* =========================================================
   TABLET PEQUEÑA
========================================================= */

@media(max-width:900px){

    .navbar{

        padding:0 20px;
    }

    .menu{

        gap:18px;
    }

    .menu a{

        font-size:14px;
    }

    .btn-nav{

        padding:12px 18px;

        font-size:13px;
    }

    .logo img{

        height:52px;
    }

}

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

.hero{
    width:100%;
    height:92vh;
    min-height:720px;
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
}

/* =========================================================
   FONDOS
========================================================= */

.slide-bg{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    opacity:0;
    transition:opacity 2s ease-in-out;
}

.slide-bg.active{
    opacity:1;
}

/* =========================================================
   OVERLAY
========================================================= */

.overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        to right,
        rgba(0,0,0,.88),
        rgba(0,0,0,.45)
    );

    z-index:1;
}
/* =========================================================
   CONTENIDO HERO
========================================================= */

.hero-content{
    position:relative;
    z-index:10;
    max-width:700px;
    padding-left:70px;
    color:white;
}

.hero h1{
    font-size:68px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:700;
}

.hero p{
    font-size:20px;
    line-height:1.9;
    margin-bottom:35px;
    opacity:.92;
}

.hero button{
    padding:18px 35px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,var(--green),var(--green-light));
    color:white;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.35s ease;
}

.hero button:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 40px rgba(0,200,83,.25);
}

/* =========================================================
   ANIMACION HERO
========================================================= */

.hero-content h1,
.hero-content p,
.hero-content button{

    opacity:0;

    transform:translateY(30px);

    animation:heroFade .9s ease forwards;
}

.hero-content p{
    animation-delay:.25s;
}

.hero-content button{
    animation-delay:.45s;
}

@keyframes heroFade{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* =========================================================
   CONTROLES SLIDER PREMIUM
========================================================= */

.slider-controls{
    position:absolute;
    top:50%;
    left:0;
    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    transform:translateY(-50%);

    padding:0 35px;

    z-index:20;

    pointer-events:none;

    opacity:0;
    visibility:hidden;

    transition:.4s ease;
}

/* MOSTRAR AL HACER HOVER EN HERO */

.hero:hover .slider-controls{
    opacity:1;
    visibility:visible;
}

/* BOTONES */

.slider-controls button{
    width:68px;
    height:68px;

    border:none;
    border-radius:50%;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,.18);

    color:white;
    font-size:22px;

    display:flex;
    justify-content:center;
    align-items:center;

    cursor:pointer;

    transition:.4s ease;

    box-shadow:
        0 10px 30px rgba(0,0,0,.18);

    pointer-events:auto;
}

/* HOVER BOTON */

.slider-controls button:hover{

    background:linear-gradient(
        135deg,
        var(--green),
        var(--green-light)
    );

    transform:
        translateY(-4px)
        scale(1.08);

    box-shadow:
        0 18px 40px rgba(0,200,83,.30);
}

/* ICONOS */

.slider-controls button i{
    transition:.3s ease;
}

.slider-controls button:hover i{
    transform:scale(1.15);
}

/* =========================================================
   SLIDER DOTS
========================================================= */

.slider-dots{

    position:absolute;

    bottom:35px;
    left:50%;

    transform:translateX(-50%);

    display:flex;
    align-items:center;
    gap:12px;

    z-index:30;
}

/* DOT */

.dot{

    width:12px;
    height:12px;

    border-radius:50%;

    background:rgba(255,255,255,.35);

    cursor:pointer;

    transition:.35s ease;

    backdrop-filter:blur(4px);
}

/* ACTIVO */

.dot.active{

    width:34px;

    border-radius:30px;

    background:linear-gradient(
        135deg,
        #1E8E1C,
        #39D10A
    );

    box-shadow:
    0 0 18px rgba(57,209,10,.45);
}

/* HOVER */

.dot:hover{

    background:rgba(255,255,255,.7);
}

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

section{
    position:relative;
}

/* =========================================================
   AFIANZAMIENTO
========================================================= */

.afianzamiento{
    padding:130px 0;
    background:#f5f5f5;
}

.af-title{
    text-align:center;
    margin-bottom:80px;
}

.af-title h2{
    font-size:54px;
    line-height:1.3;
    max-width:950px;
    margin:auto;
}

.af-title span{
    color:var(--green);
}

.af-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.af-card{
    background:white;
    padding:45px 35px;
    border-radius:28px;
    border:1px solid #e5e5e5;
    box-shadow:0 15px 35px rgba(15,23,42,.06);
    transition:.4s;
}

.af-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(15,23,42,.10);
}

.af-icon{
    width:80px;
    height:80px;
    border-radius:22px;
    background:linear-gradient(135deg,var(--green),var(--green-light));
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:28px;
}

.af-icon i{
    color:white;
    font-size:30px;
}

.af-card h3{
    font-size:24px;
    margin-bottom:18px;
}

.af-card p{
    color:var(--gray-text);
    line-height:1.9;
}

/* =========================================================
   AFIANZAMOS
========================================================= */

.afianzamos{
    padding:140px 0;
    background:
linear-gradient(
    135deg,
    rgba(0,0,0,.92),
    rgba(20,20,20,.92)
),
url('../img/afianzamos.png');

    background-size:cover;
    background-position:center;
    overflow:hidden;
}

.afianzamos h2{
    text-align:center;
    font-size:60px;
    color:white;
    margin-bottom:80px;
}

.afianzamos span{
    color:var(--green-light);
}

.afianza-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.afianza-item{
    display:flex;
    gap:22px;
    padding:35px;
    border-radius:30px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.10);
    transition:.4s;
}

.afianza-item:hover{
    transform:translateY(-10px);
    border-color:rgba(0,230,118,.35);
    box-shadow:0 25px 50px rgba(0,0,0,.25);
}

.icon{
    min-width:85px;
    height:85px;
    border-radius:24px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
}

.icon.green{
    background:linear-gradient(135deg,var(--green),var(--green-light));
}

.icon.blue{
    background:linear-gradient(135deg,#2196F3,#64B5F6);
}

.afianza-item h3{
    color:white;
    font-size:28px;
    margin-bottom:12px;
}

.afianza-item p{
    color:rgba(255,255,255,.82);
    line-height:1.9;
}

/* =========================================================
   BENEFICIOS
========================================================= */

.beneficios{
    padding:140px 0;
    background:white;
}

.beneficios-container{
    display:flex;
    align-items:center;
    gap:90px;
    flex-wrap:wrap;
}

.beneficios-image,
.beneficios-content{
    flex:1;
}

.beneficios-image img{
    width:100%;
    border-radius:32px;
    box-shadow:0 25px 60px rgba(0,0,0,.10);
}

.mini-title{
    color:var(--green);
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
    display:block;
}

.beneficios-content h2{
    font-size:58px;
    line-height:1.2;
    margin-bottom:28px;
}

.beneficios-content > p{
    color:var(--gray-text);
    line-height:1.9;
    margin-bottom:40px;
}

.beneficio-item{
    display:flex;
    gap:22px;
    padding:28px;
    border-radius:24px;
    border:1px solid #e5e5e5;
    margin-bottom:24px;
    box-shadow:0 10px 30px rgba(15,23,42,.05);
    transition:.35s;
}

.beneficio-item:hover{
    transform:translateY(-5px);
}

.beneficio-item i{
    min-width:65px;
    height:65px;
    border-radius:18px;
    background:linear-gradient(135deg,var(--green),var(--green-light));
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
}

.beneficio-item h3{
    font-size:24px;
    margin-bottom:8px;
}

.beneficio-item p{
    color:var(--gray-text);
}

/* =========================================================
   STATS
========================================================= */

.stats-section{
    padding:40px 0 130px;
    background:#f7f9fc;
}

.stats-title{
    text-align:center;
    margin-bottom:60px;
}

.stats-title h2{
    font-size:58px;
}

.stats{
    width:85%;
    margin:auto;
    background:linear-gradient(
    135deg,
    #111111,
    #2a2a2a
);
    border-radius:35px;
    padding:80px 50px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:35px;
    color:white;
}

.stat{
    flex:1;
    min-width:220px;
    text-align:center;
}

.stat h2{
    font-size:72px;
    color:#22C55E;
    margin-bottom:15px;
}

.stat p{
    max-width:220px;
    margin:auto;
    line-height:1.8;
}

/* =========================================================
   ABOUT
========================================================= */

.about{
    padding:140px 0;
    background:#f5f5f5;
}

.about-container{
    display:flex;
    align-items:center;
    gap:80px;
    flex-wrap:wrap;
}

.about-text,
.about-image{
    flex:1;
}

.about-text span{
    color:var(--green);
    font-size:24px;
    font-weight:700;
}

.about-text h2{
    font-size:60px;
    margin:20px 0 28px;
}

.about-text p{
    color:var(--gray-text);
    line-height:2;
    margin-bottom:22px;
}

.about-text button{
    margin-top:15px;
    padding:18px 36px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,var(--green),var(--green-light));
    color:white;
    font-weight:600;
    cursor:pointer;
}

.about-image img{
    width:100%;
    border-radius:35px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

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

.cta-final{
    padding:140px 0;
    background:linear-gradient(
        180deg,
        #f5f5f5 50%,
        var(--black) 50%
    );
}

.cta-box{
    display:flex;
    flex-wrap:wrap;
    overflow:hidden;
    border-radius:38px;
    background:white;
    box-shadow:0 30px 80px rgba(0,0,0,.12);
}

.cta-image{
    flex:1;
    min-width:320px;
    position:relative;
    overflow:hidden;
}

.cta-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1.2s ease;
}

.cta-image-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to right,
        rgba(0,0,0,.88),
        rgba(0,0,0,.45)
    );
}

.cta-box:hover .cta-image img{
    transform:scale(1.08);
}

.cta-content{
    flex:1;
    min-width:320px;
    padding:80px 70px;
}

.cta-mini{
    color:var(--green);
    font-size:18px;
    font-weight:700;
}

.cta-content h2{
    font-size:58px;
    line-height:1.15;
    margin:18px 0 24px;
}

.cta-content > p{
    color:var(--gray-text);
    line-height:1.9;
    margin-bottom:45px;
    font-size:17px;
}

.cta-items{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.cta-item{
    display:flex;
    align-items:center;
    gap:22px;
    padding:24px 28px;
    border-radius:24px;
    background:#f5f5f5;
    text-decoration:none;
    transition:.4s ease;
    border:1px solid transparent;
}

.cta-item:hover{
    transform:translateY(-6px);
    background:white;
    border-color:#e2e8f0;
    box-shadow:0 18px 45px rgba(15,23,42,.08);
}

.cta-icon{
    width:75px;
    height:75px;
    border-radius:22px;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
    font-size:30px;
    color:white;
    transition:.4s ease;
}

.cta-icon.green{
    background:linear-gradient(135deg,var(--green),var(--green-light));
}

.cta-icon.blue{
    background:linear-gradient(135deg,#2196F3,#64B5F6);
}

.cta-item:hover .cta-icon{
    transform:rotate(-8deg) scale(1.08);
}

.cta-item h3{
    font-size:24px;
    color:var(--black);
    margin-bottom:6px;
}

.cta-item p{
    color:var(--gray-text);
    line-height:1.7;
}

.cta-btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    margin-top:45px;
    padding:18px 36px;
    border-radius:16px;
    background:linear-gradient(135deg,var(--green),var(--green-light));
    color:white;
    text-decoration:none;
    font-size:16px;
    font-weight:700;
    transition:.4s ease;
    box-shadow:0 15px 35px rgba(0,200,83,.25);
}

.cta-btn:hover{
    transform:translateY(-5px) scale(1.03);
    box-shadow:0 22px 50px rgba(0,200,83,.35);
}

/* =========================================================
   FOOTER
========================================================= */

.footer{
    background:var(--black);
    padding:90px 0 35px;
    color:white;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:50px;
}

.footer-brand img{
    height:70px;
    margin-bottom:20px;
}

.footer-brand p{
    color:rgba(255,255,255,.75);
}

.footer h3{
    color:var(--green-light);
    margin-bottom:22px;
    font-size:28px;
}

.footer-info a{
    color:rgba(255,255,255,.78);
    text-decoration:none;
    transition:.3s;
}

.footer-info a:hover,
.footer-links a:hover{
    color:var(--green-light);
}

.footer-info p,
.footer-links a{
    color:rgba(255,255,255,.78);
    text-decoration:none;
    margin-bottom:14px;
    display:block;
}

.social-icons{
    display:flex;
    gap:15px;
}

.social-icons a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
}

.social-icons a:hover{
    background:#09d353;
}

.footer-copy{
    margin-top:70px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    color:rgba(255,255,255,.65);
}

/* =========================================================
   WHATSAPP FLOAT
========================================================= */

.whatsapp{
    position:fixed;
    width:65px;
    height:65px;
    right:20px;
    bottom:20px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    z-index:999;
    box-shadow:0 15px 35px rgba(37,211,102,.25);
}

.whatsapp i{
    color:white;
    font-size:34px;
}

/* =========================================================
   DROPDOWN + MENU MOBILE CORREGIDO
========================================================= */

/* =========================================================
   HAMBURGUESA
========================================================= */

.menu-toggle{
    display:none !important;
    font-size:32px;
    color:var(--black);
    cursor:pointer;
    z-index:2000;
    position:absolute;
    left:22px;
    top:50%;
    transform:translateY(-50%);
}

/* =========================================================
   DROPDOWN SERVICIOS
========================================================= */

.dropdown{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* BOTON */

.dropdown > a{
    display:flex;
    align-items:center;
    gap:8px;
}

/* ICONO */

.dropdown i{
    font-size:12px;
    transition:.3s ease;
}

/* ROTAR ICONO */

.dropdown:hover i,
.dropdown.active i{
    transform:rotate(180deg);
}

/* =========================================================
   SUBMENU DESKTOP
========================================================= */

.submenu{
    position:absolute;
    top:150%;
    left:50%;
    transform:translateX(-50%);

    min-width:320px;

    background:white;
    border-radius:26px;
    padding:18px;

    display:flex;
    flex-direction:column;
    gap:10px;

    opacity:0;
    visibility:hidden;

    transition:
    opacity .25s ease,
    visibility .25s ease;

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);

    border:1px solid rgba(0,200,83,.10);

    z-index:999;
}

/* MOSTRAR */

.dropdown:hover .submenu{
    opacity:1;
    visibility:visible;
}

/* LINKS SUBMENU */

.submenu a{
    display:flex;
    align-items:center;

    padding:16px 20px;

    border-radius:16px;

    text-decoration:none;

    color:#000000;

    font-size:17px;

    font-weight:600;

    background:#ffffff;

    transition:
    background .25s ease,
    color .25s ease;
}

/* HOVER */

.submenu a:hover{
    background:
    linear-gradient(
    135deg,
    #00C853,
    #00E676
    );

    color:#ffffff;

    transform:none !important;
    box-shadow:none !important;
}

/* QUITAR LINEA */

.submenu a::after{
    display:none !important;
}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

    /* TOPBAR */

    .topbar{
        display:none;
    }

    /* NAVBAR */

    .navbar{
        position:relative;
        justify-content:center;
        align-items:center;
        padding:18px 22px;
        height:auto;
    }

    /* LOGO */

    .logo{
        display:flex;
        justify-content:center;
        width:100%;
    }

    .logo img{
        height:55px;
        width:auto;
    }

    /* HAMBURGUESA */

    .menu-toggle{
        display:flex !important;
        align-items:center;
        justify-content:center;
    }

    /* MENU */

    .menu{
        position:fixed;

        top:0;
        left:-100%;

        width:300px;
        height:100vh;

        background:white;

        display:flex;
        flex-direction:column;
        align-items:flex-start;
        justify-content:flex-start;

        padding:120px 30px 40px;

        gap:8px;

        transition:left .35s ease;

        z-index:1500;

        overflow-y:auto;

        box-shadow:0 0 40px rgba(0,0,0,.15);
    }

    .menu.active{
        left:0;
    }

    /* LINKS */

    .menu > a,
    .dropdown > a{

        width:100%;

        padding:16px 0;

        font-size:22px;
        font-weight:700;

        color:#000000;

        border-bottom:
        1px solid rgba(0,0,0,.06);

        transform:none !important;
        transition:none !important;
    }

    /* ELIMINAR ANIMACIONES */

    .menu a:hover,
    .dropdown > a:hover,
    .submenu a:hover{
        transform:none !important;
        box-shadow:none !important;
    }

    .menu a::after{
        display:none !important;
    }

    /* DROPDOWN */

    .dropdown{
        width:100%;

        display:flex;
        flex-direction:column;
        align-items:flex-start;
    }

    /* SUBMENU MOBILE */

    .submenu{
        position:relative;

        top:0;
        left:0;

        transform:none !important;

        opacity:1;
        visibility:visible;

        display:none;

        width:100%;
        min-width:100%;

        margin-top:10px;

        padding:10px;

        border-radius:18px;

        background:#f8fafc;

        border:1px solid rgba(0,0,0,.05);

        box-shadow:none;
    }

    .dropdown.active .submenu{
        display:flex;
        flex-direction:column;
        gap:6px;
    }

    /* LINKS SUBMENU */

    .submenu a{
        width:100%;

        padding:14px 16px;

        border-radius:14px;

        color:#000000;

        font-size:16px;

        font-weight:600;

        background:white;

        transition:
        background .2s ease,
        color .2s ease;
    }

    .submenu a:hover{
        background:#22C55E;
        color:white;
    }

    /* BOTON NAV */

    .btn-nav{
        display:none;
    }
}

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

@media(min-width:769px){

    .menu-toggle{
        display:none !important;
    }

    .menu{
        position:static;
        width:auto;
        height:auto;
        background:none;
        box-shadow:none;
        padding:0;

        flex-direction:row;
        align-items:center;
        justify-content:center;

        gap:50px;
    }
}

/* =========================================================
   FIX OVERFLOW MOBILE
========================================================= */

html,
body{
    width:100%;
    overflow-x:hidden !important;
}

/* EVITA DESBORDES */

*{
    max-width:100%;
}

/* HERO */

.hero{
    width:100%;
    overflow:hidden;
}

.hero-content{
    width:100%;
    padding-left:20px;
    padding-right:20px;
}

/* SLIDER CONTROLS */

.slider-controls{
    width:100%;
    padding:0 15px;
}

/* IMAGENES */

img{
    max-width:100%;
    height:auto;
    display:block;
}

/* GRID FIX */

.af-grid,
.afianza-grid,
.footer-container,
.beneficios-container,
.about-container,
.cta-box{
    overflow:hidden;
}

/* MOBILE */

@media(max-width:768px){

    .container{
        width:92%;
    }

    .navbar{
        width:100%;
        padding:18px 18px;
    }

    .menu{
        width:85%;
        max-width:320px;
    }

    .hero{
        min-height:100vh;
        height:auto;
    }

    .hero-content{
        padding:120px 20px 80px;
        max-width:100%;
    }

    .hero h1{
        font-size:42px;
        line-height:1.15;
    }

    .hero p{
        font-size:17px;
        line-height:1.7;
    }

    .slider-controls{
        display:none;
    }

    .beneficios-container,
    .about-container{
        gap:40px;
    }

    .cta-content{
        padding:50px 25px;
    }

    .stats{
        width:92%;
        padding:50px 25px;
    }

    .stat h2{
        font-size:48px;
    }

    .afianzamos h2,
    .beneficios-content h2,
    .about-text h2,
    .cta-content h2,
    .stats-title h2,
    .af-title h2{
        font-size:38px;
        line-height:1.2;
    }
 }