/* =========================================
   HERO
========================================= */

.hero{

    min-height:100vh;

    background:linear-gradient(
        135deg,
        #CAE3C8,
        #B8D8B5
    );

    display:flex;

    align-items:center;

    padding-top:200px;
    padding-bottom:120px;

}

.hero-content{

    max-width:1200px;

    width:100%;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;
    min-height:calc(100vh - 120px);

}

.hero-text{

    display:flex;

    flex-direction:column;

    justify-content:center;

    color:#2F4F2F;

}

.hero-tag{

    display:inline-block;

    background:rgba(255,255,255,.15);

    color:#2F4F2F;
}

.hero-buttons{

    display:flex;

    gap:20px;

}

.hero-logo{

    text-align:center;

}

.hero-logo img{

    width:320px;

    max-width:100%;

}

.hero h1{

    display:block;

    color:#2F4F2F;

    font-size:4rem;

    line-height:1.1;

    margin-bottom:25px;

}

.hero p{

    display:block;

    color:#2F4F2F;

    font-size:1.2rem;

    line-height:1.8;

    margin-bottom:30px;

}

/* =========================================
   TARJETAS DE NAVEGACIÓN
========================================= */

.quick-links{

    padding:80px 0;

}

.section-header{

    text-align:center;

    margin-bottom:50px;

}

.section-header h2{

    font-size:2.5rem;

    color:#CAE3C8;

    margin-bottom:15px;

}

.section-header p{

    max-width:700px;

    margin:auto;

}

.cards-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));

    gap:25px;

}

.info-card{

    background:#ffffff;

    padding:30px;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

    text-decoration:none;

}

.info-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.info-card h3{

    color:#CAE3C8;

    margin-bottom:12px;

}

.info-card p{

    color:#555;

    margin:0;

}

/* =========================================
   FOOTER
========================================= */

.footer{

    background:#CAE3C8;

    color:#2F4F2F;

    margin-top:80px;

}

.footer-content{

    display:grid;

    grid-template-columns:
        2fr
        1fr
        1fr;

    gap:40px;

    padding:60px 0;

}

.footer-brand img{

    width:90px;

    margin-bottom:20px;

}

.footer-brand h3{

    font-size:1.1rem;

    line-height:1.5;

    color:#2F4F2F;

}

.footer h4{

    margin-bottom:20px;

    color:#d4af37;

}

.footer ul{

    list-style:none;

    padding:0;

}

.footer li{

    margin-bottom:10px;

}

.footer a{

    color:#2F4F2F;

    text-decoration:none;

}

.footer a:hover{

    color:#d4af37;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.15);

    text-align:center;

    padding:20px;

}

.footer-info p{
    color:#2F4F2F;
    opacity:.85;
}

/* =========================================
   BIENVENIDA
========================================= */

.welcome{

    padding:90px 0;

}

.welcome-content{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:60px;

    align-items:center;

}

.welcome-text p{

    margin-bottom:20px;

    font-size:1.1rem;

    line-height:1.8;

}

.welcome-logo{

    text-align:center;

}

.welcome-logo img{

    width:220px;

    max-width:100%;

}

/* =========================================
   PAGINAS INTERNAS
========================================= */



.page-hero{

    margin-top:100px;

}

.content-section{

    background:#2F4F2F;

}

.content-section .container{

    max-width:1300px;

}

.content-section p{
    line-height: 2;
    margin-bottom: 35px;
    text-align: justify;
}

.section-title{
    position: relative;
    margin-top: 80px;
    margin-bottom: 60px;
    padding-top: 40px;
}

.section-title::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-20px;
    width:220px;
    height:5px;
    background:#d4af37;
}

.content-section h2{

    border-left:5px solid #d4af37;

    padding-left:15px;

}

.contact-form{
    max-width:700px;
    margin-top:30px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:1px solid #dcdcdc;
    border-radius:10px;
    font-size:1rem;
}

.contact-form textarea{
    resize:vertical;
}

.contact-form button{
    border:none;
    cursor:pointer;
}

.styled-list{
padding-left:30px;
margin:20px 0;
}

.styled-list li{
margin-bottom:10px;
line-height:1.8;
}

.projects-accordion{
    margin-top:40px;
}

.project-item{
    margin-bottom:20px;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.project-header{
    background:#CAE3C8;
    color:#2F4F2F;
    padding:25px;
    font-size:1.2rem;
    font-weight:700;
    cursor:pointer;
}
.project-content p{
    margin-bottom:20px;
}
.project-content{
    display:none;
    background:#fff;
    padding:30px;
    line-height:1.9;
}

.project-content.active{
    display:block;
}

.project-content strong{
    display:block;
    margin-top:50px;
    text-align:center;
    max-width:350px;
    margin-left:auto;
    line-height:1.8;
}

blockquote{
    background:#f5f5f5;
    border-left:5px solid #d4af37;
    padding:20px;
    margin:25px 0;
    font-style:italic;
}



.areas-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
margin:30px 0;
}

.area-card{
background:#ffffff;
border-radius:15px;
padding:30px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
transition:all .3s ease;
}

.area-card:hover{
transform:translateY(-5px);
}

.area-card h4{
color:#CAE3C8;
margin-bottom:20px;
font-size:1.2rem;

}

.area-card ul{
padding-left:20px;
}

.area-card li{
margin-bottom:10px;
line-height:1.7;
}

.donation-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin:25px 0;
}

.donation-card{
background:#CAE3C8;
color:white;
padding:25px;
border-radius:15px;
text-align:center;
box-shadow:0 5px 15px rgba(0,0,0,.10);
}

.donation-card h5{
margin:0;
color:white;
}

.documents-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-top:40px;
}

.document-card{
    background:#fff;
    border-radius:15px;
    padding:30px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    text-align:center;
    transition:.3s;
}

.document-card:hover{
    transform:translateY(-5px);
}

.document-card h4{
    color:#CAE3C8;
    margin-bottom:15px;
}

.document-card p{
    margin-bottom:20px;
}

.document-card .btn{
    display:inline-block;
    background:#CAE3C8;
    color:#fff;
    padding:12px 20px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.document-card .btn:hover{
    background:#D4AF37;
}

main .content-section:first-child{
    padding-top: 180px;
}

.section-title h2{
    font-size: 4rem;
    color: #153f75;
    font-weight: 800;
    margin-left: 60px;
    line-height: 1.1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}



.section-title::before{
    content:"";
    position:absolute;
    left:0;
    top:40px;
    width:6px;
    height:90px;
    background:#d4af37;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin-top:40px;
}

.contact-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.contact-card:hover{
    transform:translateY(-5px);
}

.contact-card h3{
    color:#2F4F2F;
    margin-bottom:25px;
    font-size:2rem;
}

.phone-item{
    margin-bottom:25px;
}

.phone-item strong{
    display:block;
    margin-bottom:8px;
    color:#2F4F2F;
}

.phone-item a,
.email-link{
    color:#184785;
    text-decoration:none;
    font-size:1.1rem;
    font-weight:600;
}

.phone-item a:hover,
.email-link:hover{
    color:#D4AF37;
}