@import "variables.css";
a {
  text-decoration: none;
  color: inherit;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}

.sede-header {
  display: flex;
  justify-content: center;
  padding: 50px 0px 50px 0px;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left 25% bottom 50%;
}

.sede-header h1 {
  color: var(--white);
  font-size: 4rem;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.45);
}

.sede-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.sede-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px) saturate(100%);
  -webkit-backdrop-filter: blur(10px) saturate(100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.sede-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.sede-address {
  width: 100%;
  font-size: 1rem;
  line-height: 1;
}
.sede-address-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  padding: 1rem;
}

figure img {
  border-radius: 8px;
}

figure figcaption {
  font-size: 0.9rem;
  padding: 1rem;
  text-align: center;
}

.mapa-box {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.sede-title {
  text-align: center;
  padding-bottom: 1rem;
  width: 100%;
}
@media (max-width: 768px) {
  .sede-header h1 {
    font-size: 3rem;
  }

  .sede-header {
    padding: 1rem 0px 0rem 0px;
    background-position: right 10% bottom 50%;
    width: 100%;
    /* background-position: left 25% bottom 50%; */
  }
  .sede-title {
    font-size: 1rem;
  }
}
