:root {
  --ink: #082f59;
  --steel: #0f3d66;
  --steel-2: #315b7a;
  --ash: #edf2f5;
  --paper: #f5f7f8;
  --line: rgba(255, 255, 255, 0.16);
  --dark-line: rgba(8, 47, 89, 0.15);
  --yellow: #d97a22;
  --copper: #b7631f;
  --green: #53748c;
  --silver: #b8c2c8;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c4a;
  --whatsapp-ink: #06381f;
  --text: #142333;
  --muted: #637483;
  --shadow: 0 24px 70px rgba(5, 32, 61, 0.24);
  --radius: 8px;
  --section: clamp(3rem, 7vw, 6.5rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(8, 47, 89, 0.045) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(0deg, rgba(8, 47, 89, 0.045) 1px, transparent 1px) 0 0 / 48px 48px,
    var(--paper);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
  padding: 0.8rem clamp(1rem, 4vw, 3rem);
  color: #fff;
  background: rgba(5, 31, 58, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  background: rgba(5, 31, 58, 0.96);
  box-shadow: 0 12px 34px rgba(5, 31, 58, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0.28rem 0.55rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.brand:hover,
.brand:focus-visible {
  transform: translateY(-2px) scale(1.02);
  background: #fff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.brand-logo {
  width: clamp(172px, 17vw, 246px);
  max-height: 58px;
  object-fit: contain;
}

.footer-brand .brand-logo {
  width: clamp(170px, 20vw, 240px);
  max-height: 64px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand small {
  margin-top: 0.24rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 2vw, 1.6rem);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 0.6rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0.35rem;
  height: 2px;
  background: var(--yellow);
  transition: right 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  right: 0;
}

.header-action,
.btn,
.floating-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.85rem 1.05rem;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-action,
.btn-primary,
.floating-whatsapp {
  color: #05203d;
  background: var(--yellow);
  box-shadow: 0 14px 32px rgba(217, 122, 34, 0.24);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn:hover,
.btn:focus-visible,
.header-action:hover,
.header-action:focus-visible,
.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.whatsapp-cta {
  position: relative;
  gap: 0.6rem;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 16px 36px rgba(18, 140, 74, 0.34);
}

.whatsapp-cta::before {
  content: "☎";
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 1.35rem;
  height: 1.35rem;
  color: var(--whatsapp-dark);
  background: #fff;
  border-radius: 50%;
  font-size: 0.78rem;
  line-height: 1;
}

.whatsapp-cta::after {
  content: "";
  position: absolute;
  inset: -30% auto -30% -50%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  transform: skewX(-18deg);
  transition: left 420ms ease;
}

.whatsapp-cta:hover,
.whatsapp-cta:focus-visible {
  background:
    linear-gradient(135deg, #2ee678, var(--whatsapp-dark));
  box-shadow: 0 20px 50px rgba(18, 140, 74, 0.46);
}

.whatsapp-cta:hover::after,
.whatsapp-cta:focus-visible::after {
  left: 108%;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.48fr);
  align-items: end;
  min-height: clamp(570px, 83svh, 760px);
  padding: clamp(7rem, 13vh, 9.5rem) clamp(1rem, 5vw, 4.8rem) clamp(1.25rem, 4vh, 3.2rem);
  color: #fff;
  background: #051f3a;
  isolation: isolate;
  overflow: hidden;
}

.intro-image,
.intro-overlay,
.intro-grid {
  position: absolute;
  inset: 0;
}

.intro-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  z-index: -4;
}

.intro-overlay {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5, 31, 58, 0.96) 0%, rgba(5, 31, 58, 0.8) 37%, rgba(5, 31, 58, 0.26) 73%, rgba(5, 31, 58, 0.66) 100%),
    linear-gradient(0deg, rgba(5, 31, 58, 0.92) 0%, transparent 48%),
    linear-gradient(120deg, rgba(217, 122, 34, 0.2), transparent 34%);
}

.intro-grid {
  z-index: -2;
  opacity: 0.22;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px) 0 0 / 64px 64px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.intro-content {
  max-width: 720px;
}

.intro-logo-card {
  width: min(310px, 78vw);
  margin-bottom: 1.1rem;
  padding: 0.5rem 0.7rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.intro-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.28);
}

.intro-logo-card img {
  width: 100%;
  height: auto;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 800px;
  margin-bottom: 1rem;
  font-size: clamp(2.45rem, 5.6vw, 5rem);
  font-weight: 900;
  line-height: 0.9;
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.1vw, 3.15rem);
  font-weight: 900;
  line-height: 0.94;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 0.98;
}

.intro-text {
  max-width: 620px;
  margin-bottom: 1.55rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.55;
}

.intro-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.intro-plate {
  justify-self: end;
  display: grid;
  width: min(100%, 360px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(5, 31, 58, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.intro-plate div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 180ms ease, transform 180ms ease;
}

.intro-plate div:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}

.intro-plate div:last-child {
  border-bottom: 0;
}

.intro-plate strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  color: var(--yellow);
  font-size: 2.4rem;
  line-height: 0.8;
  text-transform: uppercase;
}

.intro-plate span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
}

.service-rail {
  position: absolute;
  left: clamp(1rem, 5vw, 4.8rem);
  right: clamp(1rem, 5vw, 4.8rem);
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: rgba(248, 246, 239, 0.96);
  color: var(--ink);
  border-top: 4px solid var(--yellow);
  box-shadow: 0 -14px 42px rgba(0, 0, 0, 0.22);
}

.service-rail span {
  min-width: 0;
  padding: 0.95rem 0.75rem;
  border-right: 1px solid var(--dark-line);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.service-rail span:hover {
  color: #fff;
  background: var(--ink);
  transform: translateY(-3px);
}

.service-rail span:last-child {
  border-right: 0;
}

.steel-band {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  padding: 0.75rem clamp(1rem, 5vw, 4.8rem);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 9px, transparent 9px 18px),
    var(--steel);
  color: rgba(255, 255, 255, 0.76);
  overflow-x: auto;
}

.steel-band span {
  flex: 0 0 auto;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.steel-band span:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.36);
  transform: translateY(-2px);
}

.section {
  padding: var(--section) clamp(1rem, 5vw, 4.8rem);
}

.section-heading {
  display: grid;
  gap: 0.7rem;
  margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}

.services {
  background:
    linear-gradient(135deg, rgba(8, 47, 89, 0.12), transparent 42%),
    var(--paper);
}

.service-board {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) minmax(280px, 0.66fr);
  border: 1px solid var(--dark-line);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 18px 54px rgba(5, 31, 58, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-board:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 72px rgba(5, 31, 58, 0.16);
}

.service-menu {
  display: grid;
  align-content: start;
  background: var(--steel);
}

.service-tab {
  min-height: 58px;
  padding: 0.8rem 1rem;
  color: rgba(255, 255, 255, 0.68);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.service-tab:hover,
.service-tab:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.service-tab.is-active {
  color: var(--ink);
  background: var(--yellow);
}

.service-tab.is-active:hover,
.service-tab.is-active:focus-visible {
  color: var(--ink);
}

.service-detail {
  transition: opacity 220ms ease, transform 220ms ease;
}

.service-detail.is-changing {
  opacity: 0.55;
  transform: translateY(8px);
}

.service-detail {
  padding: clamp(1.25rem, 3vw, 2.6rem);
  background:
    linear-gradient(90deg, rgba(8, 47, 89, 0.045) 1px, transparent 1px) 0 0 / 34px 34px,
    #fbfcfd;
}

.service-code {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.35rem 0.55rem;
  color: #fff;
  background: var(--copper);
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 900;
}

.service-detail h3 {
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.service-detail p {
  max-width: 720px;
  color: #3d454b;
  font-size: clamp(1rem, 1.6vw, 1.13rem);
  line-height: 1.65;
}

.service-detail ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
}

.service-detail li {
  position: relative;
  padding-left: 1.4rem;
  color: #2e353a;
  font-weight: 700;
}

.service-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 2px;
}

.service-specs {
  display: grid;
  border-left: 1px solid var(--dark-line);
  background: var(--ink);
}

.service-specs div {
  padding: clamp(1rem, 2vw, 1.45rem);
  color: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.service-specs div:last-child {
  border-bottom: 0;
}

.service-specs span {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--yellow);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2rem;
  font-weight: 900;
}

.service-specs strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #fff;
  font-size: 1rem;
}

.service-specs p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.48;
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(1.3rem, 4vw, 4rem);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 31, 58, 0.9), rgba(4, 22, 42, 0.97)),
    linear-gradient(135deg, var(--steel), var(--ink));
  color: #fff;
}

.experience h2 {
  color: #fff;
}

.experience-copy p:last-child {
  max-width: 680px;
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.65;
}

.proof-panel {
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 8px, transparent 8px 18px),
    rgba(255, 255, 255, 0.05);
}

.proof-line {
  padding: clamp(1rem, 2vw, 1.35rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 180ms ease, transform 180ms ease;
}

.proof-line:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateX(5px);
}

.proof-line:last-child {
  border-bottom: 0;
}

.proof-line strong,
.proof-line span {
  display: block;
}

.proof-line strong {
  margin-bottom: 0.45rem;
  color: var(--yellow);
  font-size: 1rem;
}

.proof-line span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.build-types {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(230px, 0.55fr));
  gap: 1rem;
  background:
    linear-gradient(180deg, rgba(217, 122, 34, 0.08), transparent 44%),
    #eef3f5;
}

.build-card {
  min-height: 260px;
  padding: clamp(1.2rem, 3vw, 2rem);
  color: #fff;
  background:
    linear-gradient(150deg, rgba(5, 31, 58, 0.78), rgba(4, 22, 42, 0.97)),
    linear-gradient(135deg, var(--green), var(--steel));
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.build-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 62px rgba(5, 31, 58, 0.2);
  filter: saturate(1.08);
}

.build-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 4px;
  pointer-events: none;
}

.build-card::after {
  content: "";
  position: absolute;
  right: -28px;
  top: 32px;
  width: 180px;
  height: 18px;
  background: var(--yellow);
  transform: rotate(-34deg);
  opacity: 0.9;
}

.build-card-large {
  min-height: 320px;
  background:
    linear-gradient(150deg, rgba(5, 31, 58, 0.6), rgba(4, 22, 42, 0.98)),
    url("assets/estrutura-metalica-agronop.png") center / cover;
}

.build-card span {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-bottom: 0.8rem;
  padding: 0.36rem 0.55rem;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.build-card h3,
.build-card p {
  position: relative;
  z-index: 1;
}

.build-card h3 {
  max-width: 560px;
  margin-bottom: 0.55rem;
  color: #fff;
}

.build-card p {
  max-width: 610px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.quote {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: clamp(1.3rem, 4vw, 4rem);
  align-items: start;
  background: var(--paper);
}

.quote-intro {
  position: sticky;
  top: 96px;
}

.quote-intro p:last-child {
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.65;
}

.quote-form {
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(8, 47, 89, 0.045) 1px, transparent 1px) 0 0 / 30px 30px,
    #fbfcfd;
  box-shadow: 0 20px 60px rgba(5, 31, 58, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.quote-form:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 72px rgba(5, 31, 58, 0.15);
}

.quote-form fieldset {
  margin: 0 0 1.1rem;
  padding: 0;
  border: 0;
}

.quote-form legend {
  margin-bottom: 0.7rem;
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.55rem;
}

.choice-grid label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem;
  border: 1px solid var(--dark-line);
  border-radius: 4px;
  background: #fff;
  color: #3b4248;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.choice-grid label:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 122, 34, 0.42);
  box-shadow: 0 10px 24px rgba(5, 31, 58, 0.08);
}

.choice-grid input {
  position: absolute;
  opacity: 0;
}

.choice-grid label:has(input:checked) {
  color: #05203d;
  background: var(--yellow);
  border-color: rgba(8, 47, 89, 0.18);
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.quote-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-form select,
.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--dark-line);
  border-radius: 4px;
  background: #fff;
  color: var(--text);
  outline: none;
}

.quote-form select,
.quote-form input {
  min-height: 48px;
  padding: 0 0.8rem;
}

.quote-form textarea {
  min-height: 112px;
  padding: 0.8rem;
  resize: vertical;
}

.quote-form select:focus,
.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(217, 122, 34, 0.16);
}

.full-label {
  margin-top: 0.9rem;
}

.quote-submit {
  margin-top: 1rem;
  width: 100%;
}

.region {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.58fr);
  gap: clamp(1.2rem, 4vw, 4rem);
  align-items: center;
  background: #e8eef2;
}

.region p {
  max-width: 700px;
  margin: 1rem 0 0;
  color: #5c656c;
  line-height: 1.65;
}

.route-card {
  position: relative;
  min-height: 320px;
  padding: clamp(1.2rem, 3vw, 2rem);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 38px 38px,
    var(--steel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.route-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 78px rgba(5, 31, 58, 0.28);
}

.route-card strong {
  display: inline-flex;
  margin-bottom: 1.4rem;
  padding: 0.35rem 0.65rem;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 3px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.route-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-card li {
  padding: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
  transition: background 180ms ease, transform 180ms ease;
}

.route-card li:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateX(4px);
}

.route-line {
  position: absolute;
  right: 12%;
  top: -24%;
  width: 12px;
  height: 150%;
  background: var(--copper);
  transform: rotate(28deg);
  box-shadow: 44px 0 0 rgba(217, 122, 34, 0.82), 88px 0 0 rgba(255, 255, 255, 0.12);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(310px, 0.48fr);
  gap: clamp(1.3rem, 4vw, 4rem);
  align-items: start;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(217, 122, 34, 0.28), transparent 34%),
    #051f3a;
}

.contact h2 {
  color: #fff;
}

.contact-main p:not(.eyebrow) {
  max-width: 640px;
  margin: 1rem 0 1.4rem;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.contact-details {
  display: grid;
  gap: 0.75rem;
}

.contact-details article {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.contact-details article:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.26);
  transform: translateY(-3px);
}

.contact-details span,
.contact-details strong {
  display: block;
}

.contact-details span {
  margin-bottom: 0.35rem;
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-details strong {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.3rem clamp(10rem, 16vw, 14rem) 1.3rem clamp(1rem, 5vw, 4.8rem);
  color: rgba(255, 255, 255, 0.72);
  background: #04162a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer p {
  margin: 0;
  line-height: 1.5;
}

.footer-top-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.75rem 1rem;
  color: var(--yellow);
  border: 1px solid rgba(217, 122, 34, 0.42);
  border-radius: 4px;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer-top-link:hover,
.footer-top-link:focus-visible {
  color: #fff;
  background: rgba(217, 122, 34, 0.18);
  transform: translateY(-2px);
}

.floating-whatsapp {
  position: fixed;
  right: clamp(0.9rem, 3vw, 1.5rem);
  bottom: clamp(0.9rem, 3vw, 1.5rem);
  z-index: 45;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  animation: whatsappPulse 2200ms ease-in-out infinite;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  animation-play-state: paused;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28), 0 0 0 0 rgba(37, 211, 102, 0.36);
  }
  50% {
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28), 0 0 0 10px rgba(37, 211, 102, 0);
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .header-action {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    display: grid;
    justify-items: stretch;
    gap: 0;
    padding: 0.6rem;
    background: rgba(5, 31, 58, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 1.3rem;
    align-items: end;
  }

  .intro-plate {
    justify-self: start;
    width: min(100%, 720px);
    grid-template-columns: repeat(3, 1fr);
  }

  .intro-plate div {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 0;
  }

  .intro-plate div:last-child {
    border-right: 0;
  }

  .service-board,
  .quote,
  .region,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-board {
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .service-menu {
    display: flex;
    overflow-x: auto;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .service-tab {
    flex: 0 0 auto;
    min-width: 150px;
    text-align: center;
  }

  .service-tab:hover,
  .service-tab:focus-visible {
    transform: translateY(-2px);
  }

  .service-specs {
    grid-template-columns: repeat(3, 1fr);
    border-left: 0;
  }

  .service-specs div {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 0;
  }

  .service-specs div:last-child {
    border-right: 0;
  }

  .experience,
  .build-types {
    grid-template-columns: 1fr;
  }

  .quote-intro {
    position: static;
  }

  .choice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --section: clamp(2.5rem, 9vw, 4rem);
  }

  .site-header {
    min-height: 66px;
    padding: 0.65rem 1rem;
  }

  .brand {
    padding: 0.22rem 0.42rem;
  }

  .brand-logo {
    width: clamp(132px, 42vw, 168px);
    max-height: 46px;
  }

  .intro {
    min-height: auto;
    padding: 6.4rem 1rem 0;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.45rem);
  }

  .intro-text {
    font-size: 1rem;
  }

  .intro-plate {
    grid-template-columns: 1fr;
    margin-bottom: 1.2rem;
  }

  .intro-plate div {
    grid-template-columns: 88px 1fr;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .intro-plate div:last-child {
    border-bottom: 0;
  }

  .service-rail {
    position: relative;
    left: auto;
    right: auto;
    grid-template-columns: 1fr 1fr;
    margin: 0 -1rem;
  }

  .service-rail span {
    border-bottom: 1px solid var(--dark-line);
  }

  .service-rail span:last-child {
    grid-column: 1 / -1;
  }

  .section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .service-detail {
    padding: 1.15rem;
  }

  .service-specs {
    grid-template-columns: 1fr;
  }

  .service-specs div,
  .service-specs div:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .service-specs div:last-child {
    border-bottom: 0;
  }

  .choice-grid,
  .form-row,
  .route-card ul,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer {
    justify-items: start;
    padding-right: 1rem;
    padding-bottom: 5.8rem;
  }

  .floating-whatsapp {
    left: 1rem;
    right: 1rem;
  }
}

@media (max-height: 780px) and (min-width: 761px) {
  .site-header {
    min-height: 64px;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }

  .intro {
    min-height: 640px;
    padding-top: 5.9rem;
    padding-bottom: 2.2rem;
  }

  h1 {
    font-size: clamp(2.2rem, 4.65vw, 4.2rem);
  }

  .intro-text {
    margin-bottom: 1rem;
  }

  .intro-plate div {
    padding: 0.85rem;
  }

  .intro-plate strong {
    font-size: 2rem;
  }

  .service-rail span {
    padding: 0.75rem 0.55rem;
  }
}
