@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:wght@500;600;700&display=swap");
:root {
  --blue: #07194a;
  --blue-dark: #031238;
  --blue-soft: #10265f;
  --gold: #a58a00;
  --olive: #7a7d1d;
  --cream: #f7f5ef;
  --cream-2: #fbfaf6;
  --white: #ffffff;
  --text: #122044;
  --muted: #697387;
  --line: rgba(7,25,74,.12);
  --shadow: 0 24px 70px rgba(7,25,74,.12);
  --shadow-soft: 0 14px 38px rgba(7,25,74,.08);
  --radius: 22px;
  --container: min(1180px, 92%);
  --font-main: "Inter", Arial, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --ease: cubic-bezier(.22,.61,.36,1);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-main);
  background: var(--cream-2);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
select,
textarea {
  font-family: inherit;
}
.container {
  width: var(--container);
  margin-inline: auto;
}
.top-bar {
  background: var(--blue-dark);
  color: #fff;
  min-height: 48px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;
  font-weight: 700;
}
.top-bar__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.top-bar__actions a {
  opacity: .9;
  transition: color .25s ease, opacity .25s ease;
}
.top-bar__actions a:hover {
  color: #d6d98a;
  opacity: 1;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(7,25,74,.08);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 18px 46px rgba(7,25,74,.1);
}
.header-inner {
  width: var(--container);
  min-height: 104px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand__logo {
  width: 76px;
}
.brand__title {
  display: block;
  font-family: var(--font-display);
  font-size: 29px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}
.brand__subtitle {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2.3px;
  font-weight: 900;
  color: var(--olive);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-size: 13px;
  font-weight: 900;
  color: var(--blue);
  position: relative;
  padding: 8px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width .25s ease;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--olive);
}
.main-nav a:hover::after,
.main-nav a.active::after {
  width: 36px;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 13px;
  background: var(--blue);
  cursor: pointer;
  padding: 12px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 20px;
}
.hero,
section.hero {
  display: block;
  min-height: 0;
  grid-template-columns: none;
  position: relative;
  padding: 92px 0;
  background:
    radial-gradient(circle at top right, rgba(165,138,0,.16), transparent 35%),
    linear-gradient(135deg, #fff 0%, var(--cream) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.9), rgba(255,255,255,.45)),
    url("../img/protocolizacion-notaria-rojas.webp");
  background-size: cover;
  background-position: center;
  opacity: .16;
  pointer-events: none;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 58px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--olive);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 16px;
}
.eyebrow::after {
  content: "";
  width: 52px;
  height: 1px;
  background: var(--olive);
}
h1,
h2 {
  font-family: var(--font-display);
  color: var(--blue);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.8px;
}
h1 {
  font-size: clamp(42px, 5vw, 68px);
}
h2 {
  font-size: clamp(34px, 3.5vw, 52px);
}
h3 {
  color: var(--blue);
  font-weight: 900;
  line-height: 1.25;
}
.hero__lead {
  margin-top: 24px;
  font-size: clamp(1.12rem, 1.35vw, 1.35rem);
  line-height: 1.75;
  color: var(--muted);
  max-width: 720px;
}
.hero__badges {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__badges span {
  background: #fff;
  border: 1px solid rgba(7,25,74,.1);
  box-shadow: var(--shadow-soft);
  padding: 11px 15px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  color: var(--blue);
}
.hero__actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.btn {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .28s var(--ease), background .28s ease, color .28s ease, border-color .28s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover {
  background: var(--olive);
}
.btn-secondary {
  background: #fff;
  color: var(--blue);
  border-color: rgba(7,25,74,.2);
}
.btn-secondary:hover {
  color: var(--olive);
  border-color: var(--olive);
}
.btn-light {
  background: #fff;
  color: var(--blue);
}
.btn-outline-light {
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--blue);
}
.hero-card {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 34px;
  backdrop-filter: blur(14px);
}
.hero-card__tag {
  color: var(--olive);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.hero-card h2 {
  font-size: 30px;
}
.hero-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}
.form {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 16px 18px;
  background: #fff;
  color: var(--text);
  outline: none;
  font-size: 14px;
}
textarea {
  min-height: 130px;
  resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(122,125,29,.13);
}
.upload-box {
  background: #fff;
  border: 1px dashed rgba(7,25,74,.22);
  border-radius: 16px;
  padding: 18px;
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease;
}
.upload-box:hover {
  border-color: var(--olive);
  background: #fbfaf6;
}
.upload-box strong {
  display: block;
  color: var(--blue);
}
.upload-box span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}
.file-list {
  display: grid;
  gap: 8px;
}
.file-list div {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}
.form-message {
  color: var(--olive);
  font-size: 12px;
  font-weight: 900;
}
.trust-strip {
  background: var(--blue);
  color: #fff;
  padding: 24px 0;
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.trust-strip strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}
.trust-strip span {
  color: rgba(255,255,255,.72);
  font-size: 13px;
}
.section {
  padding: 86px 0;
}
.section-soft {
  background: var(--cream);
}
.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}
.section-heading p {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}
.cards {
  display: grid;
  gap: 24px;
}
.cards-4 {
  grid-template-columns: repeat(4, 1fr);
}
.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}
.card {
  background: #fff;
  border: 1px solid rgba(7,25,74,.08);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform .32s var(--ease), box-shadow .32s ease, border-color .32s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(165,138,0,.26);
}
.card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}
.icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #eef0df;
  color: var(--olive);
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 18px;
}
.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 54px;
  align-items: center;
}
.split p {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}
.premium-panel,
.requirements {
  background: #fff;
  border: 1px solid rgba(7,25,74,.08);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 34px;
}
.premium-panel ul {
  list-style: none;
  margin-top: 20px;
  display: grid;
  gap: 14px;
}
.premium-panel li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 700;
}
.premium-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--olive);
}
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.process__item {
  background: #fff;
  border: 1px solid rgba(7,25,74,.08);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.process__item span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
  margin-bottom: 16px;
}
.process__item p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}
.requirements {
  display: grid;
  gap: 18px;
}
.requirements div {
  border-left: 4px solid var(--olive);
  padding-left: 18px;
}
.requirements p {
  margin-top: 6px;
}
.coverage {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-soft) 100%);
  color: #fff;
  padding: 78px 0;
}
.coverage .container {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: center;
}
.coverage h2 {
  color: #fff;
}
.coverage p {
  margin-top: 18px;
  color: rgba(255,255,255,.78);
  line-height: 1.75;
}
.coverage__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.coverage__cities span {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}
.faq {
  display: grid;
  gap: 14px;
}
.faq details {
  background: #fff;
  border: 1px solid rgba(7,25,74,.08);
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: var(--shadow-soft);
}
.faq summary {
  cursor: pointer;
  color: var(--blue);
  font-weight: 900;
}
.faq p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.final-cta {
  padding: 48px 0;
}
.final-cta__box {
  background:
    radial-gradient(circle at top right, rgba(165,138,0,.18), transparent 35%),
    linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: 34px;
  color: #fff;
  padding: 54px;
  box-shadow: var(--shadow);
}
.final-cta__box h2 {
  color: #fff;
  max-width: 780px;
}
.final-cta__box p {
  margin-top: 16px;
  max-width: 720px;
  color: rgba(255,255,255,.78);
  line-height: 1.75;
}
.related {
  padding-top: 28px;
}
.related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}
.related__grid a {
  background: #fff;
  border: 1px solid rgba(7,25,74,.08);
  border-radius: 16px;
  padding: 20px;
  color: var(--blue);
  font-weight: 900;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, color .25s ease;
}
.related__grid a:hover {
  transform: translateY(-3px);
  color: var(--olive);
}
.site-footer {
  background: var(--blue-dark);
  color: #fff;
  padding: 54px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 42px;
}
.footer-logo {
  width: 64px;
  margin-bottom: 16px;
}
.footer-grid h3 {
  color: #fff;
  margin-bottom: 14px;
}
.footer-grid p,
.footer-grid a {
  display: block;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  font-size: 14px;
  margin-bottom: 6px;
}
.footer-grid a:hover {
  color: #d6d98a;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: .14s;
}
@media (max-width: 1100px) {
  .hero__grid,
  .split,
  .coverage .container {
    grid-template-columns: 1fr;
  }
  .cards-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .process {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 860px) {
  .top-bar {
    padding: 16px 20px;
    flex-direction: column;
    text-align: center;
  }
  .top-bar__actions {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }
  .header-inner {
    min-height: 86px;
  }
  .brand__logo {
    width: 58px;
  }
  .brand__title {
    font-size: 22px;
  }
  .brand__subtitle {
    font-size: 8px;
    letter-spacing: 1.4px;
  }
  .menu-toggle {
    display: block;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 86px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 24px 5vw;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 28px 52px rgba(7,25,74,.12);
  }
  .main-nav.is-open {
    display: flex;
  }
  .trust-strip__grid,
  .cards-3,
  .cards-4,
  .related__grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero,
  .section {
    padding: 62px 0;
  }
  .hero-card,
  .final-cta__box {
    padding: 28px;
  }
  .hero__actions,
  .btn {
    width: 100%;
  }
  .process {
    grid-template-columns: 1fr;
  }
}
JAVA
