:root {
  --orange: #EE7F23;
  --blue: #2B4652;
  --petroleum: #1F3540;
  --graphite: #5A636A;
  --panel: #F2F3F4;
  --white: #FFFFFF;
  --line: rgba(255, 255, 255, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--petroleum);
  background: var(--white);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  display: block;
  width: 224px;
  height: auto;
}

.header-contact {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 12px;
  letter-spacing: .04em;
}

.header-contact strong {
  font-family: "Barlow", sans-serif;
  font-size: 18px;
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--petroleum);
}

.hero-photo,
.hero-overlay,
.industrial-grid {
  position: absolute;
  inset: 0;
}

.hero-photo {
  left: 46%;
  background: url("assets/equipamento-gshidrau.jpg") center / cover no-repeat;
  filter: saturate(.8) contrast(1.03);
}

.hero-overlay {
  background: linear-gradient(90deg, var(--petroleum) 0%, var(--petroleum) 44%, rgba(31, 53, 64, .92) 53%, rgba(31, 53, 64, .28) 100%);
}

.industrial-grid {
  opacity: .16;
  background-image: linear-gradient(rgba(255, 255, 255, .15) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .15) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000, transparent 60%);
}

.orange-cut {
  position: absolute;
  top: 0;
  right: 7%;
  width: 11px;
  height: 56%;
  background: var(--orange);
  transform: skewX(-18deg);
  transform-origin: top;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 76px;
}

.eyebrow,
.section-index {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #DDE4E7;
}

.eyebrow span {
  display: block;
  width: 42px;
  height: 4px;
  background: var(--orange);
}

h1,
h2 {
  margin: 0;
  font-family: "Barlow", sans-serif;
  text-transform: uppercase;
  line-height: .94;
}

h1 {
  max-width: 780px;
  margin-top: 28px;
  font-size: clamp(58px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: -.035em;
}

h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin: 30px 0 34px;
  color: #D4DDE1;
  font-size: 17px;
  line-height: 1.7;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 17px 22px 17px 24px;
  color: var(--white);
  background: var(--orange);
  font: 700 14px "Inter", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: background .2s, transform .2s;
}

.primary-cta:hover {
  background: #D96E17;
  transform: translateY(-2px);
}

.primary-cta svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.hero-proof {
  position: absolute;
  z-index: 2;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  color: #BFCBD0;
  font: 600 11px "Inter", sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-proof i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
}

.contact-section {
  padding: 110px 0;
  background: var(--panel);
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 88px;
  align-items: start;
}

.section-index {
  color: var(--orange);
  margin-bottom: 24px;
}

h2 {
  max-width: 480px;
  font-size: clamp(45px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -.025em;
}

.contact-copy>p {
  max-width: 540px;
  margin: 26px 0 44px;
  color: var(--graphite);
  line-height: 1.7;
}

.contact-list {
  border-top: 1px solid #D5DADD;
}

.contact-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid #D5DADD;
}

.contact-item svg {
  width: 24px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item span {
  display: block;
  margin-bottom: 6px;
  color: var(--graphite);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-item a {
  color: var(--petroleum);
  font: 600 15px/1.55 "Inter", sans-serif;
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--orange);
}

.location-card {
  background: var(--white);
  box-shadow: 0 24px 70px rgba(31, 53, 64, .12);
}

.location-photo {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.location-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(31, 53, 64, .9));
}

.location-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
}

.location-label {
  position: absolute;
  z-index: 1;
  left: 28px;
  bottom: 24px;
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.location-label strong {
  display: block;
  margin-top: 4px;
  font: 700 24px "Barlow", sans-serif;
  letter-spacing: 0;
}

.location-card iframe {
  display: block;
  width: 100%;
  height: 310px;
  border: 0;
  filter: grayscale(.25) saturate(.7);
}

footer {
  padding: 42px 0;
  color: #C8D2D6;
  background: var(--petroleum);
  border-top: 6px solid var(--orange);
}

.footer-inner {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 34px;
}

.footer-inner img {
  width: 170px;
}

.footer-inner p {
  font-family: "Barlow", sans-serif;
  font-size: 17px;
  font-weight: 600;
}

.footer-inner small {
  color: #91A2AA;
  font-size: 11px;
}

.whatsapp-float {
  position: fixed;
  z-index: 20;
  right: 26px;
  bottom: 26px;
  display: flex;
  align-items: center;
  color: var(--white);
  text-decoration: none;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .2));
}

.whatsapp-label {
  padding: 12px 14px 12px 16px;
  border-radius: 6px 0 0 6px;
  background: var(--petroleum);
  font-size: 12px;
  font-weight: 700;
}

.whatsapp-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  transition: transform .2s;
}

.whatsapp-icon svg {
  width: 32px;
}

.whatsapp-float:hover .whatsapp-icon {
  transform: scale(1.07);
}

@media (max-width: 900px) {
  .hero {
    min-height: 720px;
  }

  .hero-photo {
    left: 35%;
    opacity: .68;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(31, 53, 64, .98), rgba(31, 53, 64, .68));
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-copy {
    max-width: 650px;
  }

  .footer-inner {
    grid-template-columns: 180px 1fr;
  }

  .footer-inner small {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 32px, 1180px);
  }

  .header-inner {
    height: 78px;
  }

  .brand img {
    width: 180px;
  }

  .header-contact span {
    display: none;
  }

  .header-contact strong {
    font-size: 14px;
  }

  .hero {
    min-height: 690px;
  }

  .hero-photo {
    left: 0;
  }

  .hero-overlay {
    background: rgba(31, 53, 64, .8);
  }

  .hero-content {
    padding-top: 60px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 70px);
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-proof {
    bottom: 22px;
    gap: 10px;
    flex-wrap: wrap;
  }

  .hero-proof span {
    font-size: 9px;
  }

  .contact-section {
    padding: 80px 0;
  }

  .location-photo {
    height: 360px;
  }

  .location-card iframe {
    height: 280px;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-inner p {
    margin: 8px 0;
  }

  .whatsapp-label {
    display: none;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
