.location-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================
   HEADER
   =================================== */

.location-header {
  text-align: center;
  margin-bottom: 70px;
  animation: fadeIn 0.8s ease-out 0.2s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.location-badge {
  color: #c77dff;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(199, 125, 255, 0.8);
  display: inline-block;
  margin-bottom: 15px;
  font-size: 14px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

.location-header h1 {
  font-size: 52px;
  color: #ffffff;
  margin: 15px 0 20px 0;
  font-family: var(--title-font);
  text-shadow: 0 0 20px rgba(180, 0, 255, 0.5);
  line-height: 1.2;
  font-weight: 700;
}

.location-header p {
  color: #e9d9ff;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 400;
}

/* ===================================
   INFO CARDS
   =================================== */

.location-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  margin-bottom: 80px;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(181, 23, 255, 0.3);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 0 25px rgba(181, 23, 255, 0.15);
  animation: fadeInScale 0.6s ease-out both;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.info-card:nth-child(1) { animation-delay: 0.3s; }
.info-card:nth-child(2) { animation-delay: 0.4s; }
.info-card:nth-child(3) { animation-delay: 0.5s; }

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 45px rgba(181, 23, 255, 0.4);
  border-color: rgba(181, 23, 255, 0.5);
}

.info-card i {
  font-size: 52px;
  color: #b517ff;
  margin-bottom: 25px;
  text-shadow: 0 0 25px rgba(181, 23, 255, 0.9);
  display: block;
}

.info-card h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.info-card p {
  color: #cfaaff;
  line-height: 1.8;
  font-size: 16px;
  font-weight: 400;
}

/* ===================================
   MAPA
   =================================== */

.map-container {
  margin-bottom: 80px;
}

.map-container h2 {
  text-align: center;
  color: #fff;
  font-size: 42px;
  margin-bottom: 40px;
  font-family: var(--title-font);
  text-shadow: 0 0 20px rgba(180, 0, 255, 0.5);
  font-weight: 700;
  line-height: 1.3;
}

.map-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 0 50px rgba(181, 23, 255, 0.35);
  border: 2px solid rgba(181, 23, 255, 0.5);
  margin-bottom: 40px;
  animation: fadeInScale 0.8s ease-out 0.6s both;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: none;
}

/* ===================================
   ACCIONES DEL MAPA
   =================================== */

.map-actions {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 35px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
  letter-spacing: 1px;
  font-family: var(--button-font);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  text-transform: uppercase;
  cursor: pointer;
}

.btn i {
  font-size: 18px;
}

.btn-primary {
  background: linear-gradient(90deg, #9b5de5, #b517ff);
  color: white;
  box-shadow: 0 0 25px rgba(181, 23, 255, 0.5);
  border: none;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(181, 23, 255, 0.8);
}

.btn-secondary {
  border: 2px solid #c77dff;
  color: #f5eaff;
  background: transparent;
  box-shadow: 0 0 20px rgba(155, 93, 229, 0.4);
}

.btn-secondary:hover {
  background: rgba(199, 125, 255, 0.15);
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(155, 93, 229, 0.6);
}

/* ===================================
   INFORMACIÓN ADICIONAL
   =================================== */

.additional-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  margin-top: 80px;
}

.info-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(181, 23, 255, 0.3);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 0 25px rgba(181, 23, 255, 0.15);
  transition: all 0.3s;
  animation: fadeInScale 0.6s ease-out both;
}

.info-box:nth-child(1) { animation-delay: 0.7s; }
.info-box:nth-child(2) { animation-delay: 0.8s; }
.info-box:nth-child(3) { animation-delay: 0.9s; }

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 35px rgba(181, 23, 255, 0.25);
  border-color: rgba(181, 23, 255, 0.5);
}

.info-box h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.info-box h3 i {
  color: #b517ff;
  text-shadow: 0 0 15px rgba(181, 23, 255, 0.9);
  font-size: 24px;
}

.info-box p {
  color: #cfaaff;
  line-height: 1.8;
  font-size: 16px;
  font-weight: 400;
}

.info-box strong {
  color: #fff;
  font-weight: 700;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 768px) {
  .location-section {
    padding: 60px 15px;
  }

  .location-header {
    margin-bottom: 50px;
  }

  .location-header h1 {
    font-size: 32px;
  }

  .location-header p {
    font-size: 18px;
  }

  .location-info {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 60px;
  }

  .info-card {
    padding: 35px 25px;
  }

  .map-container {
    margin-bottom: 60px;
  }

  .map-container h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .map-wrapper iframe {
    height: 350px;
  }

  .map-actions {
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 25px;
  }

  .additional-info {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 60px;
  }

  .info-box {
    padding: 30px 25px;
  }
}