* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

.contenedor {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 50px auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-image {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.05);
}

.boton-menu {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 30px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: 2px solid white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 10;
}

.boton-menu:hover {
    background-color: white;
    color: black;
    border-color: black;
}

.menu-oculto {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.menu-oculto h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.menu-oculto p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 600px;
}


.mostrar {
    opacity: 1;
    visibility: visible;
}