:root {
  --blue-950: #01073c;
  --blue-900: #042193;
  --blue-700: #1d2bb9;
  --blue-500: #205ed7;
  --blue-400: #2687e9;
  --blue-300: #00aff0;
  --blue-100: #e8f1ff;
  --blue-50: #eef2fa;
  --yellow: #ffb600;
  --orange: #fb8500;
  --green: #26c63c;
  --green-dark: #038a62;
  --ink: #202647;
  --muted: #595959;
  --line: #dadee3;
  --paper: #ffffff;
  --mist: #f8fafb;
  --soft: #f1f4f9;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 14px;
  --radius-xl: 16px;
  --radius-2xl: 28px;
  --shadow-blue: 0 18px 46px rgba(3, 78, 152, 0.16);
  --shadow-soft: 0 12px 30px rgba(1, 7, 60, 0.1);
  --container: 1296px;
  --ease-out-expo: cubic-bezier(0.33, 1, 0.68, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: hidden;
  font-family: "Raleway", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0) 260px),
    radial-gradient(circle at 88% 12%, rgba(0, 175, 240, 0.14), transparent 28%),
    radial-gradient(circle at 8% 38%, rgba(255, 182, 0, 0.1), transparent 24%),
    var(--mist);
}

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

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

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

button {
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(38, 135, 233, 0.32);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  color: white;
  background: var(--blue-700);
  transition: top 180ms var(--ease-out-expo);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  display: flex;
  width: min(calc(100% - 32px), var(--container));
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 10px 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 34px rgba(1, 7, 60, 0.1);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  display: grid;
  width: 184px;
  height: 50px;
  place-items: center;
  overflow: hidden;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(1, 7, 60, 0.12));
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 0 14px 14px 14px;
  color: white;
  background: linear-gradient(201deg, var(--blue-500), var(--blue-400), var(--blue-300));
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 12px 26px rgba(38, 135, 233, 0.34);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  display: none;
  color: var(--blue-950);
  font-size: 16px;
  line-height: 1.1;
  font-weight: 900;
}

.brand small {
  display: none;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  transition: color 180ms var(--ease-out-expo);
}

.main-nav a:hover {
  color: var(--blue-500);
}

.header-action,
.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    filter 180ms var(--ease-out-expo),
    transform 140ms var(--ease-out-expo),
    background 180ms var(--ease-out-expo),
    color 180ms var(--ease-out-expo);
}

.header-action {
  padding: 0 18px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 14px;
}

.button {
  padding: 12px 22px;
  font-size: 15px;
}

.button:hover,
.header-action:hover {
  filter: brightness(0.94);
  transform: translateY(-2px);
}

.button:active,
.header-action:active {
  transform: scale(0.98);
}

.button-primary {
  color: var(--ink);
  background: var(--yellow);
}

.button-secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero {
  position: relative;
  display: grid;
  min-height: 650px;
  overflow: hidden;
  color: white;
  background: var(--blue-950);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(1, 7, 60, 0.98) 0%, rgba(1, 7, 60, 0.84) 28%, rgba(1, 7, 60, 0.32) 62%, rgba(1, 7, 60, 0.14) 100%),
    linear-gradient(0deg, rgba(1, 7, 60, 0.62), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), var(--container));
  margin: auto;
  padding-top: 84px;
  animation: heroRise 760ms var(--ease-out-expo) both;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.eyebrow.dark,
.section-kicker {
  color: var(--blue-500);
}

.hero h1 {
  max-width: 660px;
  margin: 18px 0 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
}

.hero p {
  max-width: 570px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
}

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

.contact-ribbon {
  display: flex;
  max-width: 760px;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.contact-ribbon strong,
.contact-ribbon span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(14px);
  overflow-wrap: anywhere;
}

.contact-ribbon strong {
  color: var(--ink);
  background: var(--yellow);
}

.hero-stats {
  display: grid;
  max-width: 720px;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 36px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.hero-stats div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  transition:
    background 220ms var(--ease-out-expo),
    transform 220ms var(--ease-out-expo);
}

.hero-stats div:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-6px) scale(1.015);
}

.hero-stats strong {
  display: block;
  color: white;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 500;
}

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

.intro-section {
  padding-bottom: 46px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 42px;
  margin-top: 14px;
  align-items: start;
}

h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.intro-grid p,
.section-head p,
.split-copy p,
.local-card p,
.contact-section p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
}

.section-head {
  display: flex;
  max-width: 900px;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

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

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

.service-card {
  position: relative;
  min-height: 214px;
  padding: 20px;
  border: 1px solid var(--blue-50);
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: 0 8px 22px rgba(3, 78, 152, 0.07);
  transition:
    transform 260ms var(--ease-out-expo),
    box-shadow 260ms var(--ease-out-expo),
    border-color 220ms var(--ease-out-expo),
    background 220ms var(--ease-out-expo),
    color 220ms var(--ease-out-expo);
}

.service-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(38, 135, 233, 0.1);
  opacity: 0;
  transform: translate(-6px, 6px);
  transition:
    opacity 220ms var(--ease-out-expo),
    transform 220ms var(--ease-out-expo),
    background 220ms var(--ease-out-expo);
}

.service-card:hover,
.service-card.featured {
  color: white;
  border-color: var(--blue-400);
  background: linear-gradient(201deg, var(--blue-500), var(--blue-400), var(--blue-300));
  box-shadow: 0 18px 38px rgba(3, 78, 152, 0.2);
  transform: translateY(-8px) scale(1.015);
}

.service-card:hover::after,
.service-card.featured::after {
  opacity: 1;
  background: rgba(255, 255, 255, 0.22);
  transform: translate(0, 0);
}

.service-card.featured {
  transform: none;
}

.service-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 0 10px 10px 10px;
  color: var(--blue-500);
  background: var(--blue-50);
  font-size: 13px;
  font-weight: 800;
}

.service-card:hover .service-number,
.service-card.featured .service-number {
  color: var(--ink);
  background: var(--yellow);
}

.service-card h3 {
  margin: 18px 0 8px;
  font-size: 19px;
  line-height: 1.18;
  font-weight: 800;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
}

.service-card:hover p,
.service-card.featured p {
  color: rgba(255, 255, 255, 0.82);
}

.reform-section {
  position: relative;
  display: grid;
  width: min(calc(100% - 48px), var(--container));
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: center;
  margin: 0 auto 78px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 28px;
  color: white;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 0 0, rgba(38, 135, 233, 0.44), transparent 30%),
    linear-gradient(135deg, #123f8f 0%, #071b52 52%, #020b2c 100%);
  background-size: 188px 188px, 188px 188px, auto, auto;
  box-shadow: var(--shadow-blue);
}

.reform-section::before,
.reform-section::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  pointer-events: none;
}

.reform-section::before {
  top: -180px;
  right: 18%;
  width: 620px;
  height: 620px;
}

.reform-section::after {
  right: -140px;
  bottom: -220px;
  width: 520px;
  height: 520px;
}

.reform-copy,
.timeline-grid {
  position: relative;
  z-index: 1;
}

.reform-copy h2 {
  margin-top: 14px;
  color: white;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
}

.reform-copy p {
  margin: 18px 0 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}

.timeline-grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.72fr) minmax(0, 1.35fr);
  gap: 10px;
}

.timeline-date,
.timeline-card {
  min-height: 108px;
  border-radius: 14px;
  transition:
    transform 260ms var(--ease-out-expo),
    box-shadow 260ms var(--ease-out-expo),
    border-color 260ms var(--ease-out-expo);
}

.timeline-date:hover,
.timeline-card:hover {
  border-color: rgba(255, 182, 0, 0.9);
  box-shadow: 0 16px 34px rgba(0, 10, 48, 0.22);
  transform: translateY(-7px) scale(1.01);
}

.timeline-date {
  display: grid;
  place-items: center;
  border: 2px solid rgba(38, 135, 233, 0.88);
  background: rgba(0, 9, 48, 0.34);
}

.timeline-date span {
  color: white;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
}

.featured-date {
  position: relative;
  border: 0;
  background: linear-gradient(201deg, var(--blue-500), var(--blue-400), var(--blue-300));
  animation: pulseBlue 2.8s ease-in-out infinite;
}

.featured-date::before {
  content: "Vem aí";
  position: absolute;
  top: -22px;
  left: 28px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--yellow);
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-card {
  display: flex;
  align-items: center;
  border: 2px solid rgba(38, 135, 233, 0.88);
  background: rgba(0, 9, 48, 0.34);
  padding: 18px 20px;
}

.timeline-card.active {
  border-color: transparent;
  background: linear-gradient(201deg, #205ed7, #2687e9, #0d9fd2);
}

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

.timeline-card li {
  position: relative;
  padding-left: 18px;
  color: white;
  font-size: clamp(15px, 1.8vw, 19px);
  line-height: 1.36;
  font-weight: 600;
}

.timeline-card li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
}

.split-section {
  display: grid;
  width: min(calc(100% - 48px), var(--container));
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 34px;
  align-items: center;
  margin: 12px auto 0;
  padding: 28px;
  border-radius: var(--radius-2xl);
  background: var(--soft);
}

.split-image {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

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

.split-copy {
  padding: 8px 0;
}

.split-copy h2 {
  margin-top: 14px;
}

.split-copy p {
  margin-top: 14px;
}

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

.method-list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(38, 135, 233, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  transition:
    transform 260ms var(--ease-out-expo),
    box-shadow 260ms var(--ease-out-expo),
    background 260ms var(--ease-out-expo);
}

.method-list li:hover {
  background: white;
  box-shadow: 0 14px 28px rgba(3, 78, 152, 0.12);
  transform: translateX(8px);
}

.method-list strong {
  color: var(--blue-700);
  font-size: 15px;
  font-weight: 800;
}

.method-list span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.local-section {
  display: grid;
  width: min(calc(100% - 48px), var(--container));
  grid-template-columns: 1.04fr 0.96fr;
  gap: 14px;
  align-items: stretch;
  margin: 78px auto 0;
}

.local-card {
  padding: clamp(28px, 4vw, 46px);
  border-radius: 28px 28px 52px 0;
  color: white;
  background:
    linear-gradient(140deg, rgba(1, 7, 60, 0.96), rgba(4, 33, 147, 0.92)),
    radial-gradient(circle at 80% 10%, rgba(0, 175, 240, 0.38), transparent 28%);
  box-shadow: var(--shadow-blue);
}

.local-card h2 {
  margin-top: 14px;
  color: white;
}

.local-card p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
}

.local-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.local-highlights span {
  display: flex;
  min-height: 92px;
  align-items: flex-end;
  padding: 16px;
  border: 1px solid rgba(38, 135, 233, 0.14);
  border-radius: 14px;
  color: var(--blue-950);
  background: white;
  box-shadow: 0 10px 30px rgba(3, 78, 152, 0.07);
  font-size: 15px;
  line-height: 1.18;
  font-weight: 700;
  transition:
    transform 260ms var(--ease-out-expo),
    box-shadow 260ms var(--ease-out-expo);
}

.local-highlights span:hover {
  box-shadow: 0 16px 28px rgba(3, 78, 152, 0.14);
  transform: translateY(-7px);
}

.local-highlights span:nth-child(2),
.local-highlights span:nth-child(5) {
  background: var(--yellow);
}

.local-highlights span:nth-child(3) {
  color: white;
  background: var(--green-dark);
}

.proof-section {
  padding-bottom: 46px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.proof-grid article {
  padding: 18px;
  border-top: 2px solid var(--blue-400);
  border-radius: 0 0 14px 14px;
  background: white;
  box-shadow: 0 8px 22px rgba(3, 78, 152, 0.06);
  transition:
    transform 260ms var(--ease-out-expo),
    box-shadow 260ms var(--ease-out-expo),
    border-color 260ms var(--ease-out-expo);
}

.proof-grid article:hover {
  border-color: var(--yellow);
  box-shadow: 0 16px 30px rgba(3, 78, 152, 0.13);
  transform: translateY(-7px);
}

.proof-grid strong {
  display: block;
  color: var(--blue-700);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
}

.proof-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}

.quote-section {
  width: min(calc(100% - 48px), 1100px);
  margin: 0 auto;
  padding: 42px;
  border-radius: 0 28px 28px 28px;
  color: white;
  background: linear-gradient(201deg, var(--blue-500), var(--blue-400), var(--blue-300));
  box-shadow: var(--shadow-blue);
}

.quote-section blockquote {
  margin: 0;
  font-size: clamp(24px, 3.1vw, 36px);
  line-height: 1.15;
  font-weight: 700;
}

.quote-section span {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 0;
  overflow: hidden;
  border-top: 1px solid #c0c0c0;
}

.faq-list details {
  border-bottom: 1px solid #c0c0c0;
  padding: 18px 0;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--blue-400);
  font-weight: 700;
}

.faq-list details[open] summary {
  color: var(--blue-700);
}

.faq-list details[open] summary::after {
  content: "-";
  background: var(--yellow);
  color: var(--ink);
}

.faq-list p {
  max-width: 820px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 600;
}

.contact-section {
  display: grid;
  width: min(calc(100% - 48px), var(--container));
  grid-template-columns: 0.92fr 1fr;
  gap: 34px;
  align-items: start;
  margin: 0 auto 72px;
  padding: clamp(26px, 4vw, 44px);
  border-radius: var(--radius-2xl);
  color: white;
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 182, 0, 0.24), transparent 28%),
    linear-gradient(140deg, var(--blue-950), var(--blue-900));
  box-shadow: var(--shadow-blue);
}

.contact-section h2 {
  margin-top: 14px;
  color: white;
}

.contact-section p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-cards {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.contact-cards a,
.contact-cards span {
  display: flex;
  min-height: 46px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 700;
  overflow-wrap: anywhere;
  word-break: break-word;
  transition:
    transform 220ms var(--ease-out-expo),
    background 220ms var(--ease-out-expo);
}

.contact-cards a:hover,
.contact-cards span:hover {
  transform: translateX(6px);
}

.contact-cards a:first-child {
  color: var(--ink);
  background: var(--yellow);
}

.contact-form {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  padding: 12px 14px;
  font-weight: 500;
}

.contact-form select option {
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form ::placeholder {
  color: rgba(255, 255, 255, 0.54);
}

.contact-form .button {
  width: 100%;
  margin-top: 2px;
}

.site-footer {
  display: flex;
  width: min(calc(100% - 48px), var(--container));
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-footer strong {
  color: var(--blue-950);
  font-size: 16px;
  font-weight: 700;
}

.site-footer a {
  color: var(--blue-500);
  font-weight: 600;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  gap: 2px;
  min-width: 198px;
  border-radius: 0 16px 16px 16px;
  color: white;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  padding: 12px 16px;
  box-shadow: 0 18px 38px rgba(3, 138, 98, 0.34);
  animation: whatsappFloat 2.6s ease-in-out infinite;
}

.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: -1;
  border-radius: inherit;
  background: rgba(38, 198, 60, 0.22);
  animation: whatsappHalo 2.6s ease-in-out infinite;
}

.floating-whatsapp span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-whatsapp strong {
  font-size: 16px;
  line-height: 1.1;
  font-weight: 700;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseBlue {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(38, 135, 233, 0);
    transform: translateY(0);
  }

  50% {
    box-shadow: 0 18px 50px rgba(38, 135, 233, 0.28);
    transform: translateY(-3px);
  }
}

@keyframes whatsappFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes whatsappHalo {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(0.96);
  }

  50% {
    opacity: 0.12;
    transform: scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), var(--container));
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 690px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(1, 7, 60, 0.98) 0%, rgba(1, 7, 60, 0.82) 58%, rgba(1, 7, 60, 0.38) 100%),
      linear-gradient(0deg, rgba(1, 7, 60, 0.72), transparent 42%);
  }

  .intro-grid,
  .split-section,
  .local-section,
  .reform-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .timeline-grid {
    grid-template-columns: 0.72fr 1.28fr;
  }

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

  .split-section {
    padding: 24px;
  }

  .split-image img {
    min-height: 380px;
  }
}

@media (max-width: 680px) {
  body {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 180px),
      var(--mist);
  }

  .site-header {
    top: 8px;
    width: calc(100% - 20px);
    min-height: 56px;
    padding: 8px;
    border-radius: 14px;
  }

  .brand small,
  .brand > span:last-child,
  .header-action {
    display: none;
  }

  .brand-logo {
    width: 142px;
    height: 40px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-content,
  .section,
  .split-section,
  .local-section,
  .reform-section,
  .quote-section,
  .contact-section,
  .site-footer {
    width: calc(100% - 28px);
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.08;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.5;
  }

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

  .button {
    width: 100%;
    min-height: 42px;
  }

  .contact-ribbon {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    max-width: 100%;
  }

  .contact-ribbon strong,
  .contact-ribbon span {
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 34px;
    padding: 7px 10px;
    font-size: 12px;
    text-align: center;
  }

  .hero-stats,
  .service-grid,
  .proof-grid,
  .timeline-grid,
  .local-highlights {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    margin-top: 24px;
    border-radius: 12px;
  }

  .hero-stats div {
    padding: 14px;
  }

  .section {
    padding: 52px 0;
  }

  .intro-grid {
    gap: 18px;
  }

  h2 {
    font-size: 28px;
    line-height: 1.12;
  }

  .service-card {
    min-height: auto;
    padding: 18px;
  }

  .service-card:hover,
  .service-card.featured {
    transform: translateY(-5px);
  }

  .method-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .local-section {
    margin-top: 52px;
  }

  .reform-section {
    margin-bottom: 52px;
    padding: 26px 16px 18px;
    border-radius: 22px;
  }

  .featured-date::before {
    top: 10px;
    left: 10px;
    padding: 6px 12px;
  }

  .timeline-date,
  .timeline-card {
    min-height: auto;
  }

  .timeline-date {
    min-height: 84px;
    padding-top: 24px;
  }

  .timeline-card {
    padding: 16px;
  }

  .timeline-card li {
    font-size: 14px;
    line-height: 1.42;
  }

  .split-section {
    padding: 18px;
    border-radius: 22px;
  }

  .split-image {
    border-radius: 16px;
  }

  .split-image img {
    min-height: 260px;
  }

  .local-card {
    border-radius: 28px 28px 52px 0;
  }

  .local-highlights span {
    min-height: 92px;
  }

  .quote-section {
    padding: 26px;
  }

  .quote-section blockquote {
    font-size: 22px;
  }

  .faq-list summary {
    font-size: 18px;
  }

  .contact-section {
    margin-bottom: 56px;
    padding: 22px 16px;
    border-radius: 22px;
  }

  .contact-form {
    padding: 12px;
  }

  .contact-cards a,
  .contact-cards span {
    min-height: 42px;
    font-size: 13px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 112px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    left: 16px;
    min-width: 0;
    text-align: center;
    padding: 11px 14px;
  }
}
