:root {
  --bg: #f4f8fc;
  --bg-soft: #edf4fb;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #0f172a;
  --muted: #5b6b80;
  --primary: #1144c8;
  --primary-strong: #0c2f86;
  --secondary: #0f766e;
  --accent: #e19b18;
  --line: rgba(15, 23, 42, 0.1);
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(17, 68, 200, 0.1), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(15, 118, 110, 0.08), transparent 22%),
    linear-gradient(180deg, #f9fbff 0%, var(--bg) 100%);
}

h1,
h2,
h3,
h4,
.brand strong {
  font-family: 'Sora', sans-serif;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

p {
  margin-top: 0;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  line-height: 1.05;
}

.brand-logo {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.06);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand strong {
  font-size: 1.25rem;
  background: linear-gradient(90deg, var(--primary-strong), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-group {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: -12px;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 0.9rem;
  padding-block: 5px;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.nav-link--button {
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-link--button span {
  font-size: 0.78em;
}

.nav-group.is-active .nav-link--button::after,
.nav-link--button:hover::after {
  width: 100%;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 2px);
  right: 0;
  min-width: 260px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--shadow);
  display: grid;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 5;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown,
.nav-group.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown__link {
  text-decoration: none;
  padding: 11px 14px;
  border-radius: 14px;
  color: var(--text);
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown__link:hover,
.nav-dropdown__link.is-active {
  background: rgba(17, 68, 200, 0.08);
  color: var(--primary-strong);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(17, 68, 200, 0.16);
  background: #fff;
  color: var(--primary);
  font-size: 1.3rem;
  cursor: pointer;
}

.header-cta {
  white-space: nowrap;
  padding: 12px 18px;
  font-size: 0.92rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #2d7df0);
  box-shadow: 0 18px 36px rgba(17, 68, 200, 0.26);
}

.button--secondary {
  color: var(--primary-strong);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 68, 200, 0.15);
}

.hero,
.page-banner {
  padding: 34px 0 14px;
}

.hero-shell,
.page-banner__shell,
.split,
.contact-grid,
.page-split,
.finance-example,
.footer-grid {
  display: grid;
  gap: 24px;
}

.hero-shell {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.hero-copy {
  padding-block: 18px;
}

.eyebrow,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--primary-strong);
  background: rgba(17, 68, 200, 0.1);
}

.badge {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero h1 {
  margin: 14px 0 18px;
  font-size: clamp(2.5rem, 5vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero p,
.page-banner__copy p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  border-radius: 32px;
  box-shadow: var(--shadow);
  background: #08142c;
}

.hero-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 20, 44, 0.08), rgba(8, 20, 44, 0.8));
}

.hero-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-panel__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 540px;
  padding: 28px;
  color: #fff;
}

.hero-panel__content h2 {
  margin: 14px 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.hero-panel__content p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 55ch;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.stat {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 14px;
  backdrop-filter: blur(12px);
}

.stat strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.stat span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}

.section,
.legal-content {
  padding: 70px 0;
}

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
}

.section__title {
  margin: 0;
  font-size: clamp(1.9rem, 3.1vw, 2.9rem);
  line-height: 1.08;
}

.section__lead {
  margin: 0;
  color: var(--muted);
  max-width: 66ch;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.finance-item,
.legal-card,
.timeline-item {
  background: var(--surface-strong);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 24px;
  box-shadow: 0 18px 52px rgba(15, 23, 42, 0.06);
}

.card,
.finance-item,
.timeline-item {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 72px rgba(15, 23, 42, 0.12);
}

.card--accent::before,
.finance-item::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.card h3,
.finance-item strong,
.timeline-item strong {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.card p,
.finance-item p,
.timeline-item p,
.legal-card p,
.legal-card li {
  color: var(--muted);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.finance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.finance-item strong {
  display: block;
  color: var(--primary-strong);
  font-size: 1.08rem;
}

.finance-example {
  grid-template-columns: 1fr 0.92fr;
  align-items: stretch;
  margin-top: 20px;
}

.example-box {
  background: linear-gradient(135deg, rgba(17, 68, 200, 0.1), rgba(15, 118, 110, 0.08));
  border: 1px solid rgba(17, 68, 200, 0.14);
  border-radius: 24px;
  padding: 28px;
}

.example-box ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.note {
  margin-top: 14px;
  font-size: 0.94rem;
  color: var(--muted);
}

.image-slab {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.image-slab img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.image-slab::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 20, 44, 0.05), rgba(8, 20, 44, 0.34));
}

.split {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.soft-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.soft-list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.contact-panel {
  background: linear-gradient(135deg, var(--primary-strong), #0f766e);
  color: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-grid {
  grid-template-columns: 1fr 0.82fr;
  gap: 0;
}

.contact-copy {
  padding: 32px;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.92);
}

.contact-panel .soft-list {
  background: transparent;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.contact-panel .soft-list li {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff !important;
  backdrop-filter: blur(10px);
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 0.95rem;
}

.contact-panel .soft-list li strong {
  color: #f59e0b;
  font-weight: 700;
}

.contact-panel .soft-list li a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.contact-card--map {
  padding: 24px;
  background: rgba(15, 23, 42, 0.45);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-map-info h3 {
  margin: 0 0 4px;
  font-size: 1.15rem;
  color: #fff;
  font-family: 'Sora', sans-serif;
}

.contact-map-info p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
}

.contact-map-frame {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}


.button--solicitar {
  background: linear-gradient(135deg, #e19b18, #f59e0b);
  color: #0f172a !important;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 16px 30px;
  border-radius: 999px;
  box-shadow: 0 8px 25px rgba(225, 155, 24, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button--solicitar:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 32px rgba(225, 155, 24, 0.65);
  background: linear-gradient(135deg, #f59e0b, #d97706);
}


.list-plain {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.page-banner__shell {
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 340px;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(17, 68, 200, 0.92), rgba(15, 118, 110, 0.82));
  color: #fff;
  box-shadow: var(--shadow);
}

.page-banner__copy {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-banner__copy p {
  color: rgba(255, 255, 255, 0.9);
}

.page-banner__art {
  position: relative;
  min-height: 340px;
}

.page-banner__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner__art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 17, 31, 0.08), rgba(7, 17, 31, 0.44));
}

.legal-card {
  padding: 28px;
}

.legal-card h2 {
  margin-top: 0;
  margin-bottom: 14px;
}

.legal-card h3 {
  margin: 28px 0 10px;
  color: var(--primary-strong);
}

.legal-card ul {
  padding-left: 18px;
}

.page-split {
  grid-template-columns: 1fr 0.9fr;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 14px;
}

.highlight-strip {
  background: linear-gradient(135deg, rgba(17, 68, 200, 0.12), rgba(225, 155, 24, 0.12));
  border: 1px solid rgba(17, 68, 200, 0.14);
  border-radius: 22px;
  padding: 18px;
}

.site-footer {
  margin-top: 72px;
  background: #07111f;
  color: rgba(255, 255, 255, 0.86);
}

.footer-grid {
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  padding: 46px 0;
}

.brand--footer strong {
  color: #fff;
  -webkit-text-fill-color: initial;
  background: none;
}

.brand--footer span {
  color: rgba(255, 255, 255, 0.64);
}

.footer-grid h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.03rem;
}

.footer-grid a {
  color: inherit;
  text-decoration: none;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0 28px;
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.66);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .header-inner {
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: 82px 16px auto 16px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 14px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 24px;
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .header-cta {
    width: 100%;
  }

  .nav-group {
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .nav-link--button {
    width: 100%;
    justify-content: space-between;
    padding: 6px 0;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 12px;
    margin-top: 8px;
    background: transparent;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    display: none;
  }

  .nav-group.is-open .nav-dropdown {
    display: grid;
  }

  .nav-dropdown__link {
    padding: 10px 0;
  }

  .hero-shell,
  .page-banner__shell,
  .split,
  .contact-grid,
  .page-split,
  .finance-example,
  .footer-grid,
  .grid--3,
  .grid--2,
  .finance-grid,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .section__head {
    flex-direction: column;
    align-items: start;
  }

  .hero-panel,
  .hero-panel__content {
    min-height: 460px;
  }

  .footer-meta {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, calc(100% - 22px));
  }

  .hero,
  .page-banner {
    padding-top: 18px;
  }

  .section,
  .legal-content {
    padding: 54px 0;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}

/* ==========================================================================
   Floating WhatsApp Widget
   ========================================================================== */
.wa-float-container {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 9999;
  display: flex;
  align-items: center;
}

.wa-float-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 4px 10px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  transition: transform 0.28s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.28s ease;
  animation: wa-pulse 2.2s infinite ease-in-out;
}

.wa-float-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.65), 0 6px 14px rgba(0, 0, 0, 0.2);
  animation: none;
}

.wa-float-icon {
  display: block;
  transition: transform 0.25s ease;
}

.wa-float-btn:hover .wa-float-icon {
  transform: rotate(8deg) scale(1.05);
}

.wa-float-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: #0f172a;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
  opacity: 0.95;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.wa-float-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #0f172a;
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6), 0 8px 24px rgba(37, 211, 102, 0.35);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 8px 24px rgba(37, 211, 102, 0.35);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 8px 24px rgba(37, 211, 102, 0.35);
  }
}

@media (max-width: 640px) {
  .wa-float-container {
    bottom: 20px;
    right: 18px;
  }
  .wa-float-btn {
    width: 54px;
    height: 54px;
  }
  .wa-float-icon {
    width: 28px;
    height: 28px;
  }
  .wa-float-tooltip {
    display: none;
  }
}

