.aviso-privacidad {
  background-color: #f5f7fb;
  color: #222;
  font-family: var(--astra-body-font-family, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif);
}

/* Hero */
.aviso-hero {
  position: relative;
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #0c7abf, #27b195);
  color: #fff;
}

.aviso-hero__overlay {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    radial-gradient(circle at 20% 20%, #ffffff 0, transparent 55%),
    radial-gradient(circle at 80% 80%, #ffffff 0, transparent 55%);
}

.aviso-hero__content {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 20px;
}

.aviso-hero__tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
}

.aviso-hero__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.3;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
  margin-top: 10px;
  margin-bottom: 12px;
}

.aviso-hero__subtitle {
  font-size: 1rem;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 8px rgba(0,0,0,0.18);
}

/* Wrapper & card */
.aviso-wrapper {
  padding: 40px 16px 60px;
  display: flex;
  justify-content: center;
}

.aviso-card {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 22px;
  box-shadow:
    0 10px 25px rgba(15, 23, 42, 0.06),
    0 0 0 1px rgba(148, 163, 184, 0.18);
}

@media (min-width: 768px) {
  .aviso-card {
    padding: 40px 40px;
  }
}

/* Top info */
.aviso-site {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: #64748b;
  margin-bottom: 12px;
}

/* Divider */
.aviso-divider {
  border: 0;
  border-top: 1px solid #e2e8f0;
  margin: 24px 0 28px;
}

/* Sections */
.aviso-section + .aviso-section {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px dashed #e2e8f0;
}

.aviso-section h2 {
  font-size: 1.1rem;
  margin: 0 0 8px;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 8px;
}

.aviso-section h2::before {
  content: "";
  width: 4px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, #0c7abf, #27b195);
}

.aviso-section h3 {
  font-size: 0.98rem;
  margin: 14px 0 6px;
  color: #1e293b;
}

.aviso-section p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
  margin: 4px 0 8px;
}

.aviso-section ul {
  padding-left: 1.2rem;
  margin: 4px 0 10px;
}

.aviso-section li {
  font-size: 0.94rem;
  color: #475569;
  margin-bottom: 4px;
}

/* Links */
.aviso-card a {
  color: #0c7abf;
  text-decoration: none;
}

.aviso-card a:hover {
  text-decoration: underline;
}

/* Contacto */
#contacto p strong {
  display: inline-block;
  margin-bottom: 4px;
}

/* Responsive ajustes móviles */
@media (max-width: 480px) {
  .aviso-card {
    border-radius: 0.9rem;
  }
  .aviso-section h2 {
    font-size: 1.02rem;
  }
  .aviso-section p,
  .aviso-section li {
    font-size: 0.92rem;
  }
}