body {
    overflow-x: hidden;
    background: #fff;
    color: #222;
}

/* NAVBAR */
.navbar {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0,0,0,0.7);
    color: white;
    z-index: 1000;
    transition: 0.3s;
}

.navbar.scrolled {
    background: #000;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: gold;
}

.navbar nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.navbar nav a:hover {
    color: gold;
}

/* HERO */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('https://scontent.fuio1-2.fna.fbcdn.net/v/t39.30808-6/485380643_679914874596895_5258580508338368719_n.jpg?stp=cp6_dst-jpg_tt6&_nc_cat=107&ccb=1-7&_nc_sid=2a1932&_nc_eui2=AeG06tsZamATDODtR3qv4FoVJFWhEvqeNJMkVaES-p40k6J0gdh9sibQYCqbcvDaztOUdRME7t0uE2rR665ev4H2&_nc_ohc=5bRda1D7Il8Q7kNvwF6E-P0&_nc_oc=AdqNVAaSTthLQff3JgzEZ7kpV9vVQIELIVF_Av5uKr9wJhMUiTFuuUjCUav2vZjEdl0DrbpLp4iZwKah8XSzYghc&_nc_zt=23&_nc_ht=scontent.fuio1-2.fna&_nc_gid=zIC3EIQ7m8qU1Za-Eh7NRg&_nc_ss=7a3a8&oh=00_Af3r1HYsFZX_wXhl-aLHvXS-NasXiqUMwphJ2VEb_6u9gQ&oe=69DD1D87') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 10%;
    color: white;
}

.hero-content {
    max-width: 650px;
}

.subtitle,
.section-subtitle {
    color: gold;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 14px;
}

.hero h1 {
    font-size: 60px;
    margin: 20px 0;
    line-height: 1.1;
}

.hero p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* BOTONES */
.buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    background: gold;
    color: black;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid white;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline:hover {
    background: white;
    color: black;
}

/* SECCIONES */
.section {
    padding: 100px 10%;
}

.section h2 {
    font-size: 42px;
    margin: 15px 0 25px;
}

.section p {
    line-height: 1.8;
    color: #555;
}

/* SOBRE NOSOTROS */
.about-section {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-boxes {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    min-width: 300px;
}

.info-box {
    background: #f5f5f5;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.info-box h3 {
    margin-bottom: 15px;
    color: #0b1c3d;
}

/* ESTADÍSTICAS */
.stats-section {
    background: #0b1c3d;
    color: white;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 80px 10%;
}

.stat-box {
    text-align: center;
}

.stat-box h2 {
    color: gold;
    font-size: 50px;
    margin-bottom: 10px;
}

.stat-box p {
    color: white;
}

/* TARJETAS */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.card {
    background: #f5f5f5;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.card:hover {
    transform: translateY(-10px);
}

.card i {
    font-size: 40px;
    color: gold;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
    color: #0b1c3d;
}

/* SECCIÓN OSCURA */
.dark {
    background: #0b1c3d;
    color: white;
}

.dark h2,
.dark h3,
.dark p {
    color: white;
}

.dark .card {
    background: rgba(255,255,255,0.08);
}

/* GALERÍA */
.gallery-section {
    background: #f5f5f5;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 20px;
    transition: 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* CONTACTO */
.contact {
    text-align: center;
}

.contact p {
    margin-bottom: 10px;
}

/* FOOTER */
footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 25px;
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
    z-index: 1000;
    transition: 0.3s;
}

.whatsapp:hover {
    transform: scale(1.1);
}

/* ANIMACIONES */
.hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 20px;
    }

    .navbar nav {
        margin-top: 15px;
    }

    .hero {
        text-align: center;
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .buttons {
        justify-content: center;
    }

    .about-section {
        flex-direction: column;
    }

    .stats-section {
        flex-direction: column;
    }
}
