body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #fff; /* Cambiado a color de fondo */
    background-image: url('imagen-fondo.webp');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background-color: rgba(255, 255, 255, 0.8); /* Color de fondo semi-transparente */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    max-width: 300px;
    width: auto;
    height: auto;
    margin-bottom: 0px;
}

h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

p {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.subclaim {
    font-size: 18px;
    color: #666;
}

/* Menu */
.menu {
    background-color: rgba(255, 255, 255, 0.8); /* Color de fondo semi-transparente */
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: fixed; /* Ajuste para fijar el menú en la parte superior */
    top: 0; /* Ajuste para fijar el menú en la parte superior */
}

.logo-img {
    max-width: 100px;
}

.menu-items {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.menu-items li {
    margin-right: 20px;
}

.menu-items a {
    text-decoration: none;
    color: #000;
}

.menu-toggle {
    display: none;
}

@media screen and (max-width: 768px) {
    .menu .logo {
        display: none;
    }
	
	.menu .logo {
        display: none;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
		margin-left: 15px;
    }
	
	.menu-toggle .bar {
		width: 25px;
		height: 3px;
		background-color: #000;
		margin: 5px 0;
		transition: 0.4s;
	}

    .menu-items {
        display: none;
        position: fixed;
        top: 50px;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 1);
        padding: 20px 20px 20px 0;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        flex-direction: column;
        justify-content: center;
        align-items: center;		
    }

    .menu-items.active {
        display: flex;
    }

    .menu-items li {
        margin-bottom: 20px;
    }

    .menu-items a {
        font-size: 24px;
    }

    .container {
        padding-top: 60px;
    }
}
