
body { 
  background-color: #fdf6e3;
  font-family: Arial, sans-serif; 
  margin: 0; 
  padding: 0; 
}

header, footer { 
  background-color: #333; 
  color: white; 
  text-align: center; 
  padding: 1em; 
}

nav { 
  background-color: #f4f4f4; 
  padding: 1em; 
  text-align: center; 
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

nav a { 
  margin: 0 1em; 
  text-decoration: none; 
  color: #333; 
}

main { 
  padding: 2em; 
}

section { 
  margin-bottom: 2em; 
}

h2 { 
  color: #2a2a2a; 
}

.aviso {
  background-color: yellow;
  color: black;
  font-weight: bold;
  padding: 1rem;
  text-align: center;
  border: 2px solid #ccc;
}

/* Estilos para el bot¨®n flotante de contacto */
#contacto-boton {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9999;
}

#contacto-boton button {
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 8px 12px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  font-size: 14px;
}

#contacto-boton button:hover {
  background-color: #0056b3;
}

/* Estilos para la barra de b¨²squeda siempre arriba a la derecha */
#barra-buscador {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 1000;
}

#barra-buscador form {
  display: flex;
  gap: 5px;
}

#barra-buscador input[type="text"] {
  padding: 0.25rem 0.5rem;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#barra-buscador button {
  background-color: #006699;
  color: white;
  padding: 0.25rem 0.75rem;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}

#barra-buscador button:hover {
  background-color: #004d66;
}


