/* Reset básico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Arial', sans-serif;
  background-image: url("../imagenes/servicio.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header rosa oscuro */
header {
  background-color: #b2caef;
  color: white;
  padding: 1rem;
  text-align: center;
}

/* Logo */
.logo {
  display: block;
  margin: 0 auto 10px;
  width: 120px;
}

/* Menú de navegación */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0;
  margin: 1rem 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 1rem;
  background-color: #daaff6; /* Rosa fuerte */
  border-radius: 4px;
  transition: background 0.3s;
}

nav a:hover {
  background-color: #b08bc5; /* Fucsia */
}  
  
.acerca-main {
  padding: 2rem;
  max-width: 900px;
  margin: 2rem auto;
  background: rgba(108, 136, 227, 0.3);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(169, 107, 255, 0.7);
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a4a4a;
  text-align: left;
}

.acerca-main h1 {
  text-align: center;
  color: #2d5ca3;
  margin-bottom: 1rem;
}

.acerca-main p {
  margin-bottom: 1rem;
}

/* Pie de página */
footer {
  background-color: #b2caef;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: auto;
}

/* Responsive Design para tabletas y móviles */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  .logo {
    width: 80px;
  }

  main {
    padding: 1rem;
  }
}