/* =========================
   GLOBAL / BASE
========================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #f6f7fb;
  color: #222;
}

/* =========================
   HEADER FIX
========================= */
.u-header {
  background: #ffffff !important;
  box-shadow: 0 2px 15px rgba(0,0,0,.08);
}

/* =========================
   SECTION 1 - HERO PRIVACIDAD
========================= */
.u-section-1 {
  position: relative;
}

.u-section-1 .u-image-1 {
  width: 100%;
  height: 600px;
  object-fit: cover;
  filter: brightness(.55);
}

.u-section-1 .u-group-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 700px;
  padding: 40px;
  border-radius: 18px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

.u-section-1 h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.u-section-1 p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

.u-section-1 .u-btn-1 {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 35px;
  border-radius: 50px;
  background: #111;
  color: #fff;
  font-weight: 600;
  transition: .3s;
}

.u-section-1 .u-btn-1:hover {
  background: #25afb4;
}

/* =========================
   SECTION 2 - DATOS
========================= */
.u-section-2 {
  padding: 80px 20px;
}

.u-section-2 h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 40px;
}

/* CARDS */
.u-section-2 .u-list-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: .3s;
}

.u-section-2 .u-list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

.u-section-2 h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #111;
}

.u-section-2 p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
}

/* =========================
   TYPOGRAPHY FIX
========================= */
h1, h2, h3, h4, h5 {
  letter-spacing: -0.5px;
}

p {
  font-weight: 400;
}

/* =========================
   BUTTON FIX (GLOBAL)
========================= */
a.u-btn,
.u-btn {
  border-radius: 50px !important;
  font-weight: 600 !important;
  padding: 12px 28px !important;
}

/* =========================
   BACKGROUND DECOR
========================= */
.u-section-2 {
  background:
    radial-gradient(circle at top, rgba(37,175,180,.08), transparent 40%),
    radial-gradient(circle at bottom, rgba(0,0,0,.03), transparent 60%);
}

/* =========================
   FOOTER
========================= */
.u-footer {
  background: #111 !important;
  color: #fff;
  padding: 60px 20px;
}

.u-footer a {
  color: #25afb4;
}

.u-footer .u-social-icons img {
  filter: brightness(0) invert(1);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  .u-section-1 .u-group-1 {
    width: 92%;
    padding: 25px;
  }

  .u-section-1 h3 {
    font-size: 1.6rem;
  }

  .u-section-2 h2 {
    font-size: 2rem;
  }

  .u-section-2 .u-list-item {
    padding: 25px;
  }
}

/* =========================
   FIX MOBILE - PRIVACIDAD CARDS
========================= */
@media (max-width: 768px) {

  .u-section-2 .u-list-1 {
    padding: 0 !important;
  }

  .u-section-2 .u-repeater-1 {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px;
  }

  .u-section-2 .u-list-item {
    width: 100% !important;
    margin: 0 !important;
    padding: 22px 18px !important;
    border-radius: 16px !important;
    box-sizing: border-box;
  }

  .u-section-2 h2 {
    font-size: 1.8rem !important;
    line-height: 1.2;
  }

  .u-section-2 h4 {
    font-size: 1.2rem !important;
  }

  .u-section-2 p {
    font-size: 0.9rem !important;
    line-height: 1.6;
  }
}