:root {
  --navy-950: #071a32;
  --navy-900: #0a2342;
  --navy-800: #10345c;
  --slate-700: #4d5d75;
  --slate-500: #7f8ea4;
  --slate-300: #cfd7e3;
  --slate-200: #e8edf4;
  --slate-100: #f6f8fb;
  --white: #ffffff;
  --gold: #b88b2e;
  --green-700: #0d6b4a;
  --green-100: #e6f5ef;
  --shadow-soft: 0 20px 40px rgba(7, 26, 50, 0.12);
  --shadow-strong: 0 24px 60px rgba(7, 26, 50, 0.18);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
footer[id] {
  scroll-margin-top: 110px;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  background: var(--white);
  color: var(--navy-950);
}

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

button,
input {
  font: inherit;
}

img,
svg {
  display: block;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(207, 215, 227, 0.8);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: auto;
  height: 64px;
}

.site-nav,
.nav-actions,
.hero-actions,
.footer-links {
  display: flex;
  align-items: center;
}

.site-nav {
  gap: 28px;
}

.site-nav a,
.text-link {
  color: var(--slate-700);
  font-size: 0.96rem;
  transition: color 180ms ease;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--navy-900);
}

.nav-actions {
  gap: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(16, 52, 92, 0.18);
}

.button-primary:hover {
  box-shadow: 0 14px 28px rgba(16, 52, 92, 0.25);
}

.button-secondary {
  background: transparent;
  border-color: rgba(16, 52, 92, 0.16);
  color: var(--navy-900);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy-950);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 56px 0 64px;
  background:
    radial-gradient(circle at top left, rgba(184, 139, 46, 0.08), transparent 30%),
    linear-gradient(180deg, #fbfcfe 0%, #ffffff 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(16, 52, 92, 0.11) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
}

.hero-grid,
.compliance-grid,
.differentials-grid,
.footer-grid {
  display: grid;
  gap: 40px;
}

.hero-grid {
  position: relative;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  min-height: clamp(620px, 84vh, 760px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(184, 139, 46, 0.22);
  background: rgba(184, 139, 46, 0.08);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: #7ddab7;
  background: rgba(125, 218, 183, 0.08);
  border-color: rgba(125, 218, 183, 0.2);
}

.hero-copy h1,
.compliance-copy h2,
.section-heading h2 {
  margin: 20px 0 18px;
  letter-spacing: -0.05em;
}

.hero-copy h1 {
  width: fit-content;
  max-width: 18ch;
  font-size: clamp(3.5rem, 7vw, 5.75rem);
  line-height: 0.95;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-text,
.section-heading p,
.compliance-copy p,
.differential-card p,
.sector-card p,
.footer-brand p,
.hero-metrics span {
  color: var(--slate-700);
  line-height: 1.7;
}

.hero-text {
  max-width: 760px;
  font-size: 1.15rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  max-width: 740px;
  margin-top: 34px;
  margin-left: auto;
  margin-right: auto;
}

.input-shell {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(16, 52, 92, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.hero-sectors {
  margin-top: 48px;
  text-align: center;
}

.hero-sectors span:first-child {
  display: inline-block;
  color: var(--slate-700);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.sector-carousel {
  position: relative;
  width: min(100%, 620px);
  margin: 18px auto 0;
  overflow: hidden;
}

.sector-carousel-reverse {
  margin-top: 12px;
}

.sector-carousel::before,
.sector-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56px;
  z-index: 1;
  pointer-events: none;
}

.sector-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.sector-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.sector-carousel-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  animation: sector-scroll 22s linear infinite;
}

.sector-carousel-track-reverse {
  animation-name: sector-scroll-reverse;
  animation-duration: 28s;
}

.sector-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 140px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(16, 52, 92, 0.1);
  background: rgba(255, 255, 255, 0.78);
  color: rgba(7, 26, 50, 0.72);
  box-shadow: 0 10px 24px rgba(7, 26, 50, 0.05);
  backdrop-filter: blur(6px);
}

.sector-chip span {
  font-size: 1.15rem;
  filter: grayscale(1);
}

.sector-chip strong {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
}

.input-shell svg {
  width: 20px;
  height: 20px;
  color: var(--slate-500);
}

.input-shell input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--navy-950);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.hero-actions {
  gap: 14px;
  margin-top: 18px;
}

.hero-sectors {
  margin-top: 72px;
  text-align: center;
}

.hero-sectors span:first-child {
  display: inline-block;
  color: var(--slate-700);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.panel-kicker {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guarantee-panel h3 {
  margin: 14px 0 0;
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.differential-card strong,
.compliance-stats strong,
.differential-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.section {
  padding: 110px 0;
}

.section-alt {
  background: #ffffff;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--navy-900);
}

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

.sector-card,
.differential-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 52, 92, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(243, 246, 250, 0.95));
  box-shadow: 0 12px 30px rgba(7, 26, 50, 0.06);
}

.sector-card h3 {
  margin: 20px 0 14px;
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}

.sector-card-toggle {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  color: var(--navy-950);
}

.sector-card-toggle .icon-badge {
  pointer-events: none;
}

.toggle-icon-minus {
  display: none;
}

.sector-card-toggle[aria-expanded="true"] .toggle-icon-plus {
  display: none;
}

.sector-card-toggle[aria-expanded="true"] .toggle-icon-minus {
  display: block;
}

.toggle-copy {
  display: grid;
  gap: 10px;
}

.toggle-label {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.toggle-text {
  color: var(--slate-700);
  line-height: 1.7;
}

.more-sectors {
  margin-top: 18px;
}

.more-sectors[hidden] {
  display: none;
}

.cards-grid-expanded {
  padding-top: 4px;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--white);
  color: var(--navy-900);
  box-shadow: 0 10px 20px rgba(7, 26, 50, 0.08);
}

.icon-badge svg {
  width: 24px;
  height: 24px;
}

.differentials-section {
  background:
    linear-gradient(180deg, rgba(184, 139, 46, 0.06), transparent 34%),
    #ffffff;
}

.differentials-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.differentials-list {
  display: grid;
  gap: 18px;
}

.differential-card {
  padding: 26px 28px;
}

.compliance-section {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
  color: var(--white);
}

.compliance-grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  align-items: center;
}

.compliance-copy h2 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 0.96;
  max-width: 10ch;
}

.compliance-copy p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.16rem;
}

.check-list {
  display: grid;
  gap: 20px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.06rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2ce2a0;
  font-weight: 700;
}

.guarantee-panel {
  position: relative;
  padding: 34px 30px;
  border-radius: 28px;
  background: var(--white);
  color: var(--navy-950);
  box-shadow: var(--shadow-strong);
}

.seal-mark {
  position: absolute;
  top: -22px;
  right: -18px;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #e4a915;
  color: var(--white);
  box-shadow: 0 12px 24px rgba(7, 26, 50, 0.2);
  border: 4px solid var(--white);
}

.seal-mark svg {
  width: 34px;
  height: 34px;
}

.compliance-stats {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.compliance-stats div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(16, 52, 92, 0.12);
}

.compliance-stats div:last-child {
  border-bottom: 0;
}

.compliance-stats span {
  color: var(--slate-700);
}

.compliance-stats strong {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 0.82rem;
}

.site-footer {
  padding: 70px 0 32px;
  border-top: 1px solid rgba(207, 215, 227, 0.8);
  background: #ffffff;
}

.legal-page {
  background: #ffffff;
}

.legal-nav {
  margin-left: auto;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 52px;
  background:
    radial-gradient(circle at top left, rgba(184, 139, 46, 0.08), transparent 30%),
    linear-gradient(180deg, #fbfcfe 0%, #ffffff 100%);
}

.legal-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.legal-hero h1 {
  margin: 22px 0 16px;
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.legal-hero p {
  max-width: 760px;
  color: var(--slate-700);
  font-size: 1.12rem;
  line-height: 1.8;
}

.legal-content {
  padding: 36px 0 96px;
}

.legal-content-inner {
  max-width: 920px;
}

.legal-card {
  padding: 34px;
  border: 1px solid rgba(16, 52, 92, 0.08);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 251, 0.98));
  box-shadow: 0 16px 40px rgba(7, 26, 50, 0.08);
}

.legal-card h2 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.legal-card h2:not(:first-child) {
  margin-top: 28px;
}

.legal-card p {
  margin: 0;
  color: var(--slate-700);
  line-height: 1.8;
}

.legal-card a {
  color: var(--navy-900);
  font-weight: 700;
}

.footer-grid {
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(180px, 1fr));
  align-items: start;
}

.footer-brand p {
  max-width: 360px;
  margin-top: 22px;
}

.site-footer h4 {
  margin: 6px 0 20px;
  font-size: 1.05rem;
}

.footer-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--slate-700);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(207, 215, 227, 0.7);
  color: var(--slate-500);
  font-size: 0.92rem;
}

.footer-links {
  gap: 20px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #15b76a;
  color: var(--white);
  box-shadow: 0 16px 30px rgba(21, 183, 106, 0.26);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.reveal-delay {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

@media (max-width: 1080px) {
  .hero-grid,
  .compliance-grid,
  .differentials-grid,
  .footer-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 40px;
  }

  .hero-panel,
  .guarantee-panel {
    max-width: 640px;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav,
  .nav-actions {
    display: none;
  }

  .legal-nav {
    display: none;
  }

  .nav-shell {
    position: relative;
  }

  .site-nav.is-open {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 6px;
    padding: 18px;
    border: 1px solid rgba(16, 52, 92, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open a {
    padding: 10px 0;
  }

  .hero-copy h1,
  .compliance-copy h2 {
    max-width: none;
  }

  .hero-form,
  .hero-actions,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

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

  .nav-shell {
    min-height: 72px;
  }

  .brand-logo {
    height: 48px;
  }

  .hero-section {
    padding-top: 32px;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .hero-text,
  .compliance-copy p {
    font-size: 1rem;
  }

  .hero-sectors {
    margin-top: 52px;
  }

  .sector-carousel {
    width: min(100%, 100%);
  }

  .sector-carousel::before,
  .sector-carousel::after {
    width: 28px;
  }

  .sector-chip {
    min-width: 126px;
    padding: 10px 14px;
  }

  .sector-chip strong {
    font-size: 0.84rem;
  }

  .button,
  .input-shell {
    min-height: 52px;
  }

  .section {
    padding: 86px 0;
  }

  .hero-panel,
  .sector-card,
  .differential-card,
  .guarantee-panel {
    padding: 24px;
    border-radius: 24px;
  }

  .seal-mark {
    width: 74px;
    height: 74px;
    right: 18px;
    top: -24px;
  }

  .footer-bottom {
    text-align: center;
  }

  .legal-hero {
    padding: 72px 0 40px;
  }

  .legal-card {
    padding: 24px;
    border-radius: 24px;
  }
}

@keyframes sector-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@keyframes sector-scroll-reverse {
  from {
    transform: translateX(calc(-50% - 7px));
  }

  to {
    transform: translateX(0);
  }
}
