:root {
  color-scheme: light;
  --navy: #061c43;
  --navy-2: #0b2d63;
  --navy-3: #123b78;
  --gold: #b58a35;
  --gold-light: #d7ba70;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c4a;
  --cream: #fbf8f1;
  --paper: #ffffff;
  --ink: #081832;
  --muted: #5d6472;
  --line: rgba(6, 28, 67, 0.14);
  --shadow: 0 24px 70px rgba(6, 28, 67, 0.16);
  --soft-shadow: 0 16px 42px rgba(6, 28, 67, 0.09);
  --surface: rgba(255, 255, 255, 0.96);
  --surface-strong: #fbf8f1;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --navy: #07101f;
  --navy-2: #0d1d34;
  --navy-3: #152a46;
  --gold: #d7ba70;
  --gold-light: #f0d68a;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c4a;
  --cream: #0b1732;
  --paper: #f2f4f7;
  --ink: #f2f4f7;
  --muted: #b9c0d2;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --soft-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
  --surface: rgba(8, 23, 53, 0.88);
  --surface-strong: #0b1a34;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
  background: #ffffff;
}

body {
  margin: 0;
  width: 100%;
  min-height: 100vh;
  border: 0;
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
  color: var(--ink);
  overflow-x: hidden;
  background: #ffffff;
}

main {
  width: 100%;
  overflow: hidden;
  background: #ffffff;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.section,
.site-footer,
#inicio {
  scroll-margin-top: 128px;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  height: 116px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 10px clamp(18px, 5vw, 72px);
  color: var(--paper);
  background: rgba(6, 28, 67, 0.14);
  backdrop-filter: blur(12px);
  transition: background 0.25s ease, box-shadow 0.25s ease, height 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled {
  height: 102px;
  background: rgba(6, 28, 67, 0.96);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled .brand img {
  width: 82px;
  height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 255px;
}

.brand picture {
  display: block;
  flex: 0 0 auto;
}

.brand img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  padding: 4px;
  border-radius: 8px;
  background: var(--paper);
  transition: width 0.25s ease, height 0.25s ease;
}

.brand strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  font-size: 0.95rem;
}

.mobile-nav-close {
  display: none;
  margin-left: auto;
  background: transparent;
  border: none;
  color: var(--paper);
  font-size: 1.8rem;
  font-weight: 900;
  cursor: pointer;
}

.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.mobile-nav-backdrop.is-visible {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.site-nav a {
  opacity: 0.95;
  transition: opacity 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-light);
  transform: translateY(-1px);
}

.site-nav a.is-active {
  color: var(--gold);
}

.site-nav a,
.btn,
.header-cta,
.contact-cards a,
.footer-links a {
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.header-cta:hover,
.contact-cards a:hover {
  transform: translateY(-2px);
}

.btn:active,
.header-cta:active,
.theme-toggle:active,
.menu-toggle:active,
.back-to-top:active,
.floating-whatsapp:active {
  transform: translateY(0);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
  white-space: normal;
}

.header-cta,
.btn.primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 12px 26px rgba(181, 138, 53, 0.26);
}

.header-cta[href*="whatsapp"] {
  color: #ffffff;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.28);
}

.btn.ghost {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.btn.outline {
  color: var(--navy);
  border-color: rgba(6, 28, 67, 0.18);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: none;
}

.btn.full {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--paper);
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.theme-icon {
  position: relative;
  width: 18px;
  height: 18px;
  display: block;
  border-radius: 50%;
  background: currentColor;
  box-shadow: inset -6px -4px 0 rgba(6, 28, 67, 0.96);
}

html[data-theme="dark"] .theme-icon {
  width: 16px;
  height: 16px;
  background: var(--gold-light);
  box-shadow:
    0 -9px 0 -6px var(--gold-light),
    0 9px 0 -6px var(--gold-light),
    9px 0 0 -6px var(--gold-light),
    -9px 0 0 -6px var(--gold-light),
    6px 6px 0 -6px var(--gold-light),
    -6px -6px 0 -6px var(--gold-light),
    6px -6px 0 -6px var(--gold-light),
    -6px 6px 0 -6px var(--gold-light);
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(215, 186, 112, 0.55);
  background: rgba(255, 255, 255, 0.16);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--paper);
}

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(215, 186, 112, 0.24), transparent 30%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 52%, var(--navy-3) 100%);
}

.scroll-progress {
  position: fixed;
  top: 116px;
  left: 0;
  width: 0;
  height: 4px;
  z-index: 35;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 20px rgba(181, 138, 53, 0.22);
  transition: width 0.16s ease;
}

.hero-badges {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-badges strong {
  color: var(--gold-light);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
  filter: blur(1.5px) saturate(1.02) contrast(1.04);
  opacity: 0.78;
  transform: scale(1.015);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 28, 67, 0.94) 0%, rgba(6, 28, 67, 0.74) 44%, rgba(6, 28, 67, 0.28) 100%),
    linear-gradient(0deg, rgba(6, 28, 67, 0.58) 0%, rgba(6, 28, 67, 0.08) 58%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  padding: 80px clamp(18px, 6vw, 84px) 80px;
  color: var(--paper);
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 0;
  border-radius: 38px;
  box-shadow: 0 28px 98px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: anywhere;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1.02;
}

h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.02;
}

h3 {
  color: var(--navy);
  font-size: 1.15rem;
}

.hero-copy {
  width: min(620px, 100%);
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.65;
}

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

.hero-actions .btn {
  min-width: 180px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-trust li {
  position: relative;
  padding: 10px 12px 10px 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-trust li::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  transform: translateY(-50%);
}

.services-carousel {
  display: grid;
  grid-template-columns: 52px minmax(0, 780px) 52px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 16px clamp(18px, 6vw, 84px);
  color: var(--paper);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border: 0;
}

.hero-strip {
  display: flex;
  overflow: hidden;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-strip::-webkit-scrollbar {
  display: none;
}

.hero-strip a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 calc((100% - 2px) / 3);
  min-height: 58px;
  padding: 14px 18px;
  color: var(--paper);
  text-align: center;
  font-weight: 800;
  font-size: 1.02rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
  background: transparent;
  scroll-snap-align: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.hero-strip a:hover,
.hero-strip a:focus-visible {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
}

.carousel-control {
  width: 52px;
  height: 58px;
  border: 0;
  border-radius: 8px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  font-size: 2.15rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.carousel-control:hover,
.carousel-control:focus-visible {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  color: var(--paper);
  background: var(--gold);
}

.stat-item {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.stat-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(6, 28, 67, 0.12);
}

.stat-item {
  min-height: 128px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 6px;
  padding: 24px clamp(18px, 5vw, 72px);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(6, 28, 67, 0.98), rgba(18, 59, 120, 0.94)),
    radial-gradient(circle at top right, rgba(215, 186, 112, 0.22), transparent 34%);
}

.stat-item strong {
  color: var(--gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 0.9;
}

.stat-item span {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  line-height: 1.45;
}

.stat-item-light strong,
.stat-item-light span {
  color: var(--paper);
}

.section {
  width: 100%;
  padding: clamp(72px, 10vw, 120px) clamp(18px, 6vw, 84px);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 42px;
}

.section-heading.compact {
  max-width: 760px;
}

.intro {
  background:
    linear-gradient(135deg, rgba(251, 248, 241, 0.98), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at 82% 18%, rgba(181, 138, 53, 0.14), transparent 30%);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  justify-items: center;
  padding: clamp(48px, 7vw, 86px) clamp(28px, 5vw, 56px) clamp(28px, 5vw, 56px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 70px rgba(6, 28, 67, 0.07);
}

.intro-text {
  justify-self: stretch;
  color: var(--muted);
  font-size: clamp(1.18rem, 1.6vw, 1.38rem);
  line-height: 1.85;
}

.intro-text p {
  margin-bottom: 20px;
}

.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.quick-facts span {
  padding: 12px 15px;
  border: 1px solid rgba(181, 138, 53, 0.32);
  border-radius: 6px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 800;
}

.trust-panel {
  display: grid;
  place-items: center;
  align-self: start;
  justify-self: center;
  width: fit-content;
  max-width: 100%;
  margin-top: -102px;
  padding: 0;
  border: 0;
  border-radius: 32px;
  background: transparent;
  box-shadow: none;
}

.trust-panel picture {
  display: grid;
  place-items: center;
  width: fit-content;
  max-width: 100%;
}

.trust-panel img {
  width: min(100%, 640px);
  max-height: 640px;
  object-fit: contain;
  border-radius: 30px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.social-proof {
  background: linear-gradient(180deg, #ffffff 0%, #fbf8f1 100%);
}

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

.proof-grid article {
  min-height: 220px;
  padding: 30px;
  border: 1px solid rgba(6, 28, 67, 0.06);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(6, 28, 67, 0.06);
}

.proof-grid strong {
  display: block;
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 900;
}

.proof-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.proof-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding: 24px 28px;
  border: 1px solid rgba(181, 138, 53, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 42px rgba(6, 28, 67, 0.05);
}

.proof-cta p {
  margin: 0;
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 900;
}

.proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.partners {
  background: #ffffff;
}

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

.partner-grid article {
  min-height: 230px;
  padding: 30px;
  border: 1px solid rgba(6, 28, 67, 0.06);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 248, 241, 0.94));
  box-shadow: 0 18px 48px rgba(6, 28, 67, 0.06);
}

.partner-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold-light);
  font-weight: 900;
}

.partner-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 900;
}

.partner-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.authority {
  background:
    radial-gradient(circle at 82% 12%, rgba(215, 186, 112, 0.18), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.authority-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.18);
}

.authority-panel h2 {
  color: var(--paper);
}

.authority-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.8;
}

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

.authority-list li {
  position: relative;
  padding: 18px 18px 18px 44px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  line-height: 1.55;
}

.authority-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 5px rgba(215, 186, 112, 0.16);
}

.services {
  background: linear-gradient(180deg, #ffffff 0%, #fbf8f1 100%);
}

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

.service-card {
  min-height: 245px;
  padding: 28px;
  border: 1px solid rgba(6, 28, 67, 0.05);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 16px 36px rgba(6, 28, 67, 0.06);
  transition: transform 0.35s cubic-bezier(.22,.61,.36,1), box-shadow 0.35s ease, border-color 0.28s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(181, 138, 53, 0.25);
  box-shadow: 0 32px 80px rgba(6, 28, 67, 0.12);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  max-width: 100%;
  margin-bottom: 20px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: inset 0 -3px 0 rgba(215, 186, 112, 0.35);
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  overflow-wrap: anywhere;
}

.service-card p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.advantages {
  background:
    linear-gradient(180deg, #fbf8f1 0%, #ffffff 100%);
}

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

.advantage-grid article {
  min-height: 270px;
  padding: 32px;
  border: 1px solid rgba(6, 28, 67, 0.05);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(6, 28, 67, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(6, 28, 67, 0.12);
}

.advantage-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.45rem;
  font-weight: 700;
}

.advantage-grid h3 {
  font-size: 1.32rem;
  line-height: 1.22;
}

.advantage-grid p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.78;
}

.coverage {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbf8f1 100%);
}

.coverage-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.65fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(32px, 5vw, 60px);
  border: 0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 70px rgba(6, 28, 67, 0.06);
  backdrop-filter: blur(18px);
}

.coverage-panel h2 {
  font-size: clamp(2.25rem, 4.4vw, 4.35rem);
}

.coverage-panel p {
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.82;
}

.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.coverage-tags a {
  padding: 14px 16px;
  border: 1px solid rgba(6, 28, 67, 0.12);
  border-radius: 6px;
  color: var(--navy);
  background: linear-gradient(180deg, #fff, #fbf8f1);
  box-shadow: var(--soft-shadow);
  font-size: 1.06rem;
  font-weight: 800;
  overflow-wrap: anywhere;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.coverage-tags a:hover,
.coverage-tags a:focus-visible {
  color: var(--gold);
  border-color: rgba(181, 138, 53, 0.38);
  transform: translateY(-2px);
}

.process-band {
  padding: clamp(64px, 9vw, 110px) clamp(18px, 6vw, 84px);
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(6, 28, 67, 0.98), rgba(11, 45, 99, 0.94)),
    url("logo-blessed.webp") center/340px no-repeat;
}

.process-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.62fr);
  gap: clamp(48px, 9vw, 150px);
  align-items: start;
}

.process-inner h2 {
  color: var(--paper);
}

.steps {
  grid-column: 2;
  justify-self: end;
  margin: 0;
  padding: 0;
  width: min(100%, 520px);
  counter-reset: step;
  list-style: none;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 0 0 28px 70px;
  border-left: 1px solid rgba(215, 186, 112, 0.32);
}

.steps li:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: -24px;
  top: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold-light);
  font-weight: 900;
}

.steps strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.steps span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.quote {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 7vw, 84px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(251, 248, 241, 0.98), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at 84% 18%, rgba(181, 138, 53, 0.16), transparent 32%);
}

.quote-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.quote-copy {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 24px;
  border: 1px solid rgba(6, 28, 67, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 248, 241, 0.96));
  box-shadow: 0 24px 72px rgba(6, 28, 67, 0.1);
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-cards a {
  padding: 18px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(6, 28, 67, 0.08);
}

.contact-cards a:has(.brand-icon) {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-icon {
  display: inline-block;
  flex: 0 0 auto;
  overflow: visible;
  vertical-align: -0.18em;
}

.contact-cards a[href*="whatsapp"] {
  border-left-color: var(--whatsapp);
}

.contact-cards a[href*="whatsapp"] span {
  color: var(--whatsapp-dark);
}

.contact-cards a[href*="whatsapp"] strong {
  color: var(--whatsapp-dark);
}

.contact-cards span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-cards strong {
  display: block;
  color: var(--navy);
  font-size: 1.12rem;
  overflow-wrap: anywhere;
}

.contact-cards .instagram-link {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-cards .brand-icon + span,
.contact-cards .instagram-link > span {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-transform: none;
}

.contact-cards .brand-icon-gmail + span span,
.contact-cards .brand-icon-instagram + span span,
.contact-cards .brand-icon-whatsapp + span span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-cards .brand-icon-gmail + span strong,
.contact-cards .brand-icon-instagram + span strong,
.contact-cards .brand-icon-whatsapp + span strong {
  display: block;
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 40px);
  border: 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 72px rgba(6, 28, 67, 0.1);
}

.form-grid,
.dynamic-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.dynamic-form {
  display: grid;
  gap: 18px;
}

.dynamic-fieldset {
  display: grid;
  gap: 26px;
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(6, 28, 67, 0.12);
  border-radius: 12px;
  background: rgba(251, 248, 241, 0.62);
}

.dynamic-fieldset legend {
  padding: 0 8px;
  color: var(--navy);
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.form-section {
  display: grid;
  gap: 16px;
}

.form-section + .form-section {
  padding-top: 24px;
  border-top: 1px solid rgba(6, 28, 67, 0.1);
}

.form-section-heading {
  display: grid;
  gap: 4px;
}

.form-section-heading h4 {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
}

.form-section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field-label {
  display: flex;
  gap: 8px;
  align-items: baseline;
  justify-content: space-between;
}

.field-label small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.dynamic-form-placeholder {
  margin: 0;
  padding: 18px;
  border: 1px dashed rgba(6, 28, 67, 0.2);
  border-radius: 10px;
  color: var(--muted);
  text-align: center;
}

.secure-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  border: 1px solid rgba(6, 28, 67, 0.18);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(215, 186, 112, 0.28);
  border-color: var(--gold);
}

.quote-form label:has(input[name="whatsapp"]) {
  color: var(--whatsapp-dark);
}

.quote-form input[name="whatsapp"] {
  border-color: rgba(37, 211, 102, 0.42);
}

.quote-form input[name="whatsapp"]:focus {
  outline-color: rgba(37, 211, 102, 0.24);
  border-color: var(--whatsapp);
}

.consent-field {
  display: flex !important;
  flex-direction: row;
  gap: 10px !important;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.5;
}

.consent-field input {
  flex: 0 0 auto;
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.quote-form button[disabled] {
  cursor: wait;
  opacity: 0.7;
}

.form-status.is-success {
  color: #18743b;
}

.form-status.is-error {
  color: #a52828;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.privacy-note {
  margin: -4px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(181, 138, 53, 0.24);
  border-radius: 6px;
  color: var(--muted);
  background: rgba(251, 248, 241, 0.72);
  font-size: 0.88rem;
  line-height: 1.5;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 44px clamp(18px, 6vw, 84px);
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(180deg, #03142f, #061b44);
}

.site-footer .footer-links {
  justify-content: flex-end;
}

.site-footer img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  border-radius: 10px;
  background: var(--paper);
  padding: 8px;
  box-shadow: var(--soft-shadow);
}

.site-footer p {
  max-width: 460px;
  margin: 14px 0 0;
}

.footer-email {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold-light);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--paper);
  font-weight: 800;
}

.footer-links a[href*="whatsapp"] {
  color: var(--whatsapp);
}

.footer-social,
.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-links .brand-icon {
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.18));
}

.floating-whatsapp {
  position: fixed;
  z-index: 25;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.28);
  font-size: 1.7rem;
  font-weight: 900;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.02);
}

.header-cta .brand-icon,
.floating-whatsapp svg {
  display: inline-block;
}

.header-cta .brand-icon-whatsapp {
  margin-right: 8px;
}

/* Copyright in footer */
.site-footer .copyright {
  margin-top: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}

/* Accessible focus styles */
a:focus-visible,
.btn:focus-visible,
.menu-toggle:focus-visible,
.theme-toggle:focus-visible,
.back-to-top:focus-visible,
.floating-whatsapp:focus-visible,
.contact-cards a:focus-visible,
.site-nav a:focus-visible {
  outline: 3px solid rgba(215,186,112,0.28);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Slight visual refresh: smoother cards and subtle gradients */
.service-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbf8f1 100%);
  transition: transform 0.28s cubic-bezier(.2,.9,.2,1), box-shadow 0.28s ease;
}

.hero-content {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.03));
  padding: 120px clamp(18px, 6vw, 84px) 120px;
  border-radius: 38px;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 156px;
  z-index: 60;
  min-width: 220px;
  max-width: 320px;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(3, 20, 47, 0.94);
  color: var(--paper);
  box-shadow: 0 12px 36px rgba(3, 20, 47, 0.48);
  font-weight: 700;
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

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

.back-to-top {
  position: fixed;
  z-index: 24;
  right: 22px;
  bottom: 92px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(6, 28, 67, 0.92);
  box-shadow: 0 12px 26px rgba(6, 28, 67, 0.22);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.back-to-top::after {
  content: "";
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateY(3px) rotate(45deg);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--navy-3);
}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 98px;
  }

  .scroll-progress {
    top: 98px;
  }

  .brand img {
    width: 78px;
    height: 78px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    top: 98px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: 8px;
    color: var(--paper);
    background: rgba(6, 28, 67, 0.98);
    box-shadow: var(--shadow);
    z-index: 21;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav.is-open + .theme-toggle,
  .site-nav.is-open + .theme-toggle + .header-cta {
    pointer-events: none;
  }

  .mobile-nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    padding: 18px 16px;
    outline: none;
  }

  .header-cta {
    display: none;
  }

  body.nav-open {
    overflow: hidden;
    width: 100%;
    touch-action: none;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-media img {
    object-position: right top;
    opacity: 0.58;
    filter: blur(2px) saturate(1.02) contrast(1.04);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 28, 67, 0.9), rgba(6, 28, 67, 0.62)),
      linear-gradient(0deg, rgba(6, 28, 67, 0.78), rgba(6, 28, 67, 0.18));
  }

  .hero-content {
    padding-top: 130px;
    padding-bottom: 96px;
  }

  .intro-grid,
  .process-inner,
  .quote,
  .coverage-panel,
  .authority-panel {
    grid-template-columns: 1fr;
  }

  .trust-panel {
    margin-top: 0;
  }

  .steps {
    grid-column: auto;
    justify-self: stretch;
    margin-left: 0;
  }

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

  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .stats-band,
  .proof-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .brand {
    min-width: 0;
  }

  .brand span {
    display: none;
  }

  .hero-actions,
  .footer-links {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .services-carousel {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 8px;
    padding: 12px 14px;
  }

  .hero-strip a {
    flex-basis: calc((100% - 1px) / 2);
    min-height: 52px;
    padding: 10px 12px;
    font-size: 0.95rem;
  }

  .carousel-control {
    width: 42px;
    height: 52px;
  }

  .form-grid,
  .dynamic-fields {
    grid-template-columns: 1fr;
  }

  .dynamic-fieldset {
    padding: 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }

  .back-to-top {
    right: 16px;
    bottom: 86px;
  }

  .toast {
    right: 16px;
    bottom: 142px;
    max-width: calc(100vw - 32px);
  }

  .stat-item,
  .proof-grid article,
  .partner-grid article,
  .authority-panel,
  .coverage-panel {
    padding: 22px;
  }

  .proof-cta {
    align-items: stretch;
    padding: 20px;
  }

  .proof-actions,
  .proof-cta .btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .hero-strip a {
    flex-basis: 100%;
  }
}

/* Dark theme overrides stay last so the light-theme refresh rules cannot win the cascade. */
html[data-theme="dark"],
html[data-theme="dark"] body,
html[data-theme="dark"] main {
  background:
    radial-gradient(circle at top left, rgba(215, 186, 112, 0.12), transparent 22%),
    linear-gradient(180deg, #07101f 0%, #0b1732 44%, #07101f 100%);
}

html[data-theme="dark"] body {
  color: var(--ink);
}

html[data-theme="dark"] h1,
html[data-theme="dark"] h2,
html[data-theme="dark"] h3,
html[data-theme="dark"] p,
html[data-theme="dark"] .section-heading h2,
html[data-theme="dark"] .intro-text,
html[data-theme="dark"] .service-card p,
html[data-theme="dark"] .advantage-grid p,
html[data-theme="dark"] .coverage-panel p,
html[data-theme="dark"] .quote-copy p,
html[data-theme="dark"] .contact-cards span,
html[data-theme="dark"] .contact-cards strong,
html[data-theme="dark"] .quote-form label,
html[data-theme="dark"] .coverage-tags a,
html[data-theme="dark"] .steps strong,
html[data-theme="dark"] .steps span,
html[data-theme="dark"] .form-status {
  color: var(--ink);
}

html[data-theme="dark"] .eyebrow,
html[data-theme="dark"] .brand small,
html[data-theme="dark"] .footer-email {
  color: var(--gold-light);
}

html[data-theme="dark"] .services,
html[data-theme="dark"] .social-proof,
html[data-theme="dark"] .partners {
  background: #081735;
}

html[data-theme="dark"] .advantages,
html[data-theme="dark"] .coverage,
html[data-theme="dark"] .intro,
html[data-theme="dark"] .quote {
  background: linear-gradient(180deg, rgba(8, 23, 53, 0.96), rgba(7, 16, 31, 0.98));
}

html[data-theme="dark"] .process-band {
  background:
    linear-gradient(135deg, rgba(7, 16, 31, 0.98), rgba(13, 29, 52, 0.94)),
    url("logo-blessed.webp") center/340px no-repeat;
}

html[data-theme="dark"] .stats-band {
  background: var(--navy-3);
}

html[data-theme="dark"] .site-header,
html[data-theme="dark"] .theme-toggle,
html[data-theme="dark"] .menu-toggle,
html[data-theme="dark"] .hero-content,
html[data-theme="dark"] .services-carousel,
html[data-theme="dark"] .hero-strip,
html[data-theme="dark"] .carousel-control,
html[data-theme="dark"] .intro-grid,
html[data-theme="dark"] .quote-copy,
html[data-theme="dark"] .contact-cards a,
html[data-theme="dark"] .quote-form,
html[data-theme="dark"] .dynamic-fieldset,
html[data-theme="dark"] .coverage-panel,
html[data-theme="dark"] .trust-panel,
html[data-theme="dark"] .quick-facts span,
html[data-theme="dark"] .advantage-grid article,
html[data-theme="dark"] .proof-grid article,
html[data-theme="dark"] .proof-cta,
html[data-theme="dark"] .partner-grid article,
html[data-theme="dark"] .service-card {
  background: var(--surface);
  border-color: rgba(255, 255, 255, 0.12);
}

html[data-theme="dark"] .authority-panel {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

html[data-theme="dark"] .authority-panel h2,
html[data-theme="dark"] .authority-list li {
  color: var(--paper);
}

html[data-theme="dark"] .authority-panel p {
  color: rgba(255, 255, 255, 0.78);
}

html[data-theme="dark"] .proof-grid strong {
  color: var(--ink);
}

html[data-theme="dark"] .proof-grid p {
  color: var(--muted);
}

html[data-theme="dark"] .proof-cta p,
html[data-theme="dark"] .partner-grid strong {
  color: var(--ink);
}

html[data-theme="dark"] .btn.outline {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .partner-grid p {
  color: var(--muted);
}

html[data-theme="dark"] .site-header.is-scrolled {
  background: rgba(7, 16, 31, 0.96);
}

html[data-theme="dark"] .hero-content {
  background: linear-gradient(180deg, rgba(8, 23, 53, 0.64), rgba(8, 23, 53, 0.34));
}

html[data-theme="dark"] .quote-form input,
html[data-theme="dark"] .quote-form select,
html[data-theme="dark"] .quote-form textarea {
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.16);
}

html[data-theme="dark"] .dynamic-fieldset {
  background: rgba(255, 255, 255, 0.04);
}

html[data-theme="dark"] .dynamic-fieldset legend,
html[data-theme="dark"] .dynamic-form-placeholder,
html[data-theme="dark"] .consent-field,
html[data-theme="dark"] .form-section-heading h4,
html[data-theme="dark"] .form-section-heading p,
html[data-theme="dark"] .field-label small {
  color: var(--ink);
}

html[data-theme="dark"] .dynamic-form-placeholder {
  border-color: rgba(255, 255, 255, 0.2);
}

html[data-theme="dark"] .form-section + .form-section {
  border-color: rgba(255, 255, 255, 0.12);
}

html[data-theme="dark"] .form-status.is-success {
  color: #79d99a;
}

html[data-theme="dark"] .form-status.is-error {
  color: #ff9b9b;
}

html[data-theme="dark"] .quote-form input::placeholder,
html[data-theme="dark"] .quote-form textarea::placeholder {
  color: rgba(242, 244, 247, 0.7);
}

html[data-theme="dark"] .coverage-tags a {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

html[data-theme="dark"] .site-footer {
  background: linear-gradient(180deg, #07101f, #0d203f);
}

html[data-theme="dark"] .header-cta[href*="whatsapp"],
html[data-theme="dark"] .floating-whatsapp {
  color: #ffffff;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.24);
}

html[data-theme="dark"] .contact-cards a[href*="whatsapp"] {
  border-left-color: var(--whatsapp);
}

html[data-theme="dark"] .contact-cards a[href*="whatsapp"] span,
html[data-theme="dark"] .contact-cards a[href*="whatsapp"] strong,
html[data-theme="dark"] .footer-links a[href*="whatsapp"],
html[data-theme="dark"] .quote-form label:has(input[name="whatsapp"]) {
  color: var(--whatsapp);
}

html[data-theme="dark"] .hero-badges,
html[data-theme="dark"] .hero-copy,
html[data-theme="dark"] .hero-strip a,
html[data-theme="dark"] .btn.ghost,
html[data-theme="dark"] .site-header,
html[data-theme="dark"] .site-nav,
html[data-theme="dark"] .theme-toggle,
html[data-theme="dark"] .menu-toggle,
html[data-theme="dark"] .mobile-nav-close,
html[data-theme="dark"] .quick-facts span,
html[data-theme="dark"] .site-footer p,
html[data-theme="dark"] .site-footer .footer-links a,
html[data-theme="dark"] .site-footer .copyright {
  color: var(--paper);
}

html[data-theme="dark"] .theme-toggle {
  background: rgba(255, 255, 255, 0.07);
}

html[data-theme="dark"] .privacy-note {
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  border-color: rgba(255, 255, 255, 0.12);
}

html[data-theme="dark"] .site-footer img,
html[data-theme="dark"] .brand img {
  background: #ffffff;
}

@media (max-width: 900px) {
  html[data-theme="dark"] .site-nav {
    background: rgba(7, 16, 31, 0.96);
  }
}

/* Form and contact theme fix */
.quote-form,
.quote-copy {
  color: var(--ink);
}

.quote-form,
.quote-copy,
.contact-cards a {
  border: 1px solid rgba(6, 28, 67, 0.08);
}

.quote-form label,
.quote-form .dynamic-fieldset legend,
.quote-form .form-section-heading h4 {
  color: var(--navy);
}

.quote-form .form-section-heading p,
.quote-form .field-label small,
.quote-form .dynamic-form-placeholder,
.quote-form .privacy-note,
.quote-form .form-status {
  color: var(--muted);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  background: #ffffff;
  color: #081832;
  border-color: rgba(6, 28, 67, 0.18);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(93, 100, 114, 0.82);
}

.quote-form select option {
  color: #081832;
  background: #ffffff;
}

.dynamic-fieldset {
  background: rgba(251, 248, 241, 0.68);
}

html[data-theme="dark"] .quote-form,
html[data-theme="dark"] .quote-copy,
html[data-theme="dark"] .contact-cards a {
  color: #f2f4f7;
  background: rgba(8, 23, 53, 0.92);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .quote-form label,
html[data-theme="dark"] .quote-form .dynamic-fieldset legend,
html[data-theme="dark"] .quote-form .form-section-heading h4,
html[data-theme="dark"] .quote-copy h2,
html[data-theme="dark"] .contact-cards strong {
  color: #f2f4f7;
}

html[data-theme="dark"] .quote-copy p,
html[data-theme="dark"] .quote-form .form-section-heading p,
html[data-theme="dark"] .quote-form .field-label small,
html[data-theme="dark"] .quote-form .dynamic-form-placeholder,
html[data-theme="dark"] .quote-form .privacy-note,
html[data-theme="dark"] .quote-form .form-status,
html[data-theme="dark"] .contact-cards span {
  color: #cbd3e3;
}

html[data-theme="dark"] .quote-form input,
html[data-theme="dark"] .quote-form select,
html[data-theme="dark"] .quote-form textarea {
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
}

html[data-theme="dark"] .quote-form input::placeholder,
html[data-theme="dark"] .quote-form textarea::placeholder {
  color: rgba(242, 244, 247, 0.64);
}

html[data-theme="dark"] .quote-form select option {
  color: #081832;
  background: #ffffff;
}

html[data-theme="dark"] .dynamic-fieldset,
html[data-theme="dark"] .dynamic-form-placeholder,
html[data-theme="dark"] .privacy-note {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

html[data-theme="dark"] .quote-form input:focus,
html[data-theme="dark"] .quote-form select:focus,
html[data-theme="dark"] .quote-form textarea:focus {
  border-color: var(--gold-light);
  outline-color: rgba(240, 214, 138, 0.28);
}

html[data-theme="dark"] .quote-form label:has(input[name="whatsapp"]),
html[data-theme="dark"] .contact-cards a[href*="whatsapp"] span,
html[data-theme="dark"] .contact-cards a[href*="whatsapp"] strong {
  color: var(--whatsapp);
}

/* Polishing pass: smoother layout and mobile ergonomics */
.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--navy);
  background: var(--gold-light);
  font-weight: 900;
  box-shadow: var(--soft-shadow);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  gap: clamp(12px, 2vw, 28px);
}

.site-nav {
  gap: clamp(16px, 2.2vw, 28px);
}

.site-nav a {
  position: relative;
  padding-block: 8px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  opacity: 0.75;
  transform: scaleX(1);
}

.hero {
  min-height: min(820px, 82vh);
  min-height: min(820px, 82svh);
}

.hero-content {
  margin-left: clamp(14px, 4vw, 54px);
  max-width: min(760px, calc(100vw - 28px));
}

.hero-badges {
  max-width: 100%;
  flex-wrap: wrap;
  line-height: 1.25;
}

.section-heading,
.quote-copy,
.coverage-panel,
.intro-grid {
  text-wrap: pretty;
}

.service-card,
.advantage-grid article,
.proof-grid article,
.partner-grid article,
.proof-cta,
.quote-form,
.quote-copy,
.coverage-panel,
.intro-grid,
.contact-cards a {
  border-radius: 14px;
}

.service-card,
.advantage-grid article,
.proof-grid article,
.partner-grid article,
.contact-cards a {
  will-change: transform;
}

.service-card p,
.advantage-grid p,
.proof-grid p,
.partner-grid p,
.coverage-panel p,
.quote-copy p {
  max-width: 68ch;
}

.contact-cards a {
  min-height: 76px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.quote-form input:hover,
.quote-form select:hover,
.quote-form textarea:hover {
  border-color: rgba(181, 138, 53, 0.42);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  box-shadow: 0 0 0 4px rgba(215, 186, 112, 0.12);
}

.btn,
.header-cta,
.theme-toggle,
.menu-toggle,
.carousel-control,
.contact-cards a,
.footer-links a {
  -webkit-tap-highlight-color: transparent;
}

.footer-links a {
  min-height: 34px;
  align-items: center;
}

@media (max-width: 1100px) {
  .site-header {
    padding-inline: clamp(14px, 3vw, 34px);
  }

  .brand {
    min-width: 210px;
  }

  .brand img {
    width: 82px;
    height: 82px;
  }

  .header-cta {
    padding-inline: 16px;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 88px;
    padding-block: 8px;
  }

  .site-header.is-scrolled {
    height: 82px;
  }

  .site-header.is-scrolled .brand img,
  .brand img {
    width: 68px;
    height: 68px;
  }

  .scroll-progress {
    top: 88px;
  }

  .site-nav {
    top: 88px;
    max-height: calc(100vh - 104px);
    max-height: calc(100svh - 104px);
    overflow-y: auto;
  }

  .site-nav a {
    min-height: 48px;
  }

  .site-nav a::after {
    display: none;
  }

  .theme-toggle,
  .menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 8px;
  }

  .hero {
    min-height: 78vh;
    min-height: 78svh;
  }

  .hero-content {
    margin: 0;
    padding: 118px clamp(18px, 6vw, 48px) 78px;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    background: transparent;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.6;
  }

  .section {
    padding-block: clamp(56px, 10vw, 86px);
  }

  .intro-grid,
  .coverage-panel,
  .quote-copy,
  .quote-form {
    padding: clamp(22px, 5vw, 34px);
  }

  .process-inner {
    gap: 34px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .site-header {
    height: 76px;
  }

  .site-header.is-scrolled {
    height: 72px;
  }

  .brand img,
  .site-header.is-scrolled .brand img {
    width: 58px;
    height: 58px;
  }

  .scroll-progress {
    top: 76px;
    height: 3px;
  }

  .site-nav {
    top: 76px;
    left: 10px;
    right: 10px;
  }

  .theme-toggle,
  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 74vh;
    min-height: 74svh;
  }

  .hero-media img {
    object-position: 72% top;
    opacity: 0.5;
  }

  .hero-content {
    padding-top: 104px;
    padding-bottom: 56px;
  }

  .hero-badges {
    width: fit-content;
    max-width: 100%;
    padding: 8px 11px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .hero-trust {
    display: grid;
    gap: 8px;
  }

  .hero-trust li {
    width: fit-content;
    max-width: 100%;
    font-size: 0.86rem;
  }

  h1 {
    font-size: clamp(2.15rem, 13vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.72rem, 9vw, 2.55rem);
  }

  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .btn {
    min-height: 48px;
    padding-inline: 16px;
  }

  .services-carousel {
    position: sticky;
    top: 72px;
    z-index: 19;
    box-shadow: 0 12px 28px rgba(6, 28, 67, 0.16);
  }

  .hero-strip {
    scroll-padding-inline: 8px;
  }

  .hero-strip a {
    min-height: 50px;
    font-size: 0.9rem;
  }

  .section {
    padding-inline: 16px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .service-card,
  .advantage-grid article {
    min-height: auto;
    padding: 22px;
  }

  .service-icon {
    font-size: 1rem;
  }

  .steps li {
    padding-left: 54px;
  }

  .steps li::before {
    left: -20px;
    width: 40px;
    height: 40px;
  }

  .contact-cards a {
    min-height: 68px;
    padding: 15px;
  }

  .quote-form {
    gap: 16px;
  }

  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    min-height: 50px;
    font-size: 16px;
  }

  .dynamic-fieldset {
    gap: 20px;
  }

  .field-label {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .site-footer {
    padding-block: 34px;
  }

  .footer-links {
    gap: 10px;
  }

  .footer-links a {
    width: 100%;
    justify-content: flex-start;
    padding: 8px 0;
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 420px) {
  .hero-copy {
    font-size: 0.96rem;
  }

  .intro-grid,
  .coverage-panel,
  .quote-copy,
  .quote-form,
  .dynamic-fieldset {
    padding: 18px;
  }

  .contact-cards strong {
    font-size: 1rem;
  }

  .privacy-note {
    font-size: 0.82rem;
  }
}
