/* =========================================================
                        STYLE.CSS COMPLETO
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f5f5;
    color:#111;
    overflow-x:hidden;
}

/* =========================================================
                        NAVBAR
========================================================= */

.nav-container{
    position:absolute;
    width:100%;
    z-index:999;
    padding-top:20px;
}

.navbar{
    background:#fff;
    border-radius:22px;
    padding:15px 35px;

    box-shadow:
    0 10px 35px rgba(0,0,0,.08);
}

.logo-sc{
    width:85px;
}

.nav-link{
    color:#111 !important;
    font-weight:600;
    margin-left:18px;
    transition:.3s ease;
    position:relative;
}

.nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-4px;

    width:0%;
    height:2px;

    background:#1a7a42;

    transition:.3s;
}

.nav-link:hover{
    color:#1a7a42 !important;
}

.nav-link:hover::after{
    width:100%;
}

/* =========================================================
                        HERO
========================================================= */

.hero{
    width:100%;
    height:100vh;

    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("IMGENES/carrusel-1.jpg");

    background-position:center;
    background-size:cover;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    position:relative;
}

.hero-content{
    z-index:2;
    color:#fff;
    padding:20px;
}

.hero-content h1{
    font-size:95px;
    font-weight:800;

    margin-bottom:20px;

    animation:fadeUp 1s ease;
}

.hero-content p{
    font-size:22px;
    max-width:800px;
    margin:auto;

    line-height:1.8;

    animation:fadeUp 1.4s ease;
}

.hero-btn{
    display:inline-block;

    margin-top:35px;

    padding:15px 40px;

    background:#1a7a42;
    color:#fff;

    border-radius:60px;

    text-decoration:none;

    font-weight:700;

    transition:.3s ease;

    animation:fadeUp 1.8s ease;
}

.hero-btn:hover{
    background:#145d32;
    transform:translateY(-5px);
    color:#fff;
}

/* =========================================================
                        ANIMACION
========================================================= */

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* =========================================================
                        STATS
========================================================= */

.stats-section{
    padding:90px 0;
}

.stats-box{
    background:#fff;

    border-radius:28px;

    padding:50px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:30px;

    flex-wrap:wrap;

    box-shadow:
    0 10px 35px rgba(0,0,0,.08);
}

.stat-item{
    flex:1;
    text-align:center;
}

.stat-item h2{
    font-size:65px;
    font-weight:800;
    color:#1a7a42;
}

.stat-item p{
    font-size:13px;
    letter-spacing:4px;
    color:#666;
    margin-top:10px;
}

/* =========================================================
                        ABOUT
========================================================= */

.about-section{
    padding:120px 0;
}

.about-img{
    width:100%;
    height:650px;

    object-fit:cover;

    border-radius:28px;

    box-shadow:
    0 15px 35px rgba(0,0,0,.12);
}

.about-content{
    padding:20px 10px 20px 40px;
}

.about-content h2{
    font-size:48px;
    font-weight:800;

    margin-bottom:25px;

    line-height:1.2;
}

.about-content p{
    font-size:16px;
    line-height:2;
    color:#555;

    margin-bottom:20px;
}

.about-gallery{
    display:flex;
    gap:18px;
    margin-top:35px;
}

.about-gallery img{
    width:50%;
    height:230px;

    object-fit:cover;

    border-radius:20px;

    transition:.4s ease;
}

.about-gallery img:hover{
    transform:translateY(-8px);
}

/* =========================================================
                        SERVICES
========================================================= */

.services-section{
    width:100%;

    background:#fff;

    padding:120px 20px;

    display:flex;
    justify-content:center;
    align-items:stretch;

    gap:30px;

    flex-wrap:wrap;
}

.service-card{
    width:330px;

    background:#f8f8f8;

    border-radius:28px;

    padding:45px 35px;

    text-align:center;

    transition:.4s ease;

    box-shadow:
    0 8px 25px rgba(0,0,0,.05);
}

.service-card:hover{
    transform:translateY(-12px);

    box-shadow:
    0 18px 40px rgba(0,0,0,.12);
}

.service-card img{
    width:130px;
    height:130px;

    object-fit:contain;

    margin-bottom:25px;
}

.service-card h3{
    font-size:24px;
    font-weight:800;

    margin-bottom:20px;
}

.service-card p{
    color:#555;
    line-height:2;
    font-size:15px;
}

/* =========================================================
                        SECTION TITLE
========================================================= */

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:55px;
    font-weight:800;
}

.section-title p{
    color:#1a7a42;

    font-size:14px;
    font-weight:700;

    letter-spacing:5px;

    margin-top:10px;
}

/* =========================================================
                        REWARDS
========================================================= */

.rewards-section{
    padding:120px 0;
}

.reward-card{
    position:relative;

    width:100%;
    height:460px;

    overflow:hidden;

    border-radius:28px;

    background:#fff;

    box-shadow:
    0 12px 35px rgba(0,0,0,.08);

    cursor:pointer;

    transition:.4s ease;
}

.reward-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 22px 45px rgba(0,0,0,.15);
}

.reward-card img{
    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center;

    transition:.7s ease;
}

.reward-card:hover img{
    transform:scale(1.08);
}

.reward-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.88),
        rgba(0,0,0,.15)
    );

    display:flex;
    justify-content:center;
    align-items:center;

    opacity:0;

    transition:.4s ease;
}

.reward-card:hover .reward-overlay{
    opacity:1;
}

.reward-overlay span{
    background:#1a7a42;

    color:#fff;

    padding:15px 38px;

    border-radius:60px;

    font-size:20px;
    font-weight:800;

    letter-spacing:2px;
}

/* =========================================================
                        TEAM
========================================================= */

.team-section{
    padding:120px 0;
    background:#fff;
}

.team-card{
    position:relative;

    background:#fff;

    border-radius:30px;

    overflow:hidden;

    transition:.45s ease;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    cursor:pointer;
}

.team-card:hover{
    transform:translateY(-12px);

    box-shadow:
    0 20px 45px rgba(0,0,0,.16);
}

.team-card img{
    width:100%;
    height:430px;

    object-fit:cover;
    object-position:center top;

    transition:.6s ease;
}

.team-card:hover img{
    transform:scale(1.06);
}

.team-info{
    position:absolute;

    left:0;
    bottom:-100%;

    width:100%;

    padding:40px 25px;

    text-align:center;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.96),
        rgba(0,0,0,.72),
        transparent
    );

    color:#fff;

    transition:.5s ease;
}

.team-card:hover .team-info{
    bottom:0;
}

.team-info h4{
    font-size:34px;
    font-weight:800;

    margin-bottom:12px;

    line-height:1.1;
}

.team-info p{
    font-size:17px;
    color:#d1d5db;
}

/* =========================================================
                    FOOTER MINIMALISTA
========================================================= */

.footer{
    width:100%;

    background:#0f172a;

    padding:90px 20px 40px;

    text-align:center;

    color:#fff;
}

/* TOP */

.footer-top h1{
    font-size:72px;
    font-weight:800;

    letter-spacing:2px;

    margin-bottom:15px;
}

.footer-top p{
    color:#cbd5e1;

    font-size:16px;

    letter-spacing:1px;

    margin-bottom:45px;
}

/* LINKS */

.footer-links{
    display:flex;
    justify-content:center;
    align-items:center;

    gap:35px;

    flex-wrap:wrap;

    margin-bottom:45px;
}

.footer-links a{
    color:#cbd5e1;

    text-decoration:none;

    font-size:15px;
    font-weight:500;

    transition:.3s ease;
}

.footer-links a:hover{
    color:#22c55e;
}

/* SOCIAL */

.footer-social{
    display:flex;
    justify-content:center;
    align-items:center;

    gap:18px;

    margin-bottom:45px;
}

.footer-social a{
    width:52px;
    height:52px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    text-decoration:none;

    background:#1a7a42;
    color:#fff;

    font-size:18px;

    transition:.3s ease;
}

.footer-social a:hover{
    transform:translateY(-5px);

    background:#145d32;
}

/* DIVIDER */

.footer-divider{
    width:100%;
    max-width:700px;

    height:1px;

    background:rgba(255,255,255,.08);

    margin:0 auto 30px;
}

/* COPYRIGHT */

.footer-copy p{
    color:#94a3b8;

    font-size:14px;

    letter-spacing:.5px;
}

/* =========================================================
                        RESPONSIVE
========================================================= */

@media(max-width:1200px){

    .hero-content h1{
        font-size:75px;
    }

    .about-content h2{
        font-size:42px;
    }

}

@media(max-width:991px){

    .hero{
        height:90vh;
    }

    .hero-content h1{
        font-size:58px;
    }

    .hero-content p{
        font-size:18px;
    }

    .stats-box{
        flex-direction:column;
    }

    .about-img{
        height:500px;
        margin-bottom:40px;
    }

    .about-content{
        padding:10px;
    }

    .about-gallery{
        flex-direction:column;
    }

    .about-gallery img{
        width:100%;
    }

    .team-card img{
        height:360px;
    }

    .team-info h4{
        font-size:28px;
    }

    .reward-card{
        height:360px;
    }

    .footer-top h1{
        font-size:48px;
    }

}

@media(max-width:575px){

    .navbar{
        padding:12px 18px;
    }

    .hero-content h1{
        font-size:45px;
    }

    .hero-content p{
        font-size:16px;
    }

    .section-title h2{
        font-size:38px;
    }

    .about-content h2{
        font-size:34px;
    }

    .service-card{
        width:100%;
    }

    .reward-card{
        height:300px;
    }

    .team-card img{
        height:320px;
    }

    .team-info h4{
        font-size:24px;
    }

    .footer{
        padding:70px 20px 35px;
    }

    .footer-links{
        gap:20px;
    }

    .footer-social a{
        width:48px;
        height:48px;
    }

}
/* =========================================================
                    RECOMPENSAS MEJORADAS
========================================================= */

.rewards-section{
    padding:120px 0;
}

/* GRID */
.rewards-section .row{
    row-gap:35px;
}

/* CARD */
.reward-card{
    position:relative;

    width:100%;
    height:320px;

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    transition:.4s ease;

    cursor:pointer;
}

/* HOVER CARD */
.reward-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 22px 45px rgba(0,0,0,.15);
}

/* IMAGEN */
.reward-card img{
    width:85%;
    height:auto;

    object-fit:contain;

    transition:.5s ease;
}

/* ZOOM */
.reward-card:hover img{
    transform:scale(1.06);
}

/* OVERLAY */
.reward-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.70),
        rgba(0,0,0,.15)
    );

    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:center;

    opacity:0;

    transition:.4s ease;

    padding:20px;

    text-align:center;
}

/* APARECE */
.reward-card:hover .reward-overlay{
    opacity:1;
}

/* TEXTO */
.reward-overlay p{
    color:#fff;

    font-size:18px;

    line-height:1.7;

    margin-bottom:22px;

    max-width:260px;
}

/* PUNTOS */
.reward-overlay span{
    background:#1a7a42;

    color:#fff;

    padding:14px 34px;

    border-radius:60px;

    font-size:18px;
    font-weight:800;

    letter-spacing:1px;

    box-shadow:
    0 10px 20px rgba(26,122,66,.35);
}

/* =========================================================
                    RESPONSIVE
========================================================= */

@media(max-width:991px){

    .reward-card{
        height:290px;
    }

}

@media(max-width:575px){

    .reward-card{
        height:250px;
    }

    .reward-overlay p{
        font-size:15px;
    }

    .reward-overlay span{
        font-size:16px;
        padding:12px 28px;
    }

}