* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow: hidden;
    min-height: 100vh;
    position: relative;
}

.video-fondo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.imagen-centro {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.imagen-centro img {
    width: 200px;
    height: auto;
    filter: drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.4));
}

.text {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 20px;
    margin-top: 2em;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.svg-movil {
    position: fixed;
    bottom: 80px;
    left: -100px;
    width: 80px;
    height: auto;
    z-index: 1;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo {
    height: 120px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.menu-hamburguesa {
    width: 35px;
    height: 30px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
}

.linea {
    width: 100%;
    height: 3px;
    background: rgb(255, 255, 255);
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.menu-hamburguesa.activo .linea:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.menu-hamburguesa.activo .linea:nth-child(2) {
    opacity: 0;
}

.menu-hamburguesa.activo .linea:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -10px);
}

.menu-desplegable {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(20px);
    padding: 100px 50px;
    padding-top: 180px;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 999;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
}

.menu-desplegable.activo {
    right: 0;
}

.menu-desplegable ul {
    list-style: none;
}

.menu-desplegable li {
    margin: 30px 0;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
}

.menu-desplegable.activo li {
    opacity: 1;
    transform: translateX(0);
}

.menu-desplegable.activo li:nth-child(1) { transition-delay: 0.1s; }
.menu-desplegable.activo li:nth-child(2) { transition-delay: 0.2s; }
.menu-desplegable.activo li:nth-child(3) { transition-delay: 0.3s; }
.menu-desplegable.activo li:nth-child(4) { transition-delay: 0.4s; }
.menu-desplegable.activo li:nth-child(5) { transition-delay: 0.5s; }
.menu-desplegable.activo li:nth-child(6) { transition-delay: 0.6s; }

.menu-desplegable a {
    text-decoration: none;
    color: #ffffff;
    font-size: 28px;
    font-weight: semi-bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    font-family: 'Arial', sans-serif;
}

.menu-desplegable a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd813,#c96100);
    transition: width 0.3s ease;
}

.menu-desplegable a:hover {
    color: #ffffff;
    transform: translateX(10px);
}

.menu-desplegable a:hover::before {
    width: 100%;
}

.contenido {
    padding-top: 150px;
    text-align: center;
    color: white;
    font-family: 'Segoe UI', Verdana, sans-serif;
}

.contenido h1 {
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 55px;
    letter-spacing: 1.5px;
    margin-top: 40px;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.contenido p {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
}

.linea-desktop {
    display: inline;
}

.linea-mobile {
    display: none;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: bolder;
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .menu-desplegable {
        width: 100%;
    }

    .logo {
        height: 120px;
    }
    
    .svg-movil {
        bottom: 60px;
        width: 60px;
    }

    .linea-desktop {
        display: none;
    }

    .linea-mobile {
        display: inline;
    }

    .contenido h1 {
        font-size: 40px;
        line-height: 1.3;
    }

    .imagen-centro img {
        width: 250px;
    }

    .text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .imagen-centro img {
        width: 180px;
    }

    .text {
        font-size: 14px;
    }
}