*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
    color:#1b1b1b;
    overflow-x:hidden;
}

/* NAVBAR */

.navbar{
    width:100%;
    padding:18px 7%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    background:rgba(9,20,40,0.88);
    backdrop-filter:blur(12px);
}

.logo-container{
    display:flex;
    align-items:center;
    gap:12px;
}

.nav-logo{
    width:60px;
}

.logo-text{
    color:#fff;
    font-weight:700;
    font-size:1.2rem;
}

.logo-text span{
    color:#c5a059;
}



/* HERO */

.hero-actividades{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:120px 8%;
    background:
    linear-gradient(rgba(5,10,25,.75),rgba(5,10,25,.8)),
    url('actividad_banner.jpg') center/cover no-repeat;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:radial-gradient(circle at top right,
    rgba(0,194,255,.3),
    transparent 35%);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:850px;
    text-align:center;
    color:white;
    animation:fadeUp 1.2s ease;
}

.mini-title{
    letter-spacing:4px;
    margin-bottom:15px;
    color:#c5a059;
}

.hero-content h1{
    font-size:4.5rem;
    line-height:1.1;
    margin-bottom:25px;
    font-family:'Playfair Display',serif;
}

.hero-content h1 span{
    color:#c5a059;
}

.hero-content p{
    font-size:1.1rem;
    line-height:1.8;
    margin-bottom:35px;
    opacity:0.92;
}

.hero-buttons{
    display:flex;
    gap:20px;
    justify-content:center;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
}

.btn-primary{
    background:#c5a059;
    color:white;
}

.btn-primary:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(0,194,255,.4);
}

.btn-secondary{
    border:2px solid white;
    color:white;
}

.btn-secondary:hover{
    background:white;
    color:#091428;
}

/* STATS */

.stats-section{
    margin-top:-70px;
    position:relative;
    z-index:20;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    padding:0 8%;
}

.stat-card{
    background:white;
    border-radius:25px;
    padding:35px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
}

.stat-card:hover{
    transform:translateY(-12px);
}

.stat-card i{
    font-size:2rem;
    color:#e6b925;
    margin-bottom:18px;
}

.stat-card h2{
    font-size:2.5rem;
    margin-bottom:10px;
    color: #e6b925;
}

/* TITULOS */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title p{
    color:#c5a059;
    font-weight:600;
    letter-spacing:3px;
    margin-bottom:10px;
}

.section-title h2{
    font-size:3rem;
    font-family:'Playfair Display',serif;
}

/* GALERIA */

.gallery-section{
    padding:120px 8%;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    grid-auto-rows:280px;
    gap:25px;
}

.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:28px;
    cursor:pointer;
}

.gallery-card.large{
    grid-column:span 2;
    grid-row:span 2;
}

.gallery-card.wide{
    grid-column:span 2;
}

.gallery-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s;
}

.gallery-card:hover img{
    transform:scale(1.12);
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,.8),
    transparent);
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:30px;
    color:rgb(248, 247, 247);
    opacity:0;
    transition:.5s;
}

.gallery-card:hover .gallery-overlay{
    opacity:1;
}

/* VIDEOS */

.video-section{
    padding:120px 8%;
    background:#091428;
}

.video-section .section-title h2,
.video-section .section-title p{
    color:white;
}

.video-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:35px;
}

.video-card{
    background:white;
    border-radius:28px;
    overflow:hidden;
    transition:.4s;
    color: #040a44;
}

.video-card:hover{
    transform:translateY(-10px);
}

.video-card video{
    width:100%;
    height:280px;
    object-fit:cover;
}

.video-info{
    padding:25px;
}

/* TIMELINE */

.timeline-section{
    padding:120px 8%;
}

.timeline{
    display:flex;
    flex-direction:column;
    gap:35px;
    max-width:850px;
    margin:auto;
}

.timeline-item{
    display:flex;
    gap:25px;
    align-items:flex-start;
    background:white;
    padding:30px;
    border-radius:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.4s;
    color: #040a44;
}

.timeline-item:hover{
    transform:translateX(10px);
}

.timeline-icon{
    min-width:70px;
    height:70px;
    border-radius:50%;
    background:#c5a059;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:1.5rem;
}

/* FOOTER */

.contact{
    background:#07111f;
    color:white;
    padding:70px 8% 30px;
}

.contact-container{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:50px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.profile-pic{
    width:180px;
}

.contact-text h2{
    font-size:2rem;
    margin-bottom:15px;
}

.role{
    color:#eef3f5;
    margin-bottom:20px;
}

.contact-info p{
    margin-bottom:10px;
}

.copy{
    text-align:center;
    opacity:0.7;
}

/* WHATSAPP */

.whatsapp-btn{
    position:fixed;
    bottom:25px;
    right:25px;
    width:70px;
    height:70px;
    background:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 10px 30px rgba(0,0,0,.2);
    z-index:999;
    transition:.4s;
}

.whatsapp-btn:hover{
    transform:scale(1.1);
}

.whatsapp-btn img{
    width:40px;
}
.stat-card p{
    color:#040a44;
}

/* ANIMACIONES */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* RESPONSIVE */

@media(max-width:992px){

    .hero-content h1{
        font-size:3rem;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-card.large,
    .gallery-card.wide{
        grid-column:span 1;
        grid-row:span 1;
    }

  
}

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:15px;
    }

    .hero-content h1{
        font-size:2.4rem;
    }

    .section-title h2{
        font-size:2rem;
    }

    .stats-section{
        margin-top:40px;
    }
}