:root {
    --marron: #A75F2E;
    --naranja: #F09322;
    --amarillo: #FFCD00;
    --blanco: #FFFFFF;
    --gris: #F7F4EF;
    --texto: #2B2B2B;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body{
    font-family: 'Nunito', sans-serif;
    color: var(--texto);
    background: var(--blanco);
    overflow-x: hidden;
}

h1,
h2,
h3,
.nav-link{
    font-family: 'Patrick Hand', cursive;
}

/* =========================================================
   NAVBAR
========================================================= */

.custom-navbar{
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    height: 82px;
    padding: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,.06);
    z-index: 9999;
    transition: .3s ease;
}

.custom-navbar .container{
    height: 82px;
    display: flex;
    align-items: center;
}

.navbar-brand{
    height: 82px;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.navbar-brand img{
    width: 250px;
    height: auto;
    object-fit: contain;
    margin: 0 !important;
    position: relative;
    top: 5px;
    transition: .3s ease;
}

.navbar-nav{
    align-items: center;
}

.nav-link{
    font-size: 18px;
    font-weight: 700;
    color: var(--texto);
    margin: 0 9px;
    transition: .3s ease;
    position: relative;
}

.nav-link:hover{
    color: var(--marron);
    transform: translateY(-2px);
}

.nav-link::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 3px;
    border-radius: 20px;
    background: linear-gradient(90deg,var(--naranja),var(--amarillo));
    transition: .3s ease;
}

.nav-link:hover::after{
    width: 100%;
}

.btn-navbar,
.btn-main{
    background: linear-gradient(135deg,var(--naranja),var(--amarillo));
    color: var(--texto);
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 900;
    border: none;
    box-shadow: 0 10px 25px rgba(240,147,34,.35);
    transition: .3s ease;
    text-decoration: none;
}

.btn-navbar{
    margin-left: 15px;
}

.btn-navbar:hover,
.btn-main:hover{
    transform: translateY(-3px);
    color: var(--texto);
}

/* =========================================================
   HERO
========================================================= */

.hero-section{
    position: relative;
    min-height: 100vh;
    padding-top: 82px;

    background:
        linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.35)),
        url('/img/fundacion/hero.jpg') center/cover no-repeat;
}

.hero-content{
    position: relative;
    z-index: 2;
    color: white;
}

.badge-hero,
.section-badge,
.section-title span{
    display: inline-block;
    background: var(--amarillo);
    color: var(--texto);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 800;
    margin-bottom: 12px;
}

.hero-section h1{
    font-size: clamp(55px,8vw,95px);
    line-height: .95;
    margin-bottom: 20px;
}

.hero-section p{
    font-size: 21px;
    max-width: 680px;
}

.hero-buttons{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* =========================================================
   SECCIONES
========================================================= */

.section{
    padding: 90px 0;
}

.bg-soft{
    background: var(--gris);
}

.section-title{
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
}

.section-title h2{
    font-size: 58px;
    color: var(--marron);
}

.section-title p{
    font-size: 18px;
}

/* =========================================================
   CARDS
========================================================= */

.info-card,
.program-card,
.activity-card,
.testimonial-card,
.contact-info,
.qr-box{
    background: white;
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    height: 100%;
    transition: .3s ease;
}

.info-card:hover,
.program-card:hover,
.activity-card:hover,
.testimonial-card:hover{
    transform: translateY(-8px);
}

.info-card i,
.program-card i,
.activity-card i{
    font-size: 42px;
    color: var(--naranja);
    margin-bottom: 18px;
}

.info-card h4,
.program-card h4{
    color: var(--marron);
    font-weight: 800;
}

.program-card span{
    display: inline-block;
    background: var(--gris);
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 800;
    margin-bottom: 12px;
}

/* =========================================================
   IMPACTO
========================================================= */

.impact-section{
    padding: 90px 0;
    background: linear-gradient(135deg,var(--marron),var(--naranja));
}

.impact-card{
    text-align: center;
    background: rgba(255,255,255,.18);
    color: white;
    padding: 30px 20px;
    border-radius: 28px;
    backdrop-filter: blur(8px);
}

.impact-card h3{
    font-size: 48px;
    font-weight: 900;
}

/* =========================================================
   APORTES
========================================================= */

.aportes-section{
    background:
        radial-gradient(circle at top left, rgba(255,205,0,.35), transparent 35%),
        var(--blanco);
}

.aportes-section h2{
    font-size: 58px;
    color: var(--marron);
}

.donation-card{
    background: var(--gris);
    border: 2px dashed var(--naranja);
    border-radius: 22px;
    padding: 22px;
    text-align: center;
    font-size: 24px;
    font-weight: 900;
    color: var(--marron);
    transition: .3s ease;
}

.donation-card:hover{
    background: var(--amarillo);
    transform: scale(1.04);
}

.qr-box{
    text-align: center;
    border: 3px solid var(--amarillo);
}

.qr-placeholder{
    width: 230px;
    height: 230px;
    margin: 25px auto;
    border-radius: 24px;
    background: var(--gris);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    font-weight: 900;
    color: var(--marron);
}

.trust-text{
    margin-top: 18px;
    color: var(--marron);
    font-weight: 800;
}

/* =========================================================
   TESTIMONIOS
========================================================= */

.testimonial-card{
    font-size: 18px;
    line-height: 1.6;
}

.testimonial-card strong{
    display: block;
    margin-top: 18px;
    color: var(--marron);
}

/* =========================================================
   GALERÍA
========================================================= */

.gallery-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.gallery-item{
    overflow: hidden;
    border-radius: 26px;
    height: 240px;
    box-shadow: 0 15px 35px rgba(0,0,0,.10);
}

.gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease;
}

.gallery-item:hover img{
    transform: scale(1.08);
}

/* =========================================================
   CONTACTO
========================================================= */

.contact-form{
    background: white;
    padding: 30px;
    border-radius: 28px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.contact-form .form-control{
    border-radius: 18px;
    padding: 14px 18px;
    margin-bottom: 15px;
    border: 1px solid #e5dfd8;
}

.btn-whatsapp{
    background: #25D366;
    color: white;
    border-radius: 50px;
    padding: 11px 24px;
    font-weight: 800;
    margin-left: 8px;
}

.contact-info p{
    font-size: 17px;
}

.contact-info i{
    color: var(--naranja);
    margin-right: 8px;
}

/* =========================================================
   FOOTER
========================================================= */

.footer{
    background: #2B2B2B;
    color: white;
    padding: 50px 0 25px;
}

.footer h4,
.footer h5{
    color: var(--amarillo);
}

.footer a{
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 8px;
}

.footer i{
    font-size: 24px;
    margin-right: 12px;
    color: var(--amarillo);
}

/* =========================================================
   WHATSAPP FLOAT
========================================================= */

.float-whatsapp{
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 62px;
    height: 62px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 32px;
    z-index: 999;
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px){

    .custom-navbar{
        height: auto;
        min-height: 82px;
        background: rgba(255,255,255,.98);
    }

    .custom-navbar .container{
        min-height: 82px;
        align-items: center;
    }

    .navbar-brand img{
        width: 175px;
        top: 2px;
    }

    .navbar-toggler{
        width: 54px;
        height: 48px;
        border: 2px solid rgba(167,95,46,.35);
        border-radius: 16px;
        background: #fff;
        box-shadow: 0 10px 25px rgba(167,95,46,.12);
    }

    .navbar-toggler:focus{
        box-shadow: 0 0 0 4px rgba(255,205,0,.25);
    }

    .navbar-collapse{
        background:
            radial-gradient(circle at top right, rgba(255,205,0,.30), transparent 35%),
            linear-gradient(180deg, #ffffff, #fff8ed);
        margin-top: 10px;
        padding: 18px;
        border-radius: 28px;
        box-shadow: 0 22px 45px rgba(0,0,0,.16);
        border: 1px solid rgba(240,147,34,.18);
    }

    .navbar-nav{
        gap: 9px;
    }

    .nav-link{
        width: 100%;
        font-size: 25px;
        padding: 11px 16px;
        border-radius: 18px;
        color: var(--texto);
        background: rgba(255,255,255,.65);
    }

    .nav-link:hover{
        background: rgba(255,205,0,.25);
        color: var(--marron);
        transform: translateX(5px);
    }

    .nav-link::after{
        display: none;
    }

    .navbar-nav li:nth-child(1) .nav-link::before{ content: "🏠 "; }
    .navbar-nav li:nth-child(2) .nav-link::before{ content: "🤝 "; }
    .navbar-nav li:nth-child(3) .nav-link::before{ content: "📚 "; }
    .navbar-nav li:nth-child(4) .nav-link::before{ content: "🎨 "; }
    .navbar-nav li:nth-child(5) .nav-link::before{ content: "🌟 "; }
    .navbar-nav li:nth-child(6) .nav-link::before{ content: "💛 "; }
    .navbar-nav li:nth-child(7) .nav-link::before{ content: "📞 "; }

    .btn-navbar{
        width: 100%;
        text-align: center;
        margin: 14px 0 0 0;
        padding: 14px 22px;
        font-size: 18px;
        border-radius: 20px;
        box-shadow: 0 14px 30px rgba(240,147,34,.28);
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 576px){

    .section{
        padding: 65px 0;
    }

    .navbar-brand img{
        width: 165px;
    }

    .hero-section{
        padding-top: 82px;
    }

    .hero-section h1{
        font-size: 58px;
        line-height: .95;
    }

    .hero-section p{
        font-size: 18px;
    }

    .hero-buttons{
        flex-direction: column;
        align-items: flex-start;
    }

    .section-title h2,
    .aportes-section h2{
        font-size: 44px;
    }

    .gallery-grid{
        grid-template-columns: 1fr;
    }

    .btn-whatsapp{
        margin-left: 0;
        margin-top: 10px;
    }

    .float-whatsapp{
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
}



.hero-section{
    position: relative;
    overflow: hidden;
}

.hero-slide{
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-content{
    position: relative;
    z-index: 2;
    color: white;
}

.hero-section h1{
    font-size: clamp(65px,8vw,110px);
    line-height: .92;
    margin-bottom: 22px;
    text-shadow: 0 10px 25px rgba(0,0,0,.35);
}

.hero-section p{
    font-size: 24px;
    max-width: 700px;
    line-height: 1.6;
    margin-bottom: 28px;
    color: rgba(255,255,255,.92);
}

.badge-hero{
    display: inline-block;
    background: linear-gradient(135deg,#FFCD00,#F09322);
    color: #2B2B2B;
    padding: 10px 10px;
    border-radius: 50px;
    font-weight: 900;
    margin-bottom: 18px;
    box-shadow: 0 10px 25px rgba(240,147,34,.35);
}

.hero-buttons{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-outline{
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 800;
    border: 2px solid rgba(255,255,255,.7);
    backdrop-filter: blur(8px);
}

.hero-outline:hover{
    background: white;
    color: #2B2B2B;
}

.custom-arrow{
    width: 80px;
}

.custom-arrow span{
    background-color: rgba(255,255,255,.18);
    border-radius: 50%;
    padding: 28px;
    backdrop-filter: blur(8px);
}

.custom-indicators button{
    width: 14px !important;
    height: 14px !important;
    border-radius: 50%;
    margin: 0 7px !important;
    background-color: #FFCD00 !important;
}

.carousel-fade .carousel-item{
    transition: opacity .8s ease-in-out;
}

/* MOBILE */

@media(max-width:991px){

    .hero-section h1{
        font-size: 62px;
    }

    .hero-section p{
        font-size: 19px;
    }

    .hero-slide{
        text-align: center;
    }

    .hero-buttons{
        justify-content: center;
    }
}

@media(max-width:576px){

    .hero-section h1{
        font-size: 52px;
    }

    .hero-section p{
        font-size: 17px;
    }

    .custom-arrow{
        display: none;
    }
}

.hero-row{
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-top: 35px;
}

/* =========================================
   HERO MOBILE
========================================= */

@media(max-width:991px){

    .hero-row{
        min-height: 100vh;
        padding-top: 120px;
        padding-bottom: 60px;

        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero-content{
        width: 100%;
    }

    .hero-section h1{
        font-size: 58px;
        line-height: .95;
        margin-bottom: 18px;
    }

    .hero-section p{
        font-size: 20px;
        line-height: 1.7;
        max-width: 100%;
        margin: 0 auto 25px auto;
    }

    .badge-hero{
        font-size: 15px;
        padding: 9px 18px;
        margin-bottom: 18px;
    }

    .hero-buttons{
        justify-content: center;
        gap: 14px;
    }

    .btn-main,
    .hero-outline{
        width: 100%;
        max-width: 320px;
        text-align: center;
        justify-content: center;
    }

    .custom-arrow{
        display: none;
    }
}

/* =========================================
   HERO SMALL MOBILE
========================================= */

@media(max-width:576px){

    .hero-row{
        padding-top: 105px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-section h1{
        font-size: 48px;
    }

    .hero-section p{
        font-size: 17px;
    }

    .badge-hero{
        font-size: 14px;
    }

    .btn-main,
    .hero-outline{
        padding: 13px 20px;
        font-size: 16px;
    }
}













.nosotros-section{
    background:
        radial-gradient(circle at top left, rgba(255,205,0,.22), transparent 30%),
        linear-gradient(180deg,#ffffff,#fff8ef);
}

.nosotros-card{
    height: 100%;
    background: rgba(255,255,255,.92);
    border-radius: 32px;
    padding: 38px;
    box-shadow: 0 20px 45px rgba(0,0,0,.08);
    border: 1px solid rgba(240,147,34,.18);
    position: relative;
    overflow: hidden;
    transition: .3s ease;
}

.nosotros-card::before{
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -55px;
    top: -55px;
    background: rgba(255,205,0,.25);
    border-radius: 50%;
}

.nosotros-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(167,95,46,.15);
}

.nosotros-icon{
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: linear-gradient(135deg,var(--naranja),var(--amarillo));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin-bottom: 20px;
    box-shadow: 0 12px 25px rgba(240,147,34,.35);
}

.nosotros-card h3{
    font-size: 46px;
    color: var(--marron);
    margin-bottom: 16px;
}

.nosotros-card p{
    font-size: 17px;
    line-height: 1.75;
    color: #3a3a3a;
    margin-bottom: 14px;
}

.valores-box{
    background: white;
    border-radius: 28px;
    padding: 22px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    box-shadow: 0 18px 40px rgba(0,0,0,.07);
}

.valor-item{
    background: #fff7df;
    border: 1px solid rgba(240,147,34,.22);
    border-radius: 50px;
    padding: 13px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    color: var(--marron);
}

.valor-item i{
    color: var(--naranja);
    font-size: 20px;
}

@media(max-width:576px){
    .nosotros-card{
        padding: 28px 24px;
    }

    .nosotros-card h3{
        font-size: 38px;
    }

    .nosotros-card p{
        font-size: 16px;
    }

    .valores-box{
        justify-content: flex-start;
    }
}

.programas-section{
    background:
        radial-gradient(circle at top right, rgba(255,205,0,.22), transparent 28%),
        linear-gradient(180deg,#fff,#fff8ef);
}

.program-card-modern{
    background: rgba(255,255,255,.95);
    border-radius: 34px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(240,147,34,.16);

    box-shadow: 0 20px 45px rgba(0,0,0,.08);

    transition: .35s ease;
}

.program-card-modern::before{
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    background: rgba(255,205,0,.10);
    border-radius: 50%;
    right: -60px;
    top: -60px;
}

.program-card-modern:hover{
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(167,95,46,.16);
}

.program-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.program-icon{
    width: 78px;
    height: 78px;
    border-radius: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    font-size: 34px;

    box-shadow: 0 14px 30px rgba(240,147,34,.30);
}

.program-badge{
    background: #fff3d4;
    color: var(--marron);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 900;
}

.program-card-modern h3{
    font-size: 46px;
    color: var(--marron);
    margin-bottom: 14px;
}

.program-card-modern p{
    font-size: 17px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 24px;
}

.program-link{
    display: inline-flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;
    font-weight: 900;
    color: var(--naranja);

    transition: .3s ease;
}

.program-link:hover{
    gap: 14px;
    color: var(--marron);
}

.program-link i{
    transition: .3s ease;
}

/* MOBILE */

@media(max-width:991px){

    .program-card-modern{
        padding: 28px;
    }

    .program-card-modern h3{
        font-size: 40px;
    }
}

@media(max-width:576px){

    .program-top{
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .program-card-modern{
        padding: 25px;
        border-radius: 28px;
    }

    .program-card-modern h3{
        font-size: 36px;
    }

    .program-card-modern p{
        font-size: 16px;
    }

    .program-icon{
        width: 68px;
        height: 68px;
        font-size: 28px;
    }
}









/* =========================================
   ACTIVIDADES
========================================= */

.actividades-section{
    background:
        radial-gradient(circle at bottom left, rgba(255,205,0,.18), transparent 28%),
        linear-gradient(180deg,#fff,#fff8f0);
}

.activity-card-modern{
    background: rgba(255,255,255,.95);
    border-radius: 34px;
    padding: 34px;
    height: 100%;
    position: relative;
    overflow: hidden;

    border: 1px solid rgba(240,147,34,.14);

    box-shadow: 0 20px 45px rgba(0,0,0,.07);

    transition: .35s ease;
}

.activity-card-modern::before{
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;

    background: rgba(255,205,0,.10);

    top: -70px;
    right: -70px;
}

.activity-card-modern:hover{
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(167,95,46,.16);
}

.activity-icon{
    width: 82px;
    height: 82px;
    border-radius: 26px;

    background:
        linear-gradient(135deg,var(--naranja),var(--amarillo));

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    font-size: 35px;

    margin-bottom: 22px;

    box-shadow: 0 15px 30px rgba(240,147,34,.30);
}

.activity-card-modern h3{
    font-size: 40px;
    color: var(--marron);
    margin-bottom: 14px;
}

.activity-card-modern p{
    font-size: 17px;
    line-height: 1.75;
    color: #444;
}

/* =========================================
   IMPACTO
========================================= */

.impact-modern-section{
    position: relative;
    padding: 110px 0;

    background:
        linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.45)),
        url('/img/fundacion/impacto.jpg') center/cover no-repeat;
}

.impact-overlay{
    position: absolute;
    inset: 0;

    background:
        linear-gradient(135deg,
        rgba(167,95,46,.85),
        rgba(240,147,34,.80));
}

.impact-modern-section .container{
    z-index: 2;
}

.impact-text{
    max-width: 720px;
    margin: auto;
    color: rgba(255,255,255,.92);
}

.impact-card-modern{
    background: rgba(255,255,255,.14);

    border-radius: 34px;

    padding: 38px 24px;

    text-align: center;

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,.18);

    transition: .35s ease;

    height: 100%;
}

.impact-card-modern:hover{
    transform: translateY(-10px);
    background: rgba(255,255,255,.18);
}

.impact-number{
    font-size: 72px;
    font-weight: 900;
    color: white;
    margin-bottom: 14px;

    text-shadow: 0 10px 25px rgba(0,0,0,.25);
}

.impact-card-modern h4{
    color: white;
    font-size: 26px;
    line-height: 1.4;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:991px){

    .activity-card-modern{
        padding: 28px;
    }

    .activity-card-modern h3{
        font-size: 34px;
    }

    .impact-number{
        font-size: 56px;
    }

    .impact-card-modern h4{
        font-size: 22px;
    }
}

@media(max-width:576px){

    .activity-card-modern{
        padding: 25px;
        border-radius: 28px;
    }

    .activity-card-modern h3{
        font-size: 30px;
    }

    .activity-card-modern p{
        font-size: 16px;
    }

    .activity-icon{
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .impact-modern-section{
        padding: 90px 0;
    }

    .impact-number{
        font-size: 48px;
    }

    .impact-card-modern h4{
        font-size: 18px;
    }
}





/* =========================================
   APORTES
========================================= */

.aportes-modern-section{
    background:
        radial-gradient(circle at top left, rgba(255,205,0,.22), transparent 30%),
        linear-gradient(180deg,#fff,#fff8ef);
}

.aportes-title{
    font-size: 62px;
    color: var(--marron);
    margin-bottom: 20px;
}

.aportes-text{
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.donation-card-modern{
    background: white;
    border-radius: 26px;
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(240,147,34,.16);
    box-shadow: 0 15px 35px rgba(0,0,0,.06);
    transition: .3s ease;
    cursor: pointer;
}

.donation-card-modern:hover{
    transform: translateY(-8px);
    background: #fff4d8;
}

.donation-card-modern span{
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: var(--marron);
}

.donation-card-modern small{
    font-weight: 800;
    color: var(--naranja);
}

.trust-box{
    margin-top: 30px;
    background: white;
    border-radius: 24px;
    padding: 18px;
    display: flex;
    gap: 16px;
    align-items: center;
    box-shadow: 0 12px 30px rgba(0,0,0,.05);
}

.trust-box i{
    font-size: 42px;
    color: var(--naranja);
}

.qr-box-modern{
    background: white;
    border-radius: 34px;
    padding: 35px;
    box-shadow: 0 25px 50px rgba(0,0,0,.08);
}

.qr-top{
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

.qr-icon{
    width: 74px;
    height: 74px;
    border-radius: 22px;
    background: linear-gradient(135deg,var(--naranja),var(--amarillo));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.qr-image-box{
    background: #fff7e4;
    border-radius: 28px;
    padding: 30px;
    text-align: center;
}

.qr-image-box img{
    max-width: 260px;
    width: 100%;
}

.bank-box{
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bank-item{
    background: #fff8ef;
    padding: 14px 18px;
    border-radius: 18px;
    font-weight: 700;
}

/* =========================================
   TESTIMONIOS
========================================= */

.testimonios-section{
    background: #fffdf8;
}

.testimonial-modern-card{
    background: white;
    border-radius: 34px;
    padding: 32px;
    height: 100%;
    box-shadow: 0 18px 40px rgba(0,0,0,.06);
    transition: .3s ease;
}

.testimonial-modern-card:hover{
    transform: translateY(-8px);
}

.testimonial-stars{
    color: #FFB400;
    font-size: 24px;
    margin-bottom: 16px;
}

.testimonial-modern-card p{
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-user{
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar{
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--naranja),var(--amarillo));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 24px;
}

/* =========================================
   GALERÍA
========================================= */

.galeria-modern-section{
    background: white;
}

.gallery-modern-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.gallery-modern-item{
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    height: 280px;
    box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

.gallery-modern-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.gallery-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.45));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .4s ease;
}

.gallery-overlay i{
    color: white;
    font-size: 42px;
}

.gallery-modern-item:hover img{
    transform: scale(1.08);
}

.gallery-modern-item:hover .gallery-overlay{
    opacity: 1;
}

/* =========================================
   CONTACTO
========================================= */

.contacto-modern-section{
    background:
        radial-gradient(circle at bottom right, rgba(255,205,0,.22), transparent 30%),
        linear-gradient(180deg,#fff,#fff8ef);
}

.contact-form-modern{
    background: white;
    padding: 34px;
    border-radius: 34px;
    box-shadow: 0 20px 45px rgba(0,0,0,.06);
}

.contact-form-modern .form-control{
    border-radius: 18px;
    padding: 15px 18px;
    border: 1px solid #eee0ca;
}

.contact-info-modern{
    background: white;
    border-radius: 34px;
    padding: 34px;
    height: 100%;
    box-shadow: 0 20px 45px rgba(0,0,0,.06);
}

.contact-item{
    display: flex;
    gap: 18px;
    margin-bottom: 24px;
}

.contact-icon{
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg,var(--naranja),var(--amarillo));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
}

.contact-item h5{
    color: var(--marron);
    margin-bottom: 5px;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:991px){

    .aportes-title{
        font-size: 48px;
    }

    .gallery-modern-grid{
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:576px){

    .aportes-title{
        font-size: 40px;
    }

    .gallery-modern-grid{
        grid-template-columns: 1fr;
    }

    .gallery-modern-item{
        height: 240px;
    }

    .contact-form-modern,
    .contact-info-modern,
    .qr-box-modern,
    .testimonial-modern-card{
        padding: 26px;
        border-radius: 28px;
    }

    .donation-card-modern span{
        font-size: 30px;
    }
}

.cuenta-box-modern{
    background: white;
    border-radius: 34px;
    padding: 38px;
    box-shadow: 0 25px 50px rgba(0,0,0,.08);
    height: 100%;
}

.cuenta-top{
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
    align-items: center;
}

.cuenta-icon{
    width: 78px;
    height: 78px;
    border-radius: 24px;

    background:
        linear-gradient(135deg,var(--naranja),var(--amarillo));

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    font-size: 34px;

    box-shadow: 0 14px 30px rgba(240,147,34,.30);
}

.cuenta-top h3{
    font-size: 40px;
    color: var(--marron);
    margin-bottom: 5px;
}

.cuenta-top p{
    margin: 0;
    color: #555;
}

.cuenta-info-box{
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cuenta-item{
    background: #fff8ef;
    border-radius: 24px;
    padding: 20px 24px;

    border: 1px solid rgba(240,147,34,.15);
}

.cuenta-item span{
    display: block;
    font-size: 14px;
    color: var(--naranja);
    font-weight: 900;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cuenta-item strong{
    font-size: 24px;
    color: var(--marron);
    word-break: break-word;
}

.cuenta-footer{
    margin-top: 28px;

    background:
        linear-gradient(135deg,#fff6d8,#fff1cb);

    border-radius: 24px;

    padding: 20px;

    display: flex;
    gap: 16px;
    align-items: center;
}

.cuenta-footer i{
    font-size: 38px;
    color: var(--naranja);
}

.cuenta-footer p{
    margin: 0;
    color: #444;
    line-height: 1.7;
}

/* MOBILE */

@media(max-width:576px){

    .cuenta-box-modern{
        padding: 28px;
        border-radius: 28px;
    }

    .cuenta-top{
        flex-direction: column;
        align-items: flex-start;
    }

    .cuenta-top h3{
        font-size: 34px;
    }

    .cuenta-item strong{
        font-size: 20px;
    }

    .cuenta-footer{
        flex-direction: column;
        text-align: center;
    }
}


.aportes-info-card{
    margin-top: 28px;

    background: white;

    border-radius: 30px;

    padding: 28px;

    box-shadow: 0 18px 40px rgba(0,0,0,.06);

    display: flex;
    flex-direction: column;
    gap: 22px;
}

.aporte-info-item{
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.aporte-info-item i{
    width: 60px;
    height: 60px;

    border-radius: 18px;

    background:
        linear-gradient(135deg,var(--naranja),var(--amarillo));

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    font-size: 24px;

    box-shadow: 0 12px 25px rgba(240,147,34,.25);
}

.aporte-info-item h5{
    color: var(--marron);
    margin-bottom: 6px;
    font-size: 24px;
}

.aporte-info-item p{
    margin: 0;
    color: #555;
    line-height: 1.7;
}

/* MOBILE */

@media(max-width:576px){

    .aportes-info-card{
        padding: 24px;
        border-radius: 26px;
    }

    .aporte-info-item{
        flex-direction: column;
    }

    .aporte-info-item h5{
        font-size: 22px;
    }
}


.nosotros-main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: 0 25px 55px rgba(0,0,0,.12);
}

.nosotros-image-box {
    position: relative;
}

.floating-experience {
    position: absolute;
    left: 25px;
    bottom: 25px;
    background: white;
    padding: 18px 28px;
    border-radius: 22px;
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

.floating-experience h3 {
    color: #F09322;
    font-size: 38px;
    font-weight: 900;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-weight: 800;
}

.feature-item i {
    width: 42px;
    height: 42px;
    background: #FFF3D6;
    color: #F09322;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nosotros-card {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

.card-image img {
    width: 100%;
    height: 270px;
    object-fit: cover;
}

.card-content {
    padding: 32px;
}



.programas-section {
    padding: 110px 0;
    background: linear-gradient(to bottom, #fff, #fdf8f1);
}

.program-card {
    background: white;

    border-radius: 35px;

    overflow: hidden;

    height: 100%;

    box-shadow:
        0 20px 45px rgba(0,0,0,.08);

    transition: .35s;
}

.program-card:hover {
    transform: translateY(-10px);
}

.program-image {
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 260px;

    object-fit: cover;

    transition: .4s;
}

.program-card:hover .program-image img {
    transform: scale(1.08);
}

.program-body {
    padding: 35px;
}

.program-icon {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #FFF3D6;

    border-radius: 22px;

    margin-bottom: 20px;
}

.program-icon i {
    font-size: 32px;
    color: #F09322;
}

.program-age {
    display: inline-block;

    background: #f5f5f5;

    padding: 7px 15px;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 800;

    margin-bottom: 16px;
}

.program-body h3 {
    font-family: 'Patrick Hand', cursive;

    font-size: 42px;

    margin-bottom: 18px;

    color: #2B2B2B;
}

.program-body p {
    color: #666;

    line-height: 1.8;

    margin-bottom: 20px;
}

.program-body ul {
    padding-left: 18px;
}

.program-body ul li {
    margin-bottom: 10px;

    color: #555;

    font-weight: 700;
}

.horizontal-card .program-image img {
    height: 320px;
}

@media(max-width: 768px){

    .program-body h3{
        font-size: 34px;
    }

}


.actividades-section {
    padding: 110px 0;
    background: linear-gradient(to bottom, #fff, #fdf8f1);
}

.actividad-card {
    background: #fff;
    border-radius: 34px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 18px 42px rgba(0,0,0,.08);
    transition: .35s;
}

.actividad-card:hover {
    transform: translateY(-10px);
}

.actividad-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: .4s;
}

.actividad-card:hover img {
    transform: scale(1.08);
}

.actividad-content {
    padding: 32px;
}

.actividad-content i {
    width: 68px;
    height: 68px;
    background: #FFF3D6;
    color: #F09322;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.actividad-content h3 {
    font-family: 'Patrick Hand', cursive;
    font-size: 38px;
    color: #2B2B2B;
    margin-bottom: 15px;
}

.actividad-content p {
    color: #666;
    line-height: 1.8;
}

.actividades-banner {
    background: linear-gradient(135deg, #A75F2E, #F09322);
    color: white;
    border-radius: 36px;
    padding: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 20px 45px rgba(167,95,46,.25);
}

.actividades-banner span {
    background: #FFCD00;
    color: #2B2B2B;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 900;
}

.actividades-banner h2 {
    font-family: 'Patrick Hand', cursive;
    font-size: 50px;
    margin-top: 18px;
}

.actividades-banner p {
    font-size: 18px;
    margin-bottom: 0;
}

@media(max-width: 768px) {
    .actividades-banner {
        flex-direction: column;
        text-align: center;
    }

    .actividad-content h3 {
        font-size: 32px;
    }
}


.contact-section {
    padding: 110px 0;
    background: linear-gradient(to bottom, #fff, #fdf8f1);
}

.contact-form-card,
.contact-info-card {
    background: white;

    border-radius: 35px;

    padding: 45px;

    box-shadow:
        0 20px 45px rgba(0,0,0,.08);

    height: 100%;
}

.contact-form-card label {
    font-weight: 800;
    margin-bottom: 10px;
    color: #2B2B2B;
}

.contact-form-card .form-control {
    border-radius: 18px;
    padding: 16px 18px;
    border: 1px solid #ececec;
    font-size: 16px;
}

.contact-form-card .form-control:focus {
    box-shadow: none;
    border-color: #F09322;
}

.btn-contact {
    padding: 15px 30px;
    border-radius: 50px;
}

.btn-whatsapp-contact {
    background: #25D366;
    color: white;

    padding: 15px 28px;

    border-radius: 50px;

    font-weight: 800;

    margin-left: 10px;
}

.btn-whatsapp-contact:hover {
    color: white;
}

.contact-info-card h3 {
    font-family: 'Patrick Hand', cursive;
    font-size: 48px;
    margin: 18px 0;
}

.contact-info-card p {
    color: #666;
    line-height: 1.8;
}

.contact-info-list {
    margin-top: 35px;
}

.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-item i {
    width: 65px;
    height: 65px;

    background: #FFF3D6;

    border-radius: 20px;

    color: #F09322;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 26px;
}

.contact-item h5 {
    margin-bottom: 5px;
    font-weight: 900;
}

.contact-item span {
    color: #666;
    line-height: 1.7;
}

.social-contact {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-contact a {
    width: 55px;
    height: 55px;

    background: #FFF3D6;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #F09322;

    font-size: 22px;

    transition: .3s;
}

.social-contact a:hover {
    background: #F09322;
    color: white;
    transform: translateY(-6px);
}

.map-section {
    margin-top: 70px;
}

.map-card {
    border-radius: 35px;
    overflow: hidden;

    box-shadow:
        0 20px 45px rgba(0,0,0,.10);
}

.map-card iframe {
    width: 100%;
    height: 500px;
    border: 0;
}

@media(max-width:768px){

    .contact-form-card,
    .contact-info-card{
        padding:30px;
    }

    .btn-whatsapp-contact{
        margin-left:0;
        margin-top:15px;
    }

}


.impacto-section {
    padding: 110px 0;
    background: linear-gradient(to bottom, #fff, #fdf8f1);
}

.impact-card {
    background: white;
    border-radius: 35px;
    padding: 45px 30px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0,0,0,.08);
    transition: .35s;
}

.impact-card:hover {
    transform: translateY(-10px);
}

.impact-icon {
    width: 85px;
    height: 85px;

    margin: auto auto 25px;

    background: #FFF3D6;

    border-radius: 26px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.impact-icon i {
    font-size: 38px;
    color: #F09322;
}

.impact-card h3 {
    font-size: 58px;
    font-weight: 900;
    color: #2B2B2B;
}

.impact-card span {
    font-size: 18px;
    font-weight: 700;
    color: #666;
}

.impact-story {
    margin-top: 90px;
}

.impact-main-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 35px;
    box-shadow: 0 25px 55px rgba(0,0,0,.12);
}

.impact-image-box {
    position: relative;
}

.impact-floating-card {
    position: absolute;

    bottom: 30px;
    left: 30px;

    background: white;

    padding: 18px 24px;

    border-radius: 22px;

    display: flex;
    align-items: center;
    gap: 12px;

    box-shadow: 0 18px 40px rgba(0,0,0,.14);
}

.impact-floating-card i {
    color: #F09322;
    font-size: 24px;
}

.impact-content h2 {
    font-family: 'Patrick Hand', cursive;
    font-size: 60px;
    line-height: 1;
    margin-bottom: 25px;
}

.impact-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #666;
}

.impact-list {
    margin-top: 30px;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-weight: 800;
}

.impact-item i {
    width: 42px;
    height: 42px;
    background: #FFF3D6;
    color: #F09322;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.impact-testimonials {
    margin-top: 110px;
}

.testimonial-impact-card {
    background: white;
    border-radius: 35px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(0,0,0,.08);
    height: 100%;
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    margin: auto auto 20px;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-impact-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

.testimonial-impact-card h4 {
    margin-top: 20px;
    font-weight: 900;
    color: #2B2B2B;
}


.donar-hero {
    padding: 160px 0 100px;
    background:
        radial-gradient(circle at top left, rgba(255,205,0,.35), transparent 35%),
        linear-gradient(135deg, #fff, #fff7e8);
}

.donar-badge {
    display: inline-block;
    background: #FFCD00;
    color: #2B2B2B;
    padding: 9px 20px;
    border-radius: 50px;
    font-weight: 900;
    margin-bottom: 20px;
}

.donar-hero h1 {
    font-family: 'Patrick Hand', cursive;
    font-size: clamp(55px, 7vw, 90px);
    line-height: .95;
    color: #2B2B2B;
    margin-bottom: 25px;
}

.donar-hero p {
    font-size: 20px;
    line-height: 1.8;
    color: #666;
}

.donar-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.btn-outline-donar {
    border: 2px solid #A75F2E;
    color: #A75F2E;
    border-radius: 50px;
    padding: 13px 28px;
    font-weight: 900;
}

.donar-image-box {
    position: relative;
}

.donar-image-box img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 25px 60px rgba(0,0,0,.14);
}

.donar-floating {
    position: absolute;
    left: 30px;
    bottom: 30px;
    background: white;
    border-radius: 24px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 18px 40px rgba(0,0,0,.15);
}

.donar-floating i {
    width: 55px;
    height: 55px;
    background: #FFF3D6;
    color: #F09322;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.donar-floating strong {
    display: block;
    font-weight: 900;
}

.donar-floating span {
    color: #666;
    font-size: 14px;
}

.donar-section {
    padding: 110px 0;
    background: linear-gradient(to bottom, #fff, #fdf8f1);
}

.donar-option-card,
.why-donate-card {
    background: white;
    border-radius: 32px;
    padding: 35px 28px;
    height: 100%;
    text-align: center;
    box-shadow: 0 18px 42px rgba(0,0,0,.08);
    transition: .35s;
}

.donar-option-card:hover,
.why-donate-card:hover {
    transform: translateY(-10px);
}

.donar-option-card i,
.why-donate-card i {
    width: 72px;
    height: 72px;
    background: #FFF3D6;
    color: #F09322;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 22px;
}

.donar-option-card h4,
.why-donate-card h4 {
    font-weight: 900;
    color: #2B2B2B;
}

.donar-option-card p,
.why-donate-card p {
    color: #666;
    line-height: 1.7;
}

.donar-main-card {
    background: white;
    border-radius: 45px;
    padding: 55px;
    box-shadow:
        0 25px 65px rgba(0,0,0,.10),
        inset 0 0 0 2px rgba(255,205,0,.20);
}

.donar-main-card h2 {
    font-family: 'Patrick Hand', cursive;
    font-size: 62px;
    line-height: 1;
    color: #2B2B2B;
    margin-bottom: 24px;
}

.donar-main-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

.montos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.monto-btn {
    border: 2px solid #FFF3D6;
    background: #fffaf1;
    border-radius: 22px;
    padding: 22px;
    font-size: 24px;
    font-weight: 900;
    color: #A75F2E;
    transition: .3s;
}

.monto-btn:hover,
.monto-btn.active {
    background: linear-gradient(135deg, #F09322, #FFCD00);
    color: #2B2B2B;
    transform: translateY(-5px);
}

.trust-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #FFF3D6;
    padding: 18px 22px;
    border-radius: 22px;
    font-weight: 800;
    color: #2B2B2B;
}

.trust-box i {
    color: #F09322;
    font-size: 28px;
}

.bank-card {
    background: linear-gradient(135deg, #A75F2E, #F09322);
    color: white;
    border-radius: 38px;
    padding: 38px;
    box-shadow: 0 25px 55px rgba(167,95,46,.28);
}

.bank-header {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 28px;
}

.bank-header i {
    width: 65px;
    height: 65px;
    background: rgba(255,255,255,.20);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.bank-header h3 {
    margin: 0;
    font-weight: 900;
}

.bank-header p {
    margin: 0;
    color: rgba(255,255,255,.88);
}

.bank-data {
    display: grid;
    gap: 16px;
}

.bank-data div {
    background: rgba(255,255,255,.16);
    border-radius: 20px;
    padding: 16px 18px;
}

.bank-data span {
    display: block;
    font-size: 13px;
    opacity: .85;
}

.bank-data strong {
    font-size: 20px;
}

.qr-donar-box {
    background: white;
    color: #2B2B2B;
    border-radius: 28px;
    padding: 25px;
    margin-top: 28px;
    text-align: center;
}

.qr-placeholder {
    width: 190px;
    height: 190px;
    margin: 0 auto 15px;
    background: #F7F4EF;
    border: 3px dashed #F09322;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A75F2E;
    font-size: 42px;
    font-weight: 900;
}

.btn-whatsapp-donar {
    width: 100%;
    margin-top: 22px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    padding: 16px 24px;
    font-weight: 900;
}

.btn-whatsapp-donar:hover {
    color: white;
    transform: translateY(-3px);
}

@media(max-width: 768px) {
    .donar-main-card {
        padding: 30px;
        border-radius: 30px;
    }

    .donar-main-card h2 {
        font-size: 45px;
    }

    .donar-image-box img {
        height: 420px;
    }

    .montos-grid {
        grid-template-columns: 1fr;
    }
}
.donacion-info-box {
    margin-top: 35px;
}

.donacion-info-item {
    display: flex;
    gap: 18px;

    background: #fffaf1;

    border: 1px solid rgba(240,147,34,.10);

    padding: 20px 22px;

    border-radius: 24px;

    margin-bottom: 18px;
}

.donacion-info-item i {
    width: 58px;
    height: 58px;

    background: #FFF3D6;

    color: #F09322;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;

    flex-shrink: 0;
}

.donacion-info-item h5 {
    font-weight: 900;
    margin-bottom: 6px;
    color: #2B2B2B;
}

.donacion-info-item p {
    margin: 0;
    color: #666;
    line-height: 1.7;
}

.bank-message-box {
    background: white;

    color: #2B2B2B;

    border-radius: 28px;

    padding: 30px;

    margin-top: 28px;

    text-align: center;
}

.bank-message-box i {
    width: 75px;
    height: 75px;

    background: #FFF3D6;

    color: #F09322;

    border-radius: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 34px;

    margin: 0 auto 20px;
}

.bank-message-box h4 {
    font-weight: 900;
    margin-bottom: 14px;
}

.bank-message-box p {
    color: #666;
    line-height: 1.8;
}




.navbar-social {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-right: 18px;
}

.social-nav {
    width: 42px;
    height: 42px;

    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    font-size: 18px;

    text-decoration: none;

    transition: .3s;
}

.social-nav:hover {
    transform: translateY(-5px) scale(1.05);
    color: white;
}

.social-nav.facebook {
    background: #1877F2;
}

.social-nav.instagram {
    background: linear-gradient(
        135deg,
        #833AB4,
        #FD1D1D,
        #FCAF45
    );
}

.social-nav.tiktok {
    background: #111;
}

.social-nav.whatsapp {
    background: #25D366;
}




/* css */

.custom-navbar {
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    padding: 8px 0;
    box-shadow: 0 8px 28px rgba(0,0,0,.06);
    z-index: 999;
}

.nav-container {
    max-width: 1160px;
}

/* .brand-main img {
    width: 150px;
    height: auto;
    object-fit: contain;
} */

.nav-menu {
    gap: 8px;
}

.nav-link {
    font-size: 16px;
    font-weight: 900;
    color: #2B2B2B !important;
    padding: 10px 12px !important;
    border-radius: 14px;
    transition: .25s;
}

.nav-link:hover,
.nav-link.active {
    color: #A75F2E !important;
    background: #FFF3D6;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.navbar-social {
    display: flex;
    align-items: center;
    gap: 7px;
}

.social-nav {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    text-decoration: none;
    transition: .25s;
}

.social-nav:hover {
    transform: translateY(-4px);
    color: white;
}

.facebook { background: #1877F2; }
.instagram { background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45); }
.tiktok { background: #111; }
.whatsapp { background: #25D366; }

.btn-donar-navbar {
    background: linear-gradient(135deg, #F09322, #FFCD00);
    color: #2B2B2B;
    padding: 12px 22px;
    border-radius: 18px;
    font-weight: 950;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 12px 25px rgba(240,147,34,.28);
    transition: .25s;
    white-space: nowrap;
}

.btn-donar-navbar:hover {
    transform: translateY(-4px);
    color: #2B2B2B;
}

@media(max-width: 991px) {
    .brand-main img {
        width: 130px;
    }

    .nav-menu {
        margin-top: 20px;
        gap: 4px;
    }

    .nav-actions {
        margin-top: 15px;
        flex-direction: column;
        align-items: stretch;
    }

    .navbar-social {
        justify-content: center;
    }

    .btn-donar-navbar {
        justify-content: center;
        width: 100%;
    }
}



.footer-title {
    font-weight: 900;
    margin-bottom: 18px;
    color: #fff;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social-icon {
    width: 48px;
    height: 48px;

    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    font-size: 20px;

    text-decoration: none;

    transition: .3s;
}

.footer-social-icon:hover {
    transform: translateY(-6px);
    color: white;
}

.footer-social-icon.facebook {
    background: #1877F2;
}

.footer-social-icon.instagram {
    background: linear-gradient(
        135deg,
        #833AB4,
        #FD1D1D,
        #FCAF45
    );
}

.footer-social-icon.tiktok {
    background: #111;
}

.footer-social-icon.whatsapp {
    background: #25D366;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white !important;
    font-size: 17px;
    text-decoration: none;

    transition: .3s;
}

.footer-social-icon i {
    color: white !important;
    margin: 2PX;
}

.footer-social-icon:hover {
    transform: translateY(-4px);
}