:root {
  --black: #050505;
  --black-2: #0d0d0d;
  --card: #161310;
  --card-2: #211b15;
  --white: #ffffff;
  --gray: #c9c9c9;
  --muted: #8f8f8f;
  --gold: #ff5a0f;
  --gold-2: #ff5a0f;
  --line: rgba(255, 255, 255, 0.13);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  margin: 0 auto;
}

/* =========================
       SEÇÃO 1 - HERO
    ========================== */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.88) 0%,

      rgba(0, 0, 0, 0) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.88) 100%),
    url("hero.webp") center/cover no-repeat;
  padding: 0 120px 0 120px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 220px;
  background: linear-gradient(180deg, transparent, var(--black));
  pointer-events: none;
}

.nav {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  padding: 26px 120px 0 120px;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 0.95;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand span {
  display: block;
  font-size: 18px;
}

.brand small {
  display: block;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.16em;
  margin-top: 4px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 500;
}

.menu a {
  transition: 0.25s ease;
}

.menu a:hover {
  color: var(--gold);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 14px;
}

.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 150px 0 46px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  min-height: 540px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  font-size: 13px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 22px rgba(242, 166, 59, 0.85);
}

h1 {
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.93;
  letter-spacing: -0.075em;
  font-weight: 900;
  max-width: 780px;
}

h1 span {
  color: var(--gold);
}

.hero-text {
  max-width: 610px;
  margin-top: 28px;
  color: var(--gray);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 15px;
  transition: 0.28s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--white);
  color: #080808;
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: var(--gold);
  box-shadow: 0 20px 45px rgba(242, 166, 59, 0.22);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.floating-card {
  justify-self: end;
  width: min(410px, 100%);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(10, 10, 10, 0.62);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  margin-top: 90px;
}

.floating-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 22px;
  filter: saturate(0.95) contrast(1.05);
}

.floating-card h3 {
  font-size: 24px;
  letter-spacing: -0.04em;
  margin-top: 20px;
}

.floating-card p {
  color: var(--gray);
  line-height: 1.55;
  margin-top: 10px;
  font-size: 14px;
}

.stats {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.stat {
  padding: 22px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent);
}

.stat strong {
  display: block;
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: -0.06em;
  color: var(--white);
  line-height: 1;
}

.stat span {
  display: block;
  color: var(--gray);
  font-size: 13px;
  margin-top: 10px;
  line-height: 1.35;
}

/* =========================
       SEÇÃO 2 - SERVIÇOS
    ========================== */

.services {
  padding: 110px 120px 0px 120px;
  position: relative;
  background:
    radial-gradient(
      circle at 15% 25%,
      rgba(242, 166, 59, 0.12),
      transparent 25%
    ),
    linear-gradient(180deg, var(--black), #080705);
  overflow: hidden;
}

.section-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 46px;
}

.section-head p {
  justify-self: end;
}

.section-kicker {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 900;
}

.section-head p {
  color: var(--gray);
  font-size: 17px;
  line-height: 1.7;
  max-width: 600px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 520px;
  border-radius: 34px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.32);
  transition: 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(242, 166, 59, 0.55);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.02) 0%,
    rgba(0, 0, 0, 0.72) 62%,
    rgba(0, 0, 0, 0.96) 100%
  );
  z-index: 1;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08);
  transition: 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-number {
  position: absolute;
  top: 0;
  left: 0;
  color: rgba(255, 255, 255, 0.52);
  font-weight: 900;
  font-size: 14px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

.service-content h3 {
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 14px;
}

.service-content p {
  color: var(--gray);
  line-height: 1.58;
  font-size: 15px;
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.service-tags span {
  font-size: 12px;
  font-weight: 800;
  color: #151515;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 10px;
  border-radius: 999px;
}

/* =========================
       SEÇÃO 3 - CONTATO
    ========================== */

.contact {
  padding: 110px 120px 50px 120px;
  background:
    radial-gradient(
      circle at 85% 18%,
      rgba(242, 166, 59, 0.15),
      transparent 26%
    ),
    linear-gradient(180deg, #080705 0%, #020202 100%);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 28px;
  align-items: stretch;
}

.form-area {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  border-radius: 36px;
  padding: clamp(28px, 5vw, 54px);
  box-shadow: var(--shadow);
}

.form-area h2 {
  max-width: 720px;
}

.form-area p {
  color: var(--gray);
  line-height: 1.7;
  margin: 18px 0 32px;
  max-width: 620px;
}

form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  outline: none;
  border-radius: 16px;
  min-height: 54px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.94);
  color: #101010;
  font-family: inherit;
  font-size: 14px;
}

textarea {
  padding: 16px;
  min-height: 110px;
  resize: vertical;
}

.submit-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.privacy {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  max-width: 330px;
}

.info-card {
  border-radius: 36px;
  padding: 32px;
  border: 1px solid rgba(242, 166, 59, 0.25);
  background:
    linear-gradient(
      180deg,
      rgba(242, 166, 59, 0.12),
      rgba(255, 255, 255, 0.04)
    ),
    var(--card-2);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.info-card::before {
  content: "JS";
  position: absolute;
  right: -18px;
  top: -8px;
  font-size: 150px;
  font-weight: 900;
  letter-spacing: -0.12em;
  color: rgba(255, 255, 255, 0.035);
}

.info-card h3 {
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 24px;
  position: relative;
}

.contact-list {
  display: grid;
  gap: 18px;
  position: relative;
}

.contact-item {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-item small {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
  font-size: 11px;
  display: block;
  margin-bottom: 8px;
}

.contact-item strong,
.contact-item span {
  display: block;
  color: var(--white);
  line-height: 1.45;
  font-size: 15px;
}

.quick-buttons {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  position: relative;
}

.quick-buttons .btn {
  width: 100%;
}

footer {
  margin-top: 72px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
  flex-wrap: wrap;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #111;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(242, 166, 59, 0.34);
  transition: 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
}
.contact-grid-map {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.map-card {
  border-radius: 36px;
  padding: 32px;
  border: 1px solid rgba(255, 90, 15, 0.25);
  background: radial-gradient(
    circle at 85% 18%,
    rgba(242, 166, 59, 0.15),
    transparent 26%
  );
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.map-card::before {
  content: "MAP";
  position: absolute;
  right: -18px;
  top: -12px;
  font-size: 130px;
  font-weight: 900;
  letter-spacing: -0.12em;
  color: rgba(255, 255, 255, 0.035);
  pointer-events: none;
}

.map-card-header {
  position: relative;
  z-index: 2;
  margin-bottom: 22px;
}

.map-card-header small {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
  font-size: 11px;
  margin-bottom: 10px;
}

.map-card-header h3 {
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.map-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 420px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #111;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 980px) {
  .contact-grid-map {
    grid-template-columns: 1fr;
  }

  .map-wrapper {
    height: 360px;
  }
    .services,
  .contact {
    padding: 76px 0;
  }
}

@media (max-width: 640px) {
  .map-card {
    padding: 24px;
    border-radius: 28px;
  }

  .map-wrapper {
    height: 300px;
    border-radius: 20px;
  }
}

@media (max-width: 980px) {
  .menu {
    display: none;
  }
  .hero {
    padding: 0;
  }
  .hero-grid,
  .section-head,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .floating-card {
    justify-self: start;
    margin-top: 0;
  }
  .nav {
    padding: 26px 0 0 0;
  }
  .stats,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content {
    padding-top: 130px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav-phone {
    display: none;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .hero {
    min-height: auto;
    padding: 0;
  }

  .hero-content {
    padding-bottom: 30px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-text {
    font-size: 16px;
  }

  .stats,
  .service-grid,
  form {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 460px;
  }

  .services,
  .contact {
    padding: 76px 0;
  }

  footer {
    margin-top: 42px;
  }
}
.nav-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--gold);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  border: 1px solid rgba(255, 90, 15, 0.55);
  box-shadow: 0 14px 35px rgba(255, 90, 15, 0.24);
  transition: 0.25s ease;
}

.nav-contact-btn:hover {
  transform: translateY(-3px);
  background: #ffffff;
  color: #080808;
  box-shadow: 0 18px 42px rgba(255, 255, 255, 0.18);
}
