body {
  font-family: 'Rubik', sans-serif;
  background-color: #212529;
  color: #adb5bd;
  margin: 0;
  padding: 0;
}

header {
  background-color: #212529;
  color: #ffc107;
  padding: 1rem;
  text-align: center;
  border-bottom: 2px solid #ffc107;
}

.logo-titulo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  width: 180px;
  height: auto;
  border-radius: 50%;
}

h1 {
  font-size: 1.8rem;
  margin: 0;
}

h1 span {
  font-weight: 400;
  font-size: 1.2rem;
}

nav {
  margin-top: 1rem;
}

nav a {
  margin: 0 1rem;
  color: #e4decc;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  text-decoration: underline;
  color: #e0a800;
}

.seccion {
  padding: 2rem 1rem;
  text-align: center;
}

blockquote {
  font-style: italic;
  background-color: #343a40;
  border-left: 5px solid #ffc107;
  margin: 1rem auto;
  padding: 1rem;
  max-width: 600px;
  color: #fff;
}

form {
  max-width: 500px;
  margin: 1rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form input,
form textarea {
  padding: 0.7rem;
  border: 1px solid #adb5bd;
  border-radius: 5px;
  background-color: #343a40;
  color: #fff;
  font-family: 'Rubik', sans-serif;
}

form button {
  background-color: #ffc107;
  color: #212529;
  border: none;
  padding: 0.8rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #e0a800;
}

.servicios-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.servicio {
  position: relative;
  width: 250px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  background-color: #343a40;
}

.servicio img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.servicio:hover img {
  transform: scale(1.1);
}

.descripcion {
  position: absolute;
  bottom: 0;
  background: rgba(33, 37, 41, 0.8);
  color: #ffc107;
  width: 100%;
  padding: 0.5rem;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.servicio:hover .descripcion {
  transform: translateY(0);
}

.mapa {
  margin-top: 2rem;
  border-radius: 15px;
  overflow: hidden;
  max-width: 100%;
}

footer {
  background-color: #212529;
  color: #adb5bd;
  text-align: center;
  padding: 1rem;
  border-top: 2px solid #ffc107;
}
