/* ======= NAVBAR GENERAL ======= */
.navbar {
    position: fixed;  /* Fija la navbar en la parte superior */
    top: 0;
    width: 100%;
    background-color: #000;  /* Color de fondo negro */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;  /* Asegura que la navbar esté por encima de otros contenidos */
}


.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}

.nav-links li {
  text-align: center;
}


.nav-links a:hover {
  color: #ffffff;
}

/* ======= RESPONSIVE NAVBAR ======= */
@media (max-width: 768px) {
  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    padding: 10px 0;
  }
}

/* ======= ESPACIADO BODY ======= */
body::before {
  content: "";
  display: block;
  height: 75px;
  background-color: #ffffff;
}

/* ======= SECCIÓN DE OFICINAS Y FORMULARIO ======= */
.oficinas-section {
  background-color: rgb(227, 221, 215);
  padding: 60px 20px;
  text-align: center;
}

.oficinas-titulo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.clientes-linea {
  width: 80px;
  height: 3px;
  background-color: #000;
  margin: 0 auto 40px auto;
}

.oficinas-contenido {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.oficina-mapa, .oficina-foto {
  flex: 1 1 300px;
  max-width: 500px;
}

.oficina-foto img {
  width: 100%;
  border-radius: 10px;
}

iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/* ======= SECCIÓN DE CONTACTO SIMPLE ======= */
.contacto-info {
  margin-top: 40px;
  text-align: center;
}

.contacto-info p {
  font-size: 18px;
  color: #333;
  margin: 10px 0;
}

.contacto-info ion-icon {
  vertical-align: middle;
  margin-right: 8px;
  color: #0066cc;
}

.contacto-info a {
  color: #0066cc;
  text-decoration: none;
}

.contacto-info a:hover {
  text-decoration: underline;
}

