:root {
  --fw-navy: #081B33;
  --fw-blue: #006CB7;
  --fw-blue-soft: #EAF6FF;
  --fw-cyan: #12B8C8;
  --fw-green: #22C671;
  --fw-green-dark: #12824D;
  --fw-orange: #F5A623;
  --fw-text: #102033;
  --fw-muted: #627084;
  --fw-border: rgba(8, 27, 51, 0.10);
  --fw-bg: #F7FAFC;
  --fw-white: #FFFFFF;

  --fw-font-heading: "Manrope", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --fw-font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --fw-radius-sm: 12px;
  --fw-radius-md: 18px;
  --fw-radius-lg: 28px;
  --fw-radius-xl: 34px;
  --fw-radius-pill: 999px;

  --fw-shadow-sm: 0 8px 24px rgba(8, 27, 51, 0.06);
  --fw-shadow-md: 0 18px 48px rgba(8, 27, 51, 0.10);
  --fw-shadow-lg: 0 28px 80px rgba(8, 27, 51, 0.14);

  --fw-container: 1180px;
  --fw-container-wide: 1320px;

  --fw-section-padding: clamp(72px, 8vw, 120px);
  --fw-section-padding-sm: clamp(48px, 6vw, 80px);
}

html {
  scroll-behavior: smooth;
}

body.fincaswin-theme {
  margin: 0;
  color: var(--fw-text);
  background: var(--fw-bg);
  font-family: var(--fw-font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.fincaswin-theme a {
  color: var(--fw-blue);
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}

body.fincaswin-theme a:hover {
  color: var(--fw-green-dark);
}

body.fincaswin-theme h1,
body.fincaswin-theme h2,
body.fincaswin-theme h3,
body.fincaswin-theme h4,
body.fincaswin-theme h5,
body.fincaswin-theme h6 {
  color: var(--fw-navy);
  font-family: var(--fw-font-heading);
  font-weight: 800;
  letter-spacing: 0;
  margin-top: 0;
}

body.fincaswin-theme h1 {
  font-size: 72px;
  line-height: 1.04;
}

body.fincaswin-theme h2 {
  font-size: 52px;
  line-height: 1.12;
}

body.fincaswin-theme h3 {
  font-size: 32px;
  line-height: 1.18;
}

body.fincaswin-theme p {
  margin-top: 0;
  color: var(--fw-text);
}

body.fincaswin-theme img {
  max-width: 100%;
  height: auto;
}

body.fincaswin-theme ::selection {
  background: rgba(34, 198, 113, 0.22);
  color: var(--fw-navy);
}

body.fincaswin-theme :focus-visible {
  outline: 3px solid rgba(34, 198, 113, 0.45);
  outline-offset: 4px;
  border-radius: 8px;
}

@media (max-width: 1024px) {
  body.fincaswin-theme h1 {
    font-size: 56px;
  }

  body.fincaswin-theme h2 {
    font-size: 42px;
  }

  body.fincaswin-theme h3 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  body.fincaswin-theme h1 {
    font-size: 42px;
  }

  body.fincaswin-theme h2 {
    font-size: 32px;
  }

  body.fincaswin-theme h3 {
    font-size: 24px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
