/* ------------------- GENERAL ------------------- */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f3f3f3;
}

/* ------------------- NAVBAR ------------------- */
.navbar {
    background: #222;
    color: white;
    padding: 12px 20px;
    position: relative;
}

.hamburger {
    font-size: 26px;
    cursor: pointer;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
    display: none;
    background: #333;
}

.nav-links li {
    border-top: 1px solid #444;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    display: block;
    padding: 12px 20px;
}

.nav-links.show {
    display: block;
}

/* ------------------- HERO ------------------- */
.hero {
    width: 100%;
    height: 350px;
    background-image: url("jet.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    color: white;
    font-size: 38px;
    text-shadow: 0 0 10px black;
    padding: 10px;
}

/* ------------------- CONTENIDO ------------------- */
.contenedor {
    width: 90%;
    max-width: 900px;
    margin: auto;
    padding: 20px 0;
    text-align: center;
}

.descripcion {
    font-size: 18px;
}

/* ------------------- BOTONES ------------------- */
.botonera {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 30px 0;
}

.boton {
    display: block;
    background: #0077ff;
    color: white;
    padding: 12px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    transition: 0.3s;
}

.boton:hover {
    background: #005bbb;
}

/* ------------------- FOOTER ------------------- */
footer {
    background: #222;
    color: white;
    padding: 20px;
    text-align: center;
}

/* ------------------- RESPONSIVE ------------------- */
@media (min-width: 700px) {
    .nav-links {
        display: flex;
        position: static;
        background: none;
        margin: 0;
    }

    .nav-links li {
        border: none;
    }

    .nav-links li a {
        padding: 10px 20px;
    }

    .hamburger {
        display: none;
    }
}