:root {
  --main-color: #fbdf19;
  --secondary-color: #020304;
  --text-light: rgba(255, 255, 255, 0.9);
  --text-muted: rgba(255, 255, 255, 0.7);
}
body {
  font-family: "Arial", sans-serif;
  background-color: var(--secondary-color);
  color: var(--text-light);
}
.nav-link {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.87);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #fbdf19;
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}
.nav-link:hover {
  color: #fbdf19;
}
.nav-link.active {
  color: #fbdf19;
  font-weight: bold;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.nav-link.active::after {
  width: 100%;
}
.nav-link.active:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
}
.social-icons a {
  color: var(--text-light);
  margin: 0 10px;
  font-size: 1.5rem;
}
.header {
  background-color: #fbdf19;
  color: #020304;
  text-align: center;
  padding: 50px 0;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}
.header h1 {
  font-size: 3rem;
  font-weight: bold;
}
.header p {
  font-size: 1.5rem;
}
.footer {
  background-color: #020304;
  color: rgba(255, 255, 255, 0.87);
  padding: 20px;
  text-align: center;
}
.footer a {
  color: #fbdf19;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.desarrollado-por {
  text-align: center;
}

.desarrollado-por p,
.desarrollado-por img {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}

.desarrollado-por img {
  width: 80px;
  height: auto;
  margin-left: 10px;
}
.info-card {
  background-color: #000000;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 1);
}
.info-card i {
  font-size: 2rem;
  color: #0d6efd;
}
.info-card h5 {
  margin-top: 0.5rem;
  font-size: 1.2rem;
}
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.btn-quote {
  background-color: var(--main-color);
  color: var(--secondary-color);
}
.btn-quote:hover {
  background-color: #d4bc18;
}