/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #fff;
    color: #000;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    background: #fff;
    position: relative;
    z-index: 2000;
}

.logo img {
    width: 90px;
}

/* MENÚ */
.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li a {
    color: #000;
    text-decoration: none;
    margin-left: 18px;
    font-weight: bold;
    font-size: 15px;
}

/* ICONO MENU */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    z-index: 2100;
    color: #000;
}

/* HERO */
.hero {
    position: relative;
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
}

.hero-text h1 {
    font-size: 2.7rem;
}

.line1 {
    color: #fff;
}

.line2 {
    color: #00eaff;
}

.content {
    padding: 40px 20px;
    text-align: center;
    flex: 1;
}

.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    border: 1px solid #ddd;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
}

footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 15px;
}

/* 🔥 MANTENIMIENTO */
#maintenance {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.maintenance-box {
    text-align: center;
    color: #fff;
}

.maintenance-box h1 {
    font-size: 2.5rem;
    color: #00eaff;
}

.maintenance-box p {
    color: #ccc;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -260px;
        width: 260px;
        height: 100vh;
        background: red;
        flex-direction: column;
        padding-top: 60px;
        transition: 0.4s;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li a {
        color: white;
        font-size: 20px;
    }
}