:root {
  --black: #080a0d;
  --ink: #111820;
  --graphite: #1b252d;
  --silver: #eef1f2;
  --white: #ffffff;
  --muted: #68727a;
  --gold: #d8b15b;
  --gold-strong: #b88a2b;
  --green: #25d366;
  --red: #a9483f;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  --radius: 8px;
  --container: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f5f7f8;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(1180px, calc(100% - 28px));
  min-height: 76px;
  padding: 10px 14px;
  color: #fff;
  background: rgba(8, 10, 13, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.92rem;
  transition: color 180ms ease, background 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.header-action,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-weight: 850;
  white-space: nowrap;
}

.header-action {
  color: #061008;
  background: var(--green);
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.24);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 99px;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: end;
  padding: 132px 0 22px;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  background: var(--black);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
  transform: scale(1.04);
  filter: saturate(0.95) contrast(1.08);
}

.hero-shade {
  z-index: -1;
  background:
    radial-gradient(circle at 76% 28%, rgba(216, 177, 91, 0.28), transparent 28%),
    linear-gradient(90deg, rgba(8, 10, 13, 0.94) 0%, rgba(8, 10, 13, 0.72) 45%, rgba(8, 10, 13, 0.3) 100%),
    linear-gradient(0deg, rgba(8, 10, 13, 0.94) 0%, rgba(8, 10, 13, 0.06) 54%, rgba(8, 10, 13, 0.54) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 54px;
  align-items: end;
  transform: translateY(-34px);
}

.hero-copy {
  max-width: 760px;
}

.section-tag {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.6rem, 9vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-copy p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-copy strong {
  color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #111820;
  background: linear-gradient(135deg, #f2d889, var(--gold-strong));
  box-shadow: 0 18px 40px rgba(216, 177, 91, 0.22);
}

.btn-whatsapp {
  color: #061008;
  background: var(--green);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.22);
}

.hero-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card img {
  width: 118px;
  height: auto;
  object-fit: contain;
  margin-bottom: 18px;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.72);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stats div {
  display: grid;
  align-content: end;
  min-width: 0;
  min-height: 86px;
  padding: 12px 8px;
  text-align: center;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-stats strong {
  color: var(--gold);
  font-size: clamp(1.65rem, 3vw, 2rem);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-stats span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
  font-size: 0.76rem;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.service-showcase {
  position: relative;
  z-index: 3;
  margin-top: -18px;
  padding: 24px 0 34px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(37, 211, 102, 0.12), transparent 24%),
    linear-gradient(180deg, #080a0d, #10171d);
}

.showcase-text-grid {
  display: block;
}

.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.showcase-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  font-weight: 900;
}

.section {
  padding: 104px 0;
}

.section-services {
  color: #fff;
  background:
    radial-gradient(circle at 12% 16%, rgba(216, 177, 91, 0.18), transparent 28%),
    radial-gradient(circle at 86% 20%, rgba(37, 211, 102, 0.1), transparent 24%),
    linear-gradient(180deg, #10171d, #1c2831);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 472px;
  overflow: hidden;
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card a {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.service-card div {
  display: flex;
  flex-direction: column;
  min-height: 222px;
  padding: 24px;
}

.service-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold-strong);
  font-weight: 950;
}

.service-card p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.7);
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  color: var(--gold);
  font-size: 0.92rem;
}

.service-card .card-link::after {
  content: ">";
  transition: transform 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 177, 91, 0.42);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.service-card:hover img {
  transform: scale(1.05);
  filter: contrast(1.05);
}

.service-card:hover .card-link::after {
  transform: translateX(4px);
}

.section-company {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(169, 72, 63, 0.22), transparent 35%),
    linear-gradient(180deg, #111820, #1d2932);
}

.company-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 68px;
  align-items: center;
}

.company-image {
  overflow: visible;
  border-radius: var(--radius);
}

.company-image img {
  width: min(760px, 122%);
  max-width: none;
  height: auto;
  margin-left: -16%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.company-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.operation-section {
  background: #f6f8f9;
}

.operation-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 52px;
  align-items: center;
}

.operation-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.operation-list span {
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid rgba(17, 24, 32, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(17, 24, 32, 0.06);
  font-weight: 850;
}

.contact-band {
  padding: 84px 0;
  color: #fff;
  background:
    radial-gradient(circle at 82% 16%, rgba(37, 211, 102, 0.18), transparent 26%),
    linear-gradient(135deg, #080a0d, #18242c);
}

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

.contact-grid p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.76);
  background: #07090b;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: center;
}

.footer-brand-block {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand-block img {
  width: 62px;
  flex: 0 0 auto;
}

.footer-brand-block p,
.footer-contact {
  margin: 0;
}

.footer-contact {
  display: grid;
  gap: 7px;
  font-style: normal;
  justify-items: end;
  text-align: right;
}

.footer-contact a,
.footer-grid a {
  color: var(--gold);
  font-weight: 850;
}

.footer-credit {
  margin-top: 22px;
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  text-align: center;
}

.footer-credit a {
  color: rgba(216, 177, 91, 0.72);
  font-weight: 750;
}

.footer-credit a:hover {
  color: var(--gold);
}

.service-page {
  background: #f5f7f8;
}

.service-hero {
  position: relative;
  min-height: 76svh;
  display: flex;
  align-items: end;
  padding: 134px 0 72px;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  background: var(--black);
}

.service-hero-bg,
.service-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.service-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.08);
}

.service-hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 10, 13, 0.92) 0%, rgba(8, 10, 13, 0.68) 46%, rgba(8, 10, 13, 0.3) 100%),
    linear-gradient(0deg, rgba(8, 10, 13, 0.94) 0%, rgba(8, 10, 13, 0.12) 56%, rgba(8, 10, 13, 0.58) 100%);
}

.service-hero-copy {
  max-width: 820px;
}

.service-hero-copy h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 6.6rem);
}

.service-hero-copy p {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.breadcrumb a {
  color: var(--gold);
}

.service-intro {
  margin-top: -36px;
  position: relative;
  z-index: 2;
}

.intro-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  padding: 34px;
  background: #fff;
  border: 1px solid rgba(17, 24, 32, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.intro-card p {
  color: var(--muted);
}

.service-highlights {
  display: grid;
  gap: 10px;
}

.service-highlights span {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 12px 16px;
  color: #18242c;
  background: #f5f7f8;
  border: 1px solid rgba(17, 24, 32, 0.08);
  border-radius: var(--radius);
  font-weight: 850;
}

.detail-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.detail-aside {
  position: sticky;
  top: 28px;
  padding: 26px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(216, 177, 91, 0.18), transparent 42%),
    linear-gradient(180deg, #111820, #1d2932);
  border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(17, 24, 32, 0.16);
}

.detail-aside p {
  color: rgba(255, 255, 255, 0.72);
}

.detail-content {
  display: grid;
  gap: 18px;
}

.benefit-card {
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(17, 24, 32, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(17, 24, 32, 0.07);
}

.benefit-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold-strong);
  font-weight: 950;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-process {
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(37, 211, 102, 0.14), transparent 24%),
    linear-gradient(135deg, #080a0d, #19252d);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-card {
  padding: 22px;
  min-height: 190px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.process-card strong {
  display: block;
  margin-bottom: 26px;
  color: var(--gold);
  font-size: 1.7rem;
}

.process-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.service-cta {
  padding: 76px 0;
  color: #fff;
  background: linear-gradient(135deg, #172129, #0b0f13);
}

.service-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.service-cta p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.72);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav {
    position: fixed;
    top: 84px;
    left: 14px;
    right: 14px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 12px;
    background: rgba(8, 10, 13, 0.97);
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 14px;
  }

  .header-action {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .company-grid,
  .operation-grid,
  .contact-grid,
  .intro-card,
  .detail-grid,
  .service-cta-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 34px;
  }

  .hero-grid {
    transform: translateY(-12px);
  }

  .hero-card {
    max-width: 440px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-actions {
    align-items: start;
  }

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

  .footer-contact {
    justify-items: start;
    text-align: left;
  }

  .company-image img {
    width: 100%;
    margin-left: 0;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-aside {
    position: static;
  }
}

@media (max-width: 650px) {
  :root {
    --container: min(100% - 28px, 1160px);
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .hero {
    padding: 118px 0 44px;
  }

  .service-showcase {
    margin-top: 0;
    padding: 28px 0 34px;
  }

  .service-hero {
    min-height: auto;
    padding: 118px 0 58px;
  }

  .hero-bg img {
    object-position: 46% center;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 5.4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .showcase-text-grid,
  .cards-grid,
  .operation-list,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 76px 0;
  }

  .service-card {
    min-height: auto;
  }

  .company-image img {
    width: 100%;
  }
}
