:root {
  --brand: #f37021;
  --brand-dark: #c84f0d;
  --ink: #1f1d1d;
  --muted: #6b6b6b;
  --soft: #f6f6f6;
  --border: #e6e6e6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--brand-dark);
}

a:hover {
  color: var(--brand);
}

.skip-link {
  background: var(--brand);
  color: #fff;
  left: 1rem;
  padding: .75rem 1rem;
  position: fixed;
  top: -4rem;
  z-index: 2000;
}

.skip-link:focus {
  top: 1rem;
}

.navbar {
  min-height: 82px;
}

.navbar-brand img,
.footer img {
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.nav-link {
  color: var(--ink);
  font-weight: 650;
}

.btn {
  border-radius: 6px;
  font-weight: 750;
}

.btn-brand {
  --bs-btn-bg: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-color: #fff;
  --bs-btn-hover-bg: var(--brand-dark);
  --bs-btn-hover-border-color: var(--brand-dark);
  --bs-btn-hover-color: #fff;
  --bs-btn-active-bg: var(--brand-dark);
  --bs-btn-active-border-color: var(--brand-dark);
}

.btn i,
.footer a i {
  margin-right: .45rem;
}

.btn-whatsapp-neon {
  --bs-btn-bg: #19d45b;
  --bs-btn-border-color: #19d45b;
  --bs-btn-color: #07180d;
  --bs-btn-hover-bg: #22f06b;
  --bs-btn-hover-border-color: #22f06b;
  --bs-btn-hover-color: #06140b;
  --bs-btn-active-bg: #10b84a;
  --bs-btn-active-border-color: #10b84a;
  align-items: center;
  box-shadow: 0 0 12px rgba(25, 212, 91, .7), 0 0 28px rgba(25, 212, 91, .36);
  display: inline-flex;
  gap: .25rem;
  justify-content: center;
  overflow: hidden;
  position: relative;
  text-shadow: 0 0 10px rgba(255, 255, 255, .45);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.btn-whatsapp-neon::after {
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .6) 45%, transparent 72%);
  content: "";
  height: 180%;
  left: -85%;
  position: absolute;
  top: -40%;
  transform: rotate(12deg);
  width: 46%;
}

.btn-whatsapp-neon:hover {
  box-shadow: 0 0 18px rgba(34, 240, 107, .9), 0 0 44px rgba(34, 240, 107, .55);
  transform: translateY(-1px);
}

.btn-whatsapp-neon:hover::after {
  animation: neon-sweep .85s ease;
}

@keyframes neon-sweep {
  from {
    left: -85%;
  }

  to {
    left: 130%;
  }
}

.text-brand {
  color: var(--brand);
}

.hero {
  min-height: 720px;
  overflow: hidden;
  position: relative;
}

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

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

.hero-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .56) 37%, rgba(0, 0, 0, .12) 68%, rgba(0, 0, 0, .08) 100%);
  z-index: 1;
}

.hero-content {
  color: #fff;
  padding-bottom: 7rem;
  padding-top: 12rem;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.25rem, 4.2vw, 4.35rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: .98;
  margin-bottom: 1.5rem;
}

.hero .lead {
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin-bottom: 2rem;
}

.eyebrow {
  color: var(--brand);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
  margin-bottom: .8rem;
  text-transform: uppercase;
}

.section {
  padding: 5.5rem 0;
}

.section-intro {
  border-bottom: 1px solid var(--border);
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1.08;
}

h3 {
  font-size: 1.3rem;
  font-weight: 800;
}

.section-text {
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 0;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  padding: 2rem;
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  box-shadow: 0 16px 38px rgba(0, 0, 0, .08);
  transform: translateY(-3px);
}

.service-card p,
.step p,
.footer p {
  color: var(--muted);
  margin-bottom: 1.6rem;
}

.service-card-dark {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.service-card-dark p {
  color: rgba(255, 255, 255, .76);
}

.service-card-media {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  display: block;
  margin: -2rem -2rem 1.6rem;
  overflow: hidden;
}

.service-card-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
  width: 100%;
}

.service-card:hover .service-card-media img {
  transform: scale(1.04);
}

.service-card h3 {
  align-items: center;
  display: flex;
  gap: .6rem;
}

.service-card h3 i {
  color: var(--brand);
  font-size: 1.25rem;
}

.service-number {
  color: var(--brand);
  display: block;
  font-size: .9rem;
  font-weight: 850;
  margin-bottom: 1rem;
}

.gallery-section {
  background: var(--ink);
  overflow: hidden;
  padding-top: 5.5rem;
}

.gallery-heading {
  color: #fff;
  margin-bottom: 2rem;
}

.gallery-heading h2 {
  margin-bottom: 0;
}

.service-gallery {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
}

.service-gallery figure {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.service-gallery picture,
.service-gallery img {
  display: block;
  height: 100%;
  width: 100%;
}

.service-gallery img {
  object-fit: cover;
  transition: transform .35s ease;
}

.service-gallery figure::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .72));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.service-gallery figcaption {
  bottom: 1.2rem;
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 850;
  left: 1.2rem;
  line-height: 1.1;
  position: absolute;
  right: 1.2rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
  z-index: 1;
}

.service-gallery figure:hover img {
  transform: scale(1.04);
}

.check-list {
  display: grid;
  gap: .85rem;
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
}

.check-list li {
  align-items: flex-start;
  display: flex;
  gap: .75rem;
}

.check-list i {
  color: var(--brand);
  margin-top: .25rem;
}

.vehicle-panel {
  background: var(--ink);
  border-radius: 8px;
  color: #fff;
  padding: clamp(2rem, 5vw, 4rem);
}

.vehicle-panel strong {
  color: var(--brand);
  display: block;
  letter-spacing: .1em;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.vehicle-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vehicle-grid span {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  display: flex;
  font-size: clamp(1.25rem, 3vw, 2rem);
  gap: .8rem;
  font-weight: 800;
  padding: 1.4rem;
}

.vehicle-grid i {
  color: var(--brand);
  font-size: .95em;
}

.bg-dark {
  background-color: var(--ink) !important;
}

.step {
  border-left: 2px solid rgba(255, 255, 255, .16);
  height: 100%;
  padding-left: 1.5rem;
}

.step span {
  color: var(--brand);
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 850;
  line-height: 1;
  margin-bottom: 1.2rem;
}

.step h3 {
  color: #fff;
}

.contact-box {
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.contact-box {
  padding: clamp(1.5rem, 4vw, 2.2rem);
}

.contact-box p {
  color: var(--muted);
  margin: .25rem 0;
}

.contact-box strong {
  align-items: center;
  display: flex;
  gap: .55rem;
}

.contact-box strong i {
  color: var(--brand);
}

.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}

.footer a {
  display: inline-block;
  font-weight: 750;
  margin-left: 1rem;
  text-decoration: none;
}

.floating-whatsapp {
  align-items: center;
  background: #19d45b;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 999px;
  bottom: 1.4rem;
  box-shadow: 0 0 16px rgba(25, 212, 91, .82), 0 0 42px rgba(25, 212, 91, .45), 0 12px 32px rgba(0, 0, 0, .28);
  color: #06140b;
  display: inline-flex;
  font-weight: 850;
  gap: .6rem;
  padding: .95rem 1.15rem;
  position: fixed;
  right: 1.4rem;
  text-decoration: none;
  z-index: 1200;
}

.floating-whatsapp:hover {
  background: #22f06b;
  color: #06140b;
  transform: translateY(-2px);
}

.floating-whatsapp i {
  font-size: 1.35rem;
}

.whatsapp-page {
  background:
    linear-gradient(135deg, rgba(31, 29, 29, .94), rgba(31, 29, 29, .82)),
    url("/assets/img/comunicacao-visual-goiania-hero.webp") center / cover no-repeat;
  min-height: 100vh;
}

.whatsapp-screen {
  align-items: center;
  display: flex;
  min-height: 100vh;
  padding: 2rem 1rem;
}

.whatsapp-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .28);
  margin: 0 auto;
  max-width: 560px;
  padding: clamp(1.5rem, 5vw, 3rem);
  text-align: center;
}

.whatsapp-card img {
  height: auto;
  margin-bottom: 1.5rem;
  max-width: 100%;
}

.whatsapp-card h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.whatsapp-card p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.whatsapp-card small {
  color: var(--muted);
  display: block;
  margin-top: 1rem;
}

@media (max-width: 991.98px) {
  .navbar-brand img {
    width: 170px;
  }

  .hero {
    min-height: 660px;
  }

  .hero-content {
    padding-top: 10rem;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .46));
  }

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

@media (max-width: 575.98px) {
  .section {
    padding: 4rem 0;
  }

  .hero {
    min-height: 690px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .gallery-section {
    padding-top: 4rem;
  }

  .service-gallery {
    grid-template-columns: 1fr;
  }

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

  .footer a {
    margin: .7rem 1rem 0 0;
  }

  .floating-whatsapp {
    border-radius: 50%;
    bottom: .9rem;
    height: 58px;
    justify-content: center;
    padding: 0;
    right: .9rem;
    width: 58px;
  }

  .floating-whatsapp span {
    display: none;
  }
}
