/* Informe de Cumplimiento VUT — /cumplimiento-vut, /privacy-policy */
/* Built on the --hp-* design tokens from tailwindcss/homepage-base. */

.vut-root { background: var(--hp-bg); }

.vut-main { display: block; }

/* ── Hero ── */
.vut-hero {
  padding: 140px 0 80px;
  background: var(--hp-bg-warm);
  border-bottom: 1px solid var(--hp-rule);
}
@media (max-width: 768px) { .vut-hero { padding: 110px 0 56px; } }

.vut-hero-inner { max-width: 780px; }

.vut-hero-h1 {
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--hp-ink);
  margin: 0 0 20px;
}

.vut-hero-sub {
  font-size: 19px;
  line-height: 1.6;
  color: var(--hp-mid);
  max-width: 640px;
  margin: 0 0 32px;
}

.vut-hero-cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.vut-hero-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--hp-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.vut-hero-link:hover { color: var(--hp-orange-d); }

/* ── Problem ── */
.vut-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .vut-problem-grid { grid-template-columns: 1fr; } }

.vut-problem-card {
  background: var(--hp-white);
  border: 1px solid var(--hp-rule);
  border-radius: var(--hp-radius-md);
  padding: 28px;
}
.vut-problem-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--hp-ink);
  margin: 0 0 10px;
}
.vut-problem-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--hp-mid);
  margin: 0;
}

/* ── Service + price ── */
.vut-service-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .vut-service-grid { grid-template-columns: 1fr; } }

.vut-service-copy h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  color: var(--hp-ink);
  margin: 0 0 12px;
}
.vut-service-intro {
  font-size: 17px;
  line-height: 1.6;
  color: var(--hp-mid);
  margin: 0 0 24px;
}

.vut-checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.vut-checklist li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--hp-ink);
}
.vut-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--hp-orange);
  font-weight: 700;
}

.vut-price-block { display: flex; flex-direction: column; gap: 24px; }

.vut-price-card {
  background: var(--hp-white);
  border: 1px solid var(--hp-rule);
  border-radius: var(--hp-radius-lg);
  padding: 28px;
  text-align: center;
}
.vut-price-label { display: block; font-size: 14px; color: var(--hp-mid); margin-bottom: 8px; }
.vut-price-was { display: block; font-size: 17px; font-weight: 600; color: var(--hp-mid); text-decoration: line-through; text-decoration-color: var(--hp-light); }
.vut-price-amount { display: block; font-size: 40px; font-weight: 700; color: var(--hp-ink); }
.vut-price-amount small { font-size: 15px; font-weight: 500; color: var(--hp-mid); }
.vut-price-tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--hp-orange-d);
  background: var(--hp-bg-warm);
  border: 1px solid var(--hp-rule);
  border-radius: 20px;
  padding: 4px 12px;
}
.vut-price-note { font-size: 13.5px; color: var(--hp-mid); margin: 14px 0 0; }

/* ── Team ── */
.vut-team { background: var(--hp-bg-warm); }
.vut-team-inner { max-width: 760px; }
.vut-team-inner h2 { font-size: clamp(24px, 3vw, 30px); font-weight: 700; color: var(--hp-ink); margin: 0 0 14px; }
.vut-team-inner > p { font-size: 16px; line-height: 1.65; color: var(--hp-mid); margin: 0 0 32px; }

.vut-team-grid { display: flex; gap: 32px; flex-wrap: wrap; }
.vut-team-member { display: flex; align-items: center; gap: 14px; }
.vut-team-photo {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--hp-light);
  flex-shrink: 0;
}
.vut-team-name { font-size: 14.5px; font-weight: 600; color: var(--hp-ink); }

/* ── Guide section ── */
.vut-guide-inner { max-width: 560px; text-align: center; margin: 0 auto; }
.vut-guide-inner h2 { font-size: clamp(24px, 3vw, 30px); font-weight: 700; color: var(--hp-ink); margin: 0 0 10px; }
.vut-guide-inner > p { font-size: 16px; color: var(--hp-mid); margin: 0 0 28px; }

.vut-guide-success {
  background: var(--hp-white);
  border: 1px solid var(--hp-rule);
  border-radius: var(--hp-radius-lg);
  padding: 40px 32px;
}
.vut-guide-success h2 { margin: 0 0 10px; }
.vut-guide-success p { font-size: 15.5px; color: var(--hp-mid); margin: 0 0 24px; }
.vut-guide-success .hp-btn-primary { display: inline-block; }

/* ── FAQ ── */
.vut-faq h2 { font-size: clamp(24px, 3vw, 30px); font-weight: 700; color: var(--hp-ink); margin: 0 0 24px; }
.vut-faq-item {
  border-bottom: 1px solid var(--hp-rule);
  padding: 18px 0;
}
.vut-faq-item summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--hp-ink);
  list-style: none;
}
.vut-faq-item summary::-webkit-details-marker { display: none; }
.vut-faq-item summary::before {
  content: "+";
  display: inline-block;
  width: 18px;
  color: var(--hp-orange);
  font-weight: 700;
}
.vut-faq-item[open] summary::before { content: "–"; }
.vut-faq-item p { font-size: 15px; line-height: 1.6; color: var(--hp-mid); margin: 12px 0 0 18px; }

/* ── Disclaimer ── */
.vut-disclaimer {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--hp-mid);
  padding: 32px 40px 60px;
  max-width: 780px;
}

/* ── Legal page ── */
.vut-legal-inner { max-width: 700px; }
.vut-legal-inner h1 { font-size: clamp(28px, 3.4vw, 38px); font-weight: 700; color: var(--hp-ink); margin: 0 0 24px; }
.vut-legal-inner h2 { font-size: 19px; font-weight: 700; color: var(--hp-ink); margin: 28px 0 8px; }
.vut-legal-inner p { font-size: 15.5px; line-height: 1.65; color: var(--hp-mid); margin: 0 0 4px; }
.vut-legal-note { margin-top: 28px !important; font-style: italic; }
.vut-legal-flag {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
  color: #9A3412;
  background: #FFF3E0;
  border: 1px solid #FBC77E;
  border-radius: 8px;
  padding: 6px 12px;
  margin: 0 0 20px !important;
}

/* ── Forms ── */
.vut-form { display: flex; flex-direction: column; gap: 16px; text-align: left; }
.vut-form .form-item { display: flex; flex-direction: column; gap: 6px; margin: 0; }
.vut-form label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--hp-ink);
}
.vut-form input[type="text"],
.vut-form input[type="email"],
.vut-form input[type="tel"],
.vut-form select,
.vut-form textarea {
  font-size: 15px;
  padding: 11px 14px;
  border: 1.5px solid var(--hp-rule);
  border-radius: var(--hp-radius-sm);
  background: var(--hp-white);
  color: var(--hp-ink);
  width: 100%;
  box-sizing: border-box;
}
.vut-form input:focus,
.vut-form select:focus,
.vut-form textarea:focus {
  outline: none;
  border-color: var(--hp-blue);
  box-shadow: 0 0 0 3px rgba(33, 118, 184, 0.15);
}
.vut-form .form-type-checkbox { flex-direction: row; align-items: flex-start; gap: 10px; }
.vut-form .form-type-checkbox label { font-weight: 400; font-size: 13.5px; }
.vut-form .form-type-checkbox label a { color: var(--hp-blue); text-decoration: underline; }
.vut-form .form-actions { margin: 4px 0 0; }
.vut-form .form-actions .button {
  width: 100%;
  cursor: pointer;
  font-size: 15px;
}
.vut-form .hp-btn-primary { border: none; }
.vut-form .hp-btn-secondary { border: 1.5px solid var(--hp-rule); background: transparent; }
.vut-price-block .vut-form { margin-top: 4px; }

/* Drupal status messages already inherit site styling (.aml-page-messages);
   no extra rules needed here for the inline success state. */
