body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-image: url('navidad.jpg'); /* Cambiar la URL por una imagen navideña */
  background-size: cover;
  background-position: center;
  display: flex;
  height: 100vh;
}

/* Resto de tu CSS existente */

/* Agregar estilos navideños */
.content::before {
  content: '\2605'; /* Agregar un símbolo de estrella */
  font-size: 3em;
  color: #FFD700; /* Color dorado */
  position: absolute;
  top: 10px;
  left: 10px;
}

#toggleMenu {
  font-size: 1.5em;
  cursor: pointer;
  text-align: center;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.8);
}

.sidebar {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  width: 100%; /* Ancho completo para que ocupe todo el ancho del contenedor */
  box-sizing: border-box; /* Incluye el relleno y el borde en el ancho total */
  display: none; /* Oculto inicialmente */
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0; /* Eliminado el margen en la lista */
}

.menu a {
  text-decoration: none;
  color: #333;
  display: block;
  padding: 10px 0;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.content {
  max-width: 800px;
  margin: 20px auto; /* Ajustado el margen superior para separar del menú */
  background-color: rgba(255, 255, 255, 0.8);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

h1 {
  color: #343a40;
  text-align: center;
}

p {
  color: #555;
  line-height: 1.6;
}

ul {
  list-style-type: none;
  padding: 0;
}

li {
  margin-bottom: 10px;
  color: #007bff;
}

.service-section {
  background-color: #007bff;
  color: #ffffff;
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
}

.footer {
  margin-top: 30px;
  text-align: center;
  color: #888;
}

.menu-hidden .sidebar {
  display: block; /* Mostrar el menú cuando está oculto */
}
@media screen and (min-width: 768px) {
  body {
    display: flex;
    height: 100vh;
  }

  .container {
    flex-direction: row;
    height: auto;
  }

  #toggleMenu {
    display: none;
  }

  .sidebar {
    display: block;
    width: 250px;
    position: fixed;
    height: 100%;
    overflow-y: auto;
  }

  .menu-hidden .sidebar {
    display: block;
  }

  .content {
    margin-left: 250px;
  }
}
body {
  background-size: cover;
  background-position: center;
  display: flex;
}


body {
  position: relative;
  height: 100%;
}

body {
  background: #eee;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
}

swiper-container {
  width: 100%;
  height: 100%;
}

swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}