/* ==== ESTILOS BASE (APLICAN A TODA LA WEB) ==== */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

/* ==== NAVBAR ==== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #f5f5f5;
}

.logo {
  max-height: 60px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* ==== FOOTER ==== */
footer {
  text-align: center;
  padding: 20px;
  background: #f5f5f5;
  margin-top: 40px;
}

.social-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 10px;
}

.social-container a {
  font-size: 30px;
  color: #333;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-container a:hover {
  transform: scale(1.2);
}

/* ==== RESPONSIVE GENERAL ==== */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
}






/* ------ */
/* ==== SECCIONES DE SERVICIO ==== */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.servicio {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px;
}

.servicio img {
  width: 150px;
}

/* ==== RESPONSIVE ESPECÍFICO DE SERVICIOS ====
@media (max-width: 768px) {
  .servicio {
    flex-direction: column;
    text-align: center;
  }

  .servicio img {
    width: 80%;
    max-width: 300px;
  }
} */
