/* =========================
   Configurações globais
========================= */
:root {
  --purple-950: #0d061a;
  --purple-900: #160b2d;
  --purple-800: #231145;
  --purple-700: #351869;
  --purple-600: #562095;
  --orange-600: #e85900;
  --orange-500: #ff6a00;
  --orange-400: #ff8a1f;
  --ink: #1d1725;
  --text: #5f5968;
  --muted: #817b89;
  --surface: #ffffff;
  --surface-soft: #f7f5f9;
  --border: #e8e3ec;
  --white: #ffffff;
  --container: 1180px;
  --shadow: 0 18px 50px rgba(28, 13, 52, 0.1);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--orange-600);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--orange-400);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

.eyebrow-dark {
  color: var(--orange-600);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.button svg {
  width: 20px;
  height: 20px;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  box-shadow: 0 12px 30px rgba(232, 89, 0, 0.26);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--orange-400), var(--orange-500));
  box-shadow: 0 16px 36px rgba(232, 89, 0, 0.34);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(8px);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.72);
}

.button-light {
  color: var(--purple-900);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(12, 5, 25, 0.2);
}

.button-light:hover {
  color: var(--orange-600);
  box-shadow: 0 16px 36px rgba(12, 5, 25, 0.28);
}

/* =========================
   Header
========================= */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    background var(--transition),
    box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: rgba(13, 6, 26, 0.96);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.header-content {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand {
  position: relative;
  z-index: 2;
  width: 250px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav > a:not(.header-phone) {
  position: relative;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
}

.main-nav > a:not(.header-phone)::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.main-nav > a:not(.header-phone):hover {
  color: var(--white);
}

.main-nav > a:not(.header-phone):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-phone {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  padding-left: 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  line-height: 1.25;
}

.header-phone span {
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.header-phone strong {
  color: var(--orange-400);
  font-size: 1.05rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  background: currentColor;
  border-radius: 5px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   Hero
========================= */
.hero {
  position: relative;
  display: flex;
  min-height: 760px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--purple-950);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 6, 26, 0.98) 0%, rgba(15, 7, 30, 0.85) 35%, rgba(15, 7, 30, 0.24) 64%, rgba(15, 7, 30, 0.12) 100%),
    linear-gradient(0deg, rgba(13, 6, 26, 0.48), transparent 45%),
    url("assets/images/hero-auto-center.jpg") center / cover no-repeat;
  transform: scale(1.015);
}

.hero::before {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  content: "";
  background: linear-gradient(transparent 10%, var(--orange-500) 50%, transparent 90%);
}

.hero::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: -200px;
  width: 480px;
  height: 480px;
  content: "";
  background: rgba(255, 106, 0, 0.1);
  border-radius: 50%;
  filter: blur(90px);
}

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

.hero-content > * {
  max-width: 650px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(3rem, 5.8vw, 5.1rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 span {
  color: var(--orange-400);
}

.hero-text {
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 13px;
  margin-top: 34px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 650;
  list-style: none;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-highlights svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  color: var(--orange-400);
  border: 1px solid rgba(255, 138, 31, 0.45);
  border-radius: 50%;
}

.hero-location {
  position: absolute;
  z-index: 3;
  right: max(28px, calc((100vw - var(--container)) / 2));
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

.hero-location svg {
  width: 30px;
  height: 30px;
  padding: 6px;
  color: var(--orange-400);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.hero-location span {
  display: flex;
  flex-direction: column;
}

.hero-location strong {
  color: var(--white);
  font-size: 0.88rem;
}

/* =========================
   Faixa de confiança
========================= */
.trust-strip {
  position: relative;
  z-index: 4;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 20px 45px rgba(23, 12, 42, 0.08);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  display: flex;
  min-height: 122px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 28px 38px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--border);
}

.trust-number {
  color: var(--orange-600);
  font-size: 2rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.05em;
}

.trust-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--orange-600);
  background: #fff2e9;
  border-radius: 12px;
}

.trust-icon svg {
  width: 26px;
  height: 26px;
}

.trust-item p {
  display: flex;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
  flex-direction: column;
}

.trust-item strong {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 0.9rem;
}

/* =========================
   Serviços
========================= */
.services {
  background:
    radial-gradient(circle at 8% 10%, rgba(85, 32, 149, 0.04), transparent 27%),
    var(--surface-soft);
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 70px;
  margin-bottom: 48px;
}

.section-heading h2,
.about-content h2,
.cta-content h2 {
  font-size: clamp(2.15rem, 4vw, 3.45rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-heading > p {
  padding-bottom: 6px;
  color: var(--text);
  line-height: 1.75;
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 340px;
  overflow: hidden;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(30, 17, 50, 0.04);
  flex-direction: column;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.service-card::after {
  position: absolute;
  right: -35px;
  bottom: -65px;
  width: 130px;
  height: 130px;
  content: "";
  background: rgba(255, 106, 0, 0.06);
  border-radius: 50%;
}

.service-card:hover {
  border-color: rgba(232, 89, 0, 0.3);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.service-card-featured {
  color: var(--white);
  background:
    radial-gradient(circle at 100% 100%, rgba(255, 106, 0, 0.2), transparent 38%),
    linear-gradient(145deg, var(--purple-800), var(--purple-950));
  border-color: transparent;
}

.service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 30px;
  place-items: center;
  color: var(--orange-600);
  background: #fff1e6;
  border-radius: 14px;
}

.service-icon svg {
  width: 34px;
  height: 34px;
}

.service-card-featured .service-icon {
  color: var(--orange-400);
  background: rgba(255, 106, 0, 0.12);
  border: 1px solid rgba(255, 138, 31, 0.2);
}

.service-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #d8d3dd;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.service-card-featured .service-number {
  color: rgba(255, 255, 255, 0.3);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  line-height: 1.25;
}

.service-card p {
  margin-bottom: 22px;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.7;
}

.service-card-featured p {
  color: rgba(255, 255, 255, 0.62);
}

.service-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 10px;
  margin-top: auto;
  color: var(--orange-600);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-card-featured a {
  color: var(--orange-400);
}

.service-card a span {
  font-size: 1.1rem;
  transition: transform var(--transition);
}

.service-card a:hover span {
  transform: translateX(4px);
}

/* =========================
   Sobre
========================= */
.about {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--purple-950);
}

.about-decoration {
  position: absolute;
  top: -200px;
  right: -250px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(112, 42, 181, 0.34), transparent 68%);
}

.about::after {
  position: absolute;
  bottom: -100px;
  left: 35%;
  width: 1px;
  height: 420px;
  content: "";
  background: linear-gradient(transparent, rgba(255, 106, 0, 0.55), transparent);
  transform: rotate(35deg);
}

.about-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.about-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--purple-800);
  border: 1px solid rgba(255, 138, 31, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
}

.about-visual::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 48%, rgba(10, 4, 20, 0.92) 100%),
    linear-gradient(90deg, rgba(255, 106, 0, 0.08), transparent 45%);
  pointer-events: none;
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms ease;
}

.about-visual:hover img {
  transform: scale(1.025);
}

.about-visual figcaption {
  position: absolute;
  z-index: 3;
  right: 35px;
  bottom: 32px;
  left: 35px;
  display: flex;
  flex-direction: column;
}

.about-visual figcaption span {
  margin-bottom: 7px;
  color: var(--orange-400);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-visual figcaption strong {
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1.25;
}

.about-content > p:not(.eyebrow) {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 34px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 650;
}

.check-list span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--orange-400);
  background: rgba(255, 106, 0, 0.11);
  border-radius: 50%;
}

.check-list svg {
  width: 15px;
  height: 15px;
}

/* =========================
   Chamada comercial
========================= */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(255, 106, 0, 0.98), rgba(219, 72, 0, 0.96)),
    var(--orange-600);
}

.cta-section::before {
  position: absolute;
  top: -130px;
  left: 45%;
  width: 450px;
  height: 450px;
  content: "";
  border: 70px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.cta-content > div {
  max-width: 700px;
}

.cta-content .eyebrow {
  color: var(--white);
}

.cta-content h2 {
  font-size: clamp(2rem, 3.7vw, 3rem);
}

.cta-content p:last-child {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
}

.cta-content .button {
  flex: 0 0 auto;
}

/* =========================
   Localização
========================= */
.location {
  background: var(--white);
}

.location-heading {
  margin-bottom: 42px;
}

.location-card {
  display: grid;
  overflow: hidden;
  grid-template-columns: 1.15fr 0.85fr;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.facade-photo {
  position: relative;
  min-height: 580px;
  margin: 18px;
  overflow: hidden;
  background: var(--purple-900);
  border-radius: 20px;
}

.facade-photo img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
  transition: transform 700ms ease;
}

.facade-photo:hover img {
  transform: scale(1.025);
}

.facade-photo::after {
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  content: "";
  background: linear-gradient(transparent, rgba(13, 6, 26, 0.68));
}

.facade-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 750;
}

.status-dot {
  width: 9px;
  height: 9px;
  background: var(--orange-400);
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 106, 0, 0.18);
}

.contact-panel {
  display: flex;
  padding: 52px 48px;
  justify-content: center;
  flex-direction: column;
}

.contact-panel > .eyebrow {
  margin-bottom: 14px;
}

.location-title {
  max-width: 390px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.location-intro {
  margin-top: 15px;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.7;
}

.contact-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 23px 0;
}

.contact-item + .contact-item {
  border-top: 1px solid var(--border);
}

.contact-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--orange-600);
  background: #fff0e5;
  border-radius: 12px;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-item h3 {
  margin-bottom: 7px;
  font-size: 1.05rem;
}

.contact-item address,
.contact-item p {
  color: var(--text);
  font-size: 0.85rem;
  font-style: normal;
  line-height: 1.7;
}

.phone-link {
  display: block;
  margin-bottom: 4px;
  color: var(--purple-700);
  font-size: 1.25rem;
  font-weight: 850;
}

.route-button {
  width: 100%;
  margin-top: 6px;
}

.location-details {
  display: grid;
  margin-top: 24px;
  overflow: hidden;
  grid-template-columns: 1.45fr 0.55fr;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.map-wrapper {
  min-height: 320px;
  background: #ddd7e2;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  filter: saturate(0.8) contrast(1.03);
}

.hours-card {
  display: grid;
  align-content: center;
  padding: 38px;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  color: var(--white);
  background: var(--purple-950);
}

.hours-card .contact-icon {
  color: var(--orange-400);
  background: rgba(255, 106, 0, 0.13);
}

.hours-card .opening-hours h3 {
  font-size: 1.05rem;
}

.opening-hours dl {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.opening-hours dl div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.83rem;
}

.opening-hours dd {
  color: var(--white);
  font-weight: 750;
}

/* =========================
   Rodapé
========================= */
.site-footer {
  padding-top: 72px;
  color: rgba(255, 255, 255, 0.62);
  background: #0b0515;
}

.footer-grid {
  display: grid;
  padding-bottom: 55px;
  grid-template-columns: 1.8fr 0.7fr 1fr;
  gap: 70px;
}

.footer-brand img {
  width: 250px;
  height: auto;
  margin-bottom: 22px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 340px;
  font-size: 0.88rem;
}

.site-footer h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: 10px;
  font-size: 0.85rem;
  list-style: none;
}

.site-footer a {
  transition: color var(--transition);
}

.site-footer a:hover {
  color: var(--orange-400);
}

.footer-bottom {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
}

/* Botão flutuante de telefone */
.floating-actions {
  position: fixed;
  z-index: 9999;
  right: 22px;
  bottom: 22px;
  display: flex;
  overflow: hidden;
  align-items: stretch;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(15, 8, 45, 0.35);
  transition: transform var(--transition);
}

.floating-action {
  display: flex;
  min-width: 132px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: filter var(--transition);
}

.floating-whatsapp {
  background: #25d366;
}

.floating-route {
  background: linear-gradient(135deg, var(--purple-700), var(--purple-900));
  border-left: 1px solid rgba(255, 255, 255, 0.45);
}

.floating-action:hover {
  filter: brightness(1.06);
}

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

/* Animações discretas */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =========================
   Responsividade
========================= */
@media (max-width: 1060px) {
  .main-nav {
    gap: 20px;
  }

  .main-nav > a:not(.header-phone) {
    font-size: 0.82rem;
  }

  .header-phone {
    padding-left: 18px;
  }

  .hero-media {
    background:
      linear-gradient(90deg, rgba(13, 6, 26, 0.98) 0%, rgba(15, 7, 30, 0.85) 44%, rgba(15, 7, 30, 0.32) 78%, rgba(15, 7, 30, 0.18) 100%),
      linear-gradient(0deg, rgba(13, 6, 26, 0.55), transparent 45%),
      url("assets/images/hero-auto-center.jpg") 58% center / cover no-repeat;
  }

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

  .about-grid {
    gap: 55px;
  }

  .location-card {
    grid-template-columns: 1fr 0.82fr;
  }

  .contact-panel {
    padding: 40px 34px;
  }

  .location-details {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .hours-card {
    padding: 30px 24px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 86px 0;
  }

  .header-content {
    min-height: 76px;
  }

  .brand {
    width: 215px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: flex;
  }

  .main-nav {
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    width: min(86vw, 380px);
    height: 100dvh;
    align-items: stretch;
    padding: 110px 30px 40px;
    gap: 5px;
    background: rgba(13, 6, 26, 0.99);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.32);
    flex-direction: column;
    transform: translateX(105%);
    transition: transform 280ms ease;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav > a:not(.header-phone) {
    padding: 15px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .header-phone {
    align-items: flex-start;
    margin-top: 24px;
    padding: 18px;
    background: rgba(255, 106, 0, 0.09);
    border: 1px solid rgba(255, 106, 0, 0.18);
    border-radius: 12px;
  }

  .header-phone strong {
    font-size: 1.25rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero-media {
    background:
      linear-gradient(90deg, rgba(13, 6, 26, 0.98) 0%, rgba(15, 7, 30, 0.84) 55%, rgba(15, 7, 30, 0.4) 100%),
      linear-gradient(0deg, rgba(13, 6, 26, 0.68), transparent 50%),
      url("assets/images/hero-auto-center.jpg") 61% center / cover no-repeat;
    opacity: 0.88;
  }

  .hero h1 {
    max-width: 600px;
  }

  .hero-text {
    max-width: 550px;
  }

  .hero-location {
    display: none;
  }

  .trust-item {
    padding-inline: 20px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .about-visual,
  .about-visual img {
    min-height: 560px;
  }

  .cta-content {
    align-items: flex-start;
    flex-direction: column;
    gap: 32px;
  }

  .location-card {
    grid-template-columns: 1fr;
  }

  .facade-photo,
  .facade-photo img {
    min-height: 480px;
  }

  .contact-panel {
    padding: 42px 36px;
  }

  .location-details {
    grid-template-columns: 1fr;
  }

  .map-wrapper,
  .map-wrapper iframe {
    min-height: 380px;
  }

  .hours-card {
    padding: 34px;
    grid-template-columns: 46px 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .brand {
    width: 190px;
  }

  .hero {
    min-height: 740px;
    align-items: flex-end;
  }

  .hero-media {
    background:
      linear-gradient(0deg, rgba(13, 6, 26, 1) 4%, rgba(13, 6, 26, 0.9) 42%, rgba(13, 6, 26, 0.34) 100%),
      url("assets/images/hero-auto-center.jpg") 65% center / cover no-repeat;
  }

  .hero-content {
    padding-top: 170px;
    padding-bottom: 72px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

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

  .trust-item {
    min-height: auto;
    justify-content: flex-start;
    padding: 22px 10px;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .trust-number,
  .trust-icon {
    width: 48px;
    text-align: center;
  }

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

  .service-card {
    min-height: 320px;
  }

  .about-visual,
  .about-visual img {
    min-height: 480px;
  }

  .about-visual figcaption {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .cta-section {
    padding: 64px 0;
  }

  .cta-content .button {
    width: 100%;
  }

  .location-card {
    border-radius: 18px;
  }

  .facade-photo {
    min-height: 360px;
    margin: 10px;
    border-radius: 14px;
  }

  .facade-photo img {
    min-height: 360px;
  }

  .map-wrapper,
  .map-wrapper iframe {
    min-height: 320px;
  }

  .contact-panel {
    padding: 38px 22px;
  }

  .contact-item {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .hours-card {
    padding: 30px 22px;
    grid-template-columns: 42px 1fr;
  }

  .hours-card .opening-hours dl div {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

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

  .footer-bottom {
    align-items: flex-start;
    padding: 22px 0 100px;
    flex-direction: column;
  }

  .floating-actions {
    right: 12px;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 12px;
    display: flex;
    width: auto;
    max-width: calc(100vw - 24px);
    transform: translateZ(0);
  }

  .floating-action {
    flex: 1;
    min-width: 0;
    min-height: 56px;
  }
}

@media (max-width: 390px) {
  .brand {
    width: 172px;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .floating-action {
    min-height: 54px;
    padding: 10px 8px;
    font-size: 0.82rem;
  }
}
