.hero-legado{
  position: relative;
  width: 100%;
  height: 65vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
    padding-left: 0 !important;
  padding-right: 0 !important;
}

.hero-content{
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;

  text-align: center;
  padding: 0 20px;

  transform: translateY(40px);
}

.hero-img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ESTO HACE QUE EL FONDO SE VEA BIEN */
  object-position: center;
  z-index: 1;
}

/* overlay para que el texto resalte */
.hero-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 20, 40, 0.75), rgba(10, 20, 40, 0.55));
  z-index: 2;
}



.hero-title{
  font-size: 55px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0 auto;
  text-align: center;
  white-space: nowrap;

  display: block;
  width: 100%;
}

@media (max-width: 768px){
  .hero-title{
    font-size: 32px;
    letter-spacing: 2px;
    white-space: normal; /* en celular sí puede bajar */
  }
}

.hero-subtitle{
  margin-top: 140px;
  font-size: 25px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-shadow: 0px 2px 10px rgba(0,0,0,0.6);
}
/* RESPONSIVO */
@media (max-width: 768px){
  .hero-legado{
    height: 50vh;
  }

  .hero-title{
    font-size: 32px;
    letter-spacing: 2px;
  }

  .hero-subtitle{
    font-size: 14px;
  }
}

/* Divider line */
.privacy-divider {
  border: none;
  height: 2px;
  background: linear-gradient(to right, #0d6efd, #20c997);
  width: 120px;
  margin: 15px auto 25px auto;
  border-radius: 10px;
}

.privacy-intro-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f8f9fa;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid #e6e6e6;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);

  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.intro-text {
  flex: 1;
  margin: 0;
  text-align: justify;
  font-size: 16px !important;
  color: #333;
  line-height: 1.7;
}

/* Icon */
.privacy-icon {
  min-width: 50px;
  height: 50px;
  background: #135464bc;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 24px;
}


#privacy .container {
  max-width: 1300px !important;
}
/* Date style */
.last-updated {
  font-size: 14px;
  font-weight: 600;
  color: #6c757d;
  margin-bottom: 10px;
  text-align: center;
}

.privacy-header {
  max-width: 1100px;
  margin: 0 auto;
}

.privacy-intro-box {
  width: 100%;
  max-width: 1000px; /* más largo */
  margin: 0 auto;    /* centrado */
}

.privacy-content{
  max-width: 1200px;
  margin: 0 auto;
}

.privacy-card{
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  padding: 25px 25px;
  margin-bottom: 25px;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.05);
}

.privacy-title{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: #135464;
  margin-bottom: 15px;
}

.privacy-title i{
  font-size: 24px;
  color: #135464;
}

.privacy-subtitle{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  margin-top: 18px;
  margin-bottom: 10px;
  color: #0f5462;
}

.privacy-subtitle i{
  font-size: 18px;
  color: #135d6b;
}

.privacy-card p{
  text-align: justify;
  font-size: 16px;
  color: #444;
  line-height: 1.8;
}

.privacy-card ul li,
.privacy-card ol li{
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 6px;
}

.alerta{
  background: #f1f8ff;
  padding: 15px;
  border-left: 5px solid #19535d89;
  border-radius: 10px;
  font-size: 15px;
}

/* LINKS CON EFECTO ZOOM + COLOR AZUL */
.privacy-content a,
.intro-text a {
  color: #135464;
  font-weight: 600;
  text-decoration: none;
  display: inline-block; /* IMPORTANTE para que funcione el zoom */
  transition: all 0.25s ease;
}

.privacy-content a:hover,
.intro-text a:hover {
  color: #0d6efd;
  transform: scale(1.08);
}
/* ===============================
   ESCALA GLOBAL (COMO 90% ZOOM)
   =============================== */

body{
  zoom: 0.9;
}

/* En celulares mejor no reducir tanto */
@media (max-width: 768px){
  body{
    zoom: 1;
  }
}