:root {
  --ctv-blue: #0d2d52;
  --ctv-blue-2: #123e70;
  --ctv-gold: #c99a36;
  --ctv-ink: #172033;
  --ctv-muted: #5d6a7a;
  --ctv-soft: #f4f7fb;
  --ctv-white: #ffffff;
  --ctv-border: rgba(13,45,82,.14);
  --ctv-shadow: 0 20px 60px rgba(13,45,82,.12);
}

.ctv-abogados, .ctv-abogados * { box-sizing: border-box; }
.ctv-abogados {
  color: var(--ctv-ink);
  font-family: inherit;
  line-height: 1.65;
  background: #fff;
}
.ctv-abogados a { color: var(--ctv-blue-2); }
.ctv-abogados h1, .ctv-abogados h2, .ctv-abogados h3 { color: var(--ctv-blue); line-height: 1.15; margin: 0 0 18px; font-weight: 800; }
.ctv-abogados h1 { font-size: clamp(36px, 5vw, 66px); letter-spacing: -1.4px; }
.ctv-abogados h2 { font-size: clamp(28px, 3vw, 42px); letter-spacing: -.8px; }
.ctv-abogados h3 { font-size: 20px; }
.ctv-abogados p { margin: 0 0 18px; }
.ctv-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ctv-gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  margin-bottom: 14px;
}
.ctv-kicker:before { content: ''; width: 34px; height: 2px; background: var(--ctv-gold); display: inline-block; }
.ctv-lead { font-size: clamp(18px, 2vw, 23px); color: #eef5ff; max-width: 850px; }
.ctv-note { font-size: 14px; color: rgba(255,255,255,.78); max-width: 820px; }
.ctv-section { padding: 72px 28px; max-width: 1240px; margin: 0 auto; }
.ctv-section--intro, .ctv-section--process { background: var(--ctv-soft); max-width: none; }
.ctv-section--intro > *, .ctv-section--process > * { max-width: 1240px; margin-left: auto; margin-right: auto; }
.ctv-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, .5fr);
  gap: 34px;
  align-items: stretch;
  padding: 86px 28px;
  background: radial-gradient(circle at 20% 20%, rgba(201,154,54,.18), transparent 28%), linear-gradient(135deg, #071a31 0%, #0d2d52 54%, #102d49 100%);
  overflow: hidden;
  position: relative;
}
.ctv-hero:after {
  content: '';
  position: absolute;
  right: -160px;
  top: -160px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}
.ctv-hero__content, .ctv-hero__card { position: relative; z-index: 1; }
.ctv-hero__content { max-width: 1000px; margin-left: auto; padding-left: clamp(0px, 4vw, 60px); }
.ctv-hero h1 { color: #fff; max-width: 980px; }
.ctv-hero__card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  padding: 32px;
  color: #fff;
  max-width: 390px;
  margin-right: auto;
  box-shadow: var(--ctv-shadow);
}
.ctv-hero__card h2 { color: #fff; font-size: 24px; }
.ctv-hero__card ul { padding-left: 20px; margin: 0; }
.ctv-hero__card li { margin-bottom: 12px; }
.ctv-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 18px; }
.ctv-actions--left { justify-content: flex-start; }
.ctv-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none !important;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.ctv-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(13,45,82,.14); }
.ctv-btn--primary { background: var(--ctv-gold); color: #10151e !important; }
.ctv-btn--ghost { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.24); color: #fff !important; }
.ctv-btn--ghost-dark { background: #fff; border-color: var(--ctv-border); color: var(--ctv-blue) !important; }
.ctv-btn--full { width: 100%; border: 0; }
.ctv-grid { display: grid; gap: 34px; align-items: start; }
.ctv-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ctv-grid--form { grid-template-columns: minmax(0, .8fr) minmax(320px, 1.2fr); }
.ctv-panel, .ctv-card, .ctv-service, .ctv-agenda, .ctv-contact-box, .ctv-form-card {
  background: #fff;
  border: 1px solid var(--ctv-border);
  border-radius: 24px;
  box-shadow: var(--ctv-shadow);
}
.ctv-panel { padding: 30px; }
.ctv-steps { margin: 0; padding-left: 20px; }
.ctv-steps li { margin-bottom: 14px; }
.ctv-cards { display: grid; gap: 22px; margin-top: 28px; }
.ctv-cards--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ctv-cards--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.ctv-card { padding: 28px; }
.ctv-card--light { box-shadow: none; background: var(--ctv-soft); }
.ctv-card h3, .ctv-service h3 { margin-bottom: 10px; }
.ctv-card p, .ctv-service p { color: var(--ctv-muted); }
.ctv-section--services { max-width: none; background: linear-gradient(180deg, #fff 0, #f7f9fd 100%); }
.ctv-section--services > * { max-width: 1240px; margin-left: auto; margin-right: auto; }
.ctv-service { padding: 28px; position: relative; overflow: hidden; }
.ctv-service span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  background: var(--ctv-blue);
  color: #fff;
  font-weight: 900;
  margin-bottom: 18px;
}
.ctv-section--meeting {
  background: var(--ctv-blue);
  color: #dfeaf7;
  border-radius: 32px;
  margin-top: 60px;
  margin-bottom: 60px;
}
.ctv-section--meeting h2, .ctv-section--meeting h3 { color: #fff; }
.ctv-agenda { background: rgba(255,255,255,.08); color: #eaf2fb; border-color: rgba(255,255,255,.16); padding: 28px; box-shadow: none; }
.ctv-agenda ul { margin: 0; padding-left: 20px; }
.ctv-agenda li { margin-bottom: 12px; }
.ctv-topics { margin-top: 34px; }
.ctv-topic-list { display: flex; flex-wrap: wrap; gap: 12px; }
.ctv-topic-list span { border: 1px solid rgba(255,255,255,.16); border-radius: 999px; padding: 10px 14px; background: rgba(255,255,255,.07); color: #fff; }
.ctv-timeline { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.ctv-timeline div { background: #fff; border: 1px solid var(--ctv-border); border-radius: 20px; padding: 24px; }
.ctv-timeline strong { display: block; color: var(--ctv-blue); margin-bottom: 8px; }
.ctv-timeline p { color: var(--ctv-muted); margin: 0; }
.ctv-section--form { padding-top: 86px; padding-bottom: 86px; }
.ctv-contact-box { padding: 24px; margin-top: 28px; box-shadow: none; }
.ctv-contact-box p { margin-bottom: 12px; }
.ctv-form-card { padding: clamp(22px, 4vw, 36px); }
.ctv-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.ctv-form label { display: flex; flex-direction: column; gap: 7px; font-weight: 800; color: var(--ctv-blue); font-size: 14px; }
.ctv-form label span { color: #b0761c; }
.ctv-form input, .ctv-form select, .ctv-form textarea {
  width: 100%;
  border: 1px solid var(--ctv-border);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--ctv-ink);
  background: #fff;
  font: inherit;
  font-weight: 500;
}
.ctv-form textarea, .ctv-consent, .ctv-btn--full { grid-column: 1 / -1; }
.ctv-consent { flex-direction: row !important; align-items: flex-start; font-weight: 600 !important; color: var(--ctv-muted) !important; }
.ctv-consent input { width: auto; margin-top: 5px; }
.ctv-consent span { color: var(--ctv-muted) !important; }
.ctv-hp { position: absolute !important; left: -9999px !important; height: 1px !important; width: 1px !important; opacity: 0 !important; }
.ctv-alert { padding: 14px 16px; border-radius: 14px; margin-bottom: 20px; font-weight: 700; }
.ctv-alert--success { background: #eaf8ef; color: #145c2e; border: 1px solid #bce8ca; }
.ctv-alert--error { background: #fff1f1; color: #7b1f1f; border: 1px solid #ffd0d0; }
.ctv-section--ethics { border-top: 1px solid var(--ctv-border); }
@media (max-width: 1024px) {
  .ctv-hero, .ctv-grid--2, .ctv-grid--form { grid-template-columns: 1fr; }
  .ctv-hero__content { margin-left: 0; padding-left: 0; }
  .ctv-hero__card { max-width: none; margin-right: 0; }
  .ctv-cards--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ctv-timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .ctv-section, .ctv-hero { padding-left: 18px; padding-right: 18px; }
  .ctv-hero { padding-top: 58px; padding-bottom: 58px; }
  .ctv-cards--3, .ctv-cards--4, .ctv-timeline, .ctv-form { grid-template-columns: 1fr; }
  .ctv-section--meeting { border-radius: 0; }
  .ctv-form textarea, .ctv-consent, .ctv-btn--full { grid-column: auto; }
}
