/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

/* HEADER */
header {
  background: #a5d8ff;
  text-align: center;
  padding: 20px;
}
.logo-header {
  height: 80px;
  margin-right: 1em;
}


.slogan {
  font-style: italic;
  margin: 5px 0 15px;
  color: #063970;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #063970;
  font-weight: bold;
}

nav ul li a:hover {
  color: #1c7ed6;
}

/* SLIDER */
#acerca-slider {
  padding: 2em;
  background-color: #f9f9f9;
  text-align: center;
}

.slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: auto;
}

.slide-track {
  display: flex;
  animation: scroll 12s linear infinite;
}

.slide-track img {
  width: 150px;
  height: auto;
  margin: 0 10px;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0,0,0,0.1);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  25% { transform: translateX(-160px); }
  50% { transform: translateX(-320px); }
  75% { transform: translateX(-480px); }
  100% { transform: translateX(-640px); }
}

/* ABOUT */
.about {
  padding: 40px;
  text-align: center;
  background: #f5f5f5;
}

/* SERVICES */
.services {
  padding: 40px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: #a5d8ff;
  padding: 20px;
  border-radius: 8px;
  font-weight: bold;
  color: #063970;
}

/* CONTACT */
.contact {
  padding: 40px;
  background: #f5f5f5;
  text-align: center;
}

form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input, form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

form button {
  border: none;
  padding: 12px;
  background: #1c7ed6;
  color: white;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

form button:hover {
  background: #063970;
}

/* FOOTER */
footer {
  background: #063970;
  padding: 20px;
  text-align: center;
  color: white;
}
