/* AVISO DE PRIVACIDAD - ESTILOS EXCLUSIVOS */

.privacy-main {
  background: #f4f4f4;
}

.privacy-cover {
  width: 100%;
  padding: 90px 0 84px;
  background: linear-gradient(120deg,#171717 0%,#292929 65%,#551b16 100%);
}

.privacy-cover-inner {
  width: 93%;
  max-width: 1180px;
  margin: 0 auto;
}

.privacy-label {
  margin: 0 0 18px;
  color: #d6b2ae;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .14em;
}

.privacy-label::before {
  content: "";
  display: inline-block;
  width: 48px;
  height: 2px;
  margin-right: 14px;
  vertical-align: middle;
  background: #8b1e16;
}

.privacy-cover h1 {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(48px,6vw,82px);
  line-height: .95;
  font-weight: 800;
}

.privacy-subtitle {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,.75);
  font-size: 18px;
  line-height: 1.65;
}

.privacy-body {
  padding: 70px 0 90px;
}

.privacy-document {
  width: 93%;
  max-width: 980px;
  margin: 0 auto;
}

.privacy-opening {
  margin-bottom: 24px;
  padding: 34px 38px;
  background: #fff;
  border-left: 5px solid #8b1e16;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.privacy-opening h2 {
  margin: 0 0 12px;
  color: #8b1e16;
  font-size: 25px;
}

.privacy-opening p {
  margin: 0;
  color: #555;
  font-size: 17px;
  line-height: 1.75;
}

.privacy-document article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 24px;
  margin-bottom: 16px;
  padding: 32px 38px;
  background: #fff;
  border: 1px solid #e3e3e3;
}

.privacy-number {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #8b1e16;
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.privacy-document article h2 {
  margin: 3px 0 15px;
  color: #222;
  font-size: 24px;
  line-height: 1.25;
}

.privacy-document article p,
.privacy-document article li {
  color: #555;
  font-size: 16px;
  line-height: 1.75;
}

.privacy-document article p {
  margin: 0 0 12px;
}

.privacy-document article ul {
  margin: 0;
  padding-left: 20px;
}

.privacy-document article a {
  color: #8b1e16;
  font-weight: 700;
}

.privacy-actions {
  margin-top: 28px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  background: #222;
  color: #fff;
}

.privacy-actions small,
.privacy-actions strong {
  display: block;
}

.privacy-actions small {
  margin-bottom: 6px;
  color: #aaa;
  font-size: 11px;
  letter-spacing: .12em;
}

.privacy-actions a {
  padding: 14px 22px;
  background: #8b1e16;
  color: #fff;
  border: 1px solid #8b1e16;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: .2s ease;
}

.privacy-actions a:hover {
  background: #fff;
  color: #8b1e16;
}

.privacy-site-footer {
  width: 100%;
  background: linear-gradient(180deg, #4b4d52 0%, #3f4146 100%);
  border-top: 4px solid #8b1e16;
  color: #fff;
}

.privacy-footer-content {
  width: 93%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 62px 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 55px;
  align-items: start;
}

.privacy-footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  padding: 18px 22px;
  background: rgba(255,255,255,.96);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0,0,0,.10);
}

.privacy-footer-brand img {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
}

.privacy-footer-content h3 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .10em;
}

.privacy-footer-content a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  transition: color .20s ease, transform .20s ease;
}

.privacy-footer-content a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.privacy-copyright {
  min-height: 72px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2c2f35;
  color: rgba(255,255,255,.80);
  font-size: 14px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.08);
}

@media (max-width: 800px) {
  .privacy-cover {
    padding: 62px 0;
  }

  .privacy-cover-inner,
  .privacy-document,
  .privacy-footer-content {
    width: 87%;
  }

  .privacy-body {
    padding: 50px 0 65px;
  }

  .privacy-opening,
  .privacy-document article {
    padding: 24px 20px;
  }

  .privacy-document article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .privacy-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .privacy-actions a {
    text-align: center;
  }

  .privacy-footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 45px 0;
  }

  .privacy-footer-brand img {
    width: 180px;
  }
}
