/* Style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fff;
}

/* NAVBAR */

.navbar-section {
    background: linear-gradient(135deg, #000000 0%, #0f2066 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

.logo a:hover {
    color: #0dd30e;
}

.list {
    display: flex;
    list-style: none;
}

.nav-link {
    margin-left: 15px;
}

.nav-link a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: 0.3s;
}

.nav-link a:hover {
    background: rgba(13, 211, 14, 0.1);
    color: #0dd30e;
}

/* HERO */

.hero-section {
    width: 100%;
}

.hero-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* FOOTER */

.footer-section {
    background: linear-gradient(135deg, #000000 0%, #0f2066 100%);
    color: white;
    padding: 30px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-social,
.footer-legal {
    text-align: center;
}

.footer-social h3 {
    margin-bottom: 15px;
    color: #0dd30e;
}

.footer-legal p,
.footer-legal a {
    color: white;
    text-decoration: none;
}

.footer-legal a:hover {
    color: #0dd30e;
}

/* RESPONSIVE */

/* Tablets */
@media (max-width: 1024px) {
    .hero-image {
        height: 70vh;
    }

    .navbar-container {
        padding: 0 15px;
    }
}

/* Móviles horizontales / tablets pequeñas */
@media (max-width: 768px) {

    .navbar-container {
        flex-direction: column;
        gap: 15px;
    }

    .logo a {
        font-size: 22px;
    }

    .list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    .nav-link {
        margin: 0 8px;
    }

    .nav-link a {
        padding: 8px 12px;
        font-size: 14px;
    }

    .hero-image {
        height: 50vh;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }

    .footer-social,
    .footer-legal {
        width: 100%;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {

    .logo a {
        font-size: 18px;
    }

    .nav-link a {
        padding: 6px 10px;
        font-size: 13px;
    }

    .hero-image {
        height: 75vh;
        object-position: center;
    }

    .footer-section {
        padding: 20px 15px;
    }

    .footer-legal p,
    .footer-legal a {
        font-size: 13px;
    }
}