.info-turistica-card{
  width: 360px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(0,0,0,0.08);

  box-shadow: 0px 18px 45px rgba(0,0,0,0.08);
  font-family: "Poppins", sans-serif;

  transition: all 0.35s ease;
  cursor: pointer;
  position: relative;
}

/* Línea superior elegante */
.info-turistica-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;
  background: linear-gradient(90deg, #2c5063, #5fa6c6);
}

/* Hover elegante */
.info-turistica-card:hover{
  transform: translateY(-10px);
  box-shadow: 0px 25px 65px rgba(0,0,0,0.14);
  border: 1px solid rgba(44,80,99,0.25);
}

/* Header */
.info-header{
  padding: 22px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: transparent;
}

/* Icono */
.info-header i{
  width: 52px;
  height: 52px;
  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;

  background: linear-gradient(135deg, #2c5063, #38637b);
  color: white;

  box-shadow: 0px 12px 25px rgba(134, 134, 134, 0.25);

  transition: all 0.35s ease;
}

/* Animación del icono */
.info-turistica-card:hover .info-header i{
  transform: scale(1.08) rotate(-4deg);
}

/* Título */
.info-header h3{
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: #1e2a33;
  line-height: 1.3;
}

/* Body */
.info-body{
  padding: 0px 22px 22px 22px;
  font-size: 14px;
  color: #334155;
}

/* Datos */
.info-body p{
  margin: 6px 0;
  font-weight: 500;
  color: #2c5063;
}

/* Lista */
.info-body ul{
  margin-top: 16px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Items estilo premium */
.info-body li{
  display: flex;
  align-items: center;
  gap: 10px;

  background: rgba(44,80,99,0.06);
  padding: 10px 12px;
  border-radius: 14px;

  font-size: 13px;
  font-weight: 500;
  color: #334155;

  transition: all 0.3s ease;
}

/* Hover en cada item */
.info-body li:hover{
  background: rgba(158, 158, 158, 0.12);
  transform: translateX(6px);
}

/* Icono de check elegante */
.info-body li::before{
  content:"✓";
  width: 22px;
  height: 22px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 12px;
  font-weight: 700;

  background: linear-gradient(135deg, #2c5063, #5fa6c6);
  color: white;

  flex-shrink: 0;
}

/* Active (celular) */
.info-turistica-card:active{
  transform: scale(0.98);
}

.info-turistica-container{
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 40px;
}




.map-title h2{
  font-size: 32px;
  font-weight: 800;
  color: #0d4350;
}

.map-title p{
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.map-container iframe{
  border-radius: 20px;
  box-shadow: 0px 15px 40px rgba(0,0,0,0.15);
}

.map-buttons{
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-map{
  padding: 12px 22px;
  background: #0d4350;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-map:hover{
  background: #58a8bc8f;
  transform: translateY(-4px);
}
/* ==========================
   SECCIÓN MAPA RESPONSIVA (LIMPIO)
========================== */

.map-section{
  padding: 90px 20px;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  text-align: center;
}

/* TITULO */
.map-title h2{
  font-size: 34px;
  font-weight: 800;
  color: #0d4350;
  margin-bottom: 10px;
}

.map-title p{
  font-size: 16px;
  color: #64748b;
  margin-bottom: 35px;
  font-weight: 500;
}

/* CONTENEDOR MAPA */
.map-container{
  width: 100%;
  max-width: 900px;
  margin: auto;

  border-radius: 30px;
  overflow: hidden;

  background: white;
  border: 2px solid rgba(44,80,99,0.18);
  box-shadow: 0px 25px 70px rgba(0,0,0,0.18);

  position: relative;
}

/* IFRAME */
.map-container iframe{
  width: 100%;
  height: 650px; /* PC */
  border: none;
  display: block;
}

/* BOTONES */
.map-buttons{
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0 15px;
}

.btn-map{
  padding: 12px 22px;
  background: #0d4350;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-map:hover{
  background: #58a8bc8f;
  transform: translateY(-4px);
}

/* RESPONSIVE TABLET */
@media(max-width: 992px){
  .map-container iframe{
    height: 500px;
  }

  .map-title h2{
    font-size: 28px;
  }
}

/* RESPONSIVE CELULAR */
@media(max-width: 576px){
  .map-container iframe{
    height: 380px;
  }

  .map-title h2{
    font-size: 22px;
  }

  .map-title p{
    font-size: 14px;
  }

  .btn-map{
    width: 100%;
    justify-content: center;
  }
}
/* ==========================
   TARJETAS INFO TURISTICA
========================== */
.info-turistica-container{
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 0 15px;
}

.info-turistica-card{
  width: 360px;
  max-width: 100%;
}


/* CONTENEDOR MAPA */
.map-container{
  width: min(900px, 100%); /* 🔥 se adapta */
  aspect-ratio: 1 / 1;     /* 🔥 mantiene forma cuadrada */
  margin: auto;

  border-radius: 35px;
  overflow: hidden;

  background: white;
  border: 2px solid rgba(44,80,99,0.18);

  box-shadow: 0px 25px 70px rgba(0,0,0,0.18);
  transition: all 0.35s ease;
  position: relative;
}

/* EFECTO HOVER */
.map-container:hover{
  transform: translateY(-10px);
  box-shadow: 0px 35px 90px rgba(0,0,0,0.25);
}

/* LÍNEA DECORATIVA */
.map-container::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:7px;
  background: linear-gradient(90deg, #2c5063, #5fa6c6);
  z-index: 10;
}

/* IFRAME */
.map-container iframe{
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ==========================
   BOTONES DEL MAPA
========================== */
.map-buttons{
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0 15px;
}

.btn-map{
  padding: 12px 22px;
  background: #0d4350;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-map:hover{
  background: #58a8bc8f;
  transform: translateY(-4px);
}

/* ==========================
   RESPONSIVE TABLET
========================== */
@media(max-width: 992px){

  .map-title h2{
    font-size: 28px;
  }

  .map-container{
    width: 95%;
    aspect-ratio: 4 / 3; /* 🔥 en tablet mejor rectangular */
    border-radius: 25px;
  }
}

/* ==========================
   RESPONSIVE CELULAR
========================== */
@media(max-width: 576px){

  .map-title h2{
    font-size: 22px;
  }

  .map-title p{
    font-size: 14px;
  }

  .map-container{
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
  }

  .btn-map{
    width: 100%;
    justify-content: center;
  }
}

/* ESPACIADO ENTRE TITULO Y MAPA */
.map-title{
  margin-bottom: 40px;
}

/* ESPACIADO ENTRE MAPA Y BOTONES */
.map-container{
  margin-bottom: 80px;
}

/* ESPACIADO EXTRA EN LOS BOTONES */
.map-buttons{
  margin-top: 40px;
  margin-bottom: 80px; /* para que no quede pegado al footer */
}


/* ===============================
   ESCALA GLOBAL (COMO 90% ZOOM)
   =============================== */

body{
  zoom: 0.9;
}

/* En celulares mejor no reducir tanto */
@media (max-width: 768px){
  body{
    zoom: 1;
  }
}