/* Adriano Eletricista — tema escuro premium (ouro, vermelho, prata) */

:root {
  --bg-deep: #0a0c10;
  --bg-elevated: #12151c;
  --bg-card: #161a24;
  --carbon: rgba(255, 255, 255, 0.03);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(212, 175, 55, 0.45);
  --gold: #d4af37;
  --gold-bright: #f0d78c;
  --red: #e31b23;
  --red-dark: #b8141a;
  --silver: #c8cdd8;
  --text: #e8eaef;
  --text-muted: #9aa3b2;
  --shadow-glow: 0 0 40px rgba(227, 27, 35, 0.25);
  /* Fallbacks web-safe reduzem CLS quando Montserrat/DM Sans carregam (fontes async) */
  --font-display: "Montserrat", Arial, Helvetica, ui-sans-serif, sans-serif;
  --font-body: "DM Sans", Arial, Helvetica, ui-sans-serif, sans-serif;
  --grid-bg:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      var(--carbon) 2px,
      var(--carbon) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      var(--carbon) 2px,
      var(--carbon) 4px
    );
  --radius: 14px;
  --radius-lg: 22px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg-deep);
  background-image:
    var(--grid-bg),
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(212, 175, 55, 0.12), transparent 50%),
    radial-gradient(ellipse 80% 50% at 100% 50%, rgba(227, 27, 35, 0.06), transparent 45%),
    linear-gradient(180deg, #0a0c10 0%, #07080b 100%);
  background-size: auto, auto, auto, auto;
  min-height: 100vh;
}

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

a {
  color: var(--gold-bright);
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--red);
  color: #fff;
  font-weight: 600;
}

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

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.container--narrow {
  max-width: 640px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  isolation: isolate;
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.28;
  background: var(--grid-bg);
}

.header__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
}

.brand:hover {
  color: inherit;
}

.brand__logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--border-gold), 0 8px 32px rgba(0, 0, 0, 0.4);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.025em;
}

.brand__tag {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.nav__list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  color: var(--silver);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--gold-bright);
}

/* Menu mobile: markup no header; visível só em @media (max-width: 768px) */
.nav-toggle {
  display: none;
  flex-shrink: 0;
}

.nav-drawer {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.btn--cta {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(145deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-glow), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn--cta:not(.btn--contact-cta) {
  animation: cta-pulse 2.8s ease-in-out infinite;
}

.btn--cta.btn--contact-cta {
  background: linear-gradient(145deg, var(--red) 0%, #c4151c 100%);
  box-shadow:
    0 0 0 0 rgba(227, 27, 35, 0.35),
    0 10px 32px rgba(227, 27, 35, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  animation: contact-cta-pulse 2.6s ease-in-out infinite;
}

.btn--cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 60%,
    transparent 100%
  );
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.btn--cta:hover::before,
.btn--cta:focus-visible::before {
  transform: translateX(120%);
}

.btn--cta:hover,
.btn--cta:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 12px 40px rgba(227, 27, 35, 0.45);
}

.btn--cta:active {
  transform: translateY(0) scale(0.98);
}

.btn--shine::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, var(--gold), transparent 40%, var(--gold-bright), transparent 70%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.btn--shine:hover::after,
.btn--shine:focus-visible::after {
  opacity: 0.85;
}

.btn--header {
  padding: 0.65rem 1.15rem;
  font-size: 0.9rem;
}

.btn--ghost {
  background: transparent;
  color: var(--silver);
  border: 1px solid var(--border-subtle);
}

.btn--ghost:hover {
  border-color: var(--border-gold);
  color: var(--gold-bright);
}

/* Hero: segundo botão só contorno, não compete com o CTA */
.btn--outline {
  background: transparent;
  color: var(--silver);
  border: 1px solid rgba(232, 234, 239, 0.28);
  box-shadow: none;
}

.btn--outline:hover,
.btn--outline:focus-visible {
  border-color: rgba(212, 175, 55, 0.45);
  color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.04);
}

.btn--wide {
  width: 100%;
  max-width: 420px;
}

@keyframes cta-pulse {
  0%,
  100% {
    box-shadow: var(--shadow-glow), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }
  50% {
    box-shadow:
      0 0 28px rgba(227, 27, 35, 0.55),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}

@keyframes contact-cta-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(227, 27, 35, 0.32),
      0 10px 32px rgba(227, 27, 35, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.16);
  }

  50% {
    box-shadow:
      0 0 0 12px rgba(227, 27, 35, 0),
      0 14px 40px rgba(227, 27, 35, 0.55),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(4rem, 10vw, 6rem);
  overflow-x: clip;
  overflow-y: visible;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--grid-bg);
  opacity: 0.5;
  pointer-events: none;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(212, 175, 55, 0.08), transparent 55%);
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__layout {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 44%);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.hero__copy {
  min-width: 0;
}

/* Selo Google minimalista (sem fundo branco), abaixo do lead */
.google-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
  margin: 0 0 2.35rem;
  padding: 0;
  background: none;
  border: none;
}

.google-rating__stars {
  display: inline-flex;
  align-items: center;
  gap: 0.06rem;
  font-size: 0.88rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold-bright);
  text-shadow:
    0 0 10px rgba(240, 215, 140, 0.45),
    0 0 18px rgba(212, 175, 55, 0.28);
}

.google-rating__star {
  display: inline-block;
}

.google-rating__text {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.2rem 0.45rem;
  font-family: var(--font-body);
  line-height: 1.35;
}

.google-rating__seal {
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 244, 250, 0.88);
}

.google-rating__suffix {
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(232, 234, 239, 0.52);
}

.hero__figure {
  position: relative;
  margin: 0;
  justify-self: end;
  width: 100%;
  max-width: 420px;
}

.hero__photo {
  position: relative;
  display: grid;
  grid-template: 1fr / 1fr;
  align-items: center;
  justify-items: center;
  border-radius: var(--radius-lg);
  overflow: visible;
  border: 1px solid var(--border-subtle);
  background-color: var(--bg-deep);
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      var(--carbon) 2px,
      var(--carbon) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      var(--carbon) 2px,
      var(--carbon) 4px
    ),
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(212, 175, 55, 0.06), transparent 55%);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Camada de penumbra: mesma arte desfocada (não drop-shadow) → degradê suave, sem anel no contorno */
.hero__photo-penumbra {
  grid-area: 1 / 1;
  z-index: 0;
  width: 100%;
  pointer-events: none;
  opacity: 0.58;
  transform: scale(1.12) translate(2%, 3.5%);
  /* Máscara radial: suaviza o fim da “nuvem” de sombra (menos demarcação nas extremidades) */
  -webkit-mask-image: radial-gradient(
    ellipse 98% 100% at 50% 48%,
    #000 0%,
    #000 38%,
    rgba(0, 0, 0, 0.55) 72%,
    rgba(0, 0, 0, 0.1) 92%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 98% 100% at 50% 48%,
    #000 0%,
    #000 38%,
    rgba(0, 0, 0, 0.55) 72%,
    rgba(0, 0, 0, 0.1) 92%,
    transparent 100%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.hero__photo-penumbra img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius-lg) - 1px);
  filter: brightness(0) saturate(0) blur(64px);
  transform: scale(1.06);
}

.hero__photo-figure {
  grid-area: 1 / 1;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  border-radius: calc(var(--radius-lg) - 1px);
  filter: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero__eyebrow {
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 0.9rem;
  background: linear-gradient(135deg, #f5e6b8, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 0 0 1.85rem;
  max-width: 100%;
}

.text-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  font-size: 1.05rem;
  line-height: 1.62;
  color: var(--text-muted);
  max-width: 58ch;
  margin: 0 0 2.35rem;
}

.hero__accent {
  font-weight: 600;
  color: transparent;
  background: linear-gradient(135deg, #fff4d2, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.22));
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.1rem;
  margin: 0.35rem 0 0;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal-in 0.7s var(--transition) forwards;
}

.reveal--delay-1 { animation-delay: 0.08s; }
.reveal--delay-2 { animation-delay: 0.16s; }
.reveal--delay-3 { animation-delay: 0.24s; }

@keyframes reveal-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__figure {
    justify-self: center;
    max-width: min(400px, 100%);
  }

  .google-rating {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    text-align: center;
  }

  .google-rating__text {
    justify-content: center;
    text-align: center;
  }
}

/* Sections */
.section {
  position: relative;
  isolation: isolate;
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
  background: var(--grid-bg);
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section--alt {
  background: linear-gradient(180deg, rgba(18, 21, 28, 0.5) 0%, rgba(10, 12, 16, 0.9) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section__head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}

.section__subtitle {
  margin: 0;
  color: var(--text-muted);
  max-width: 52ch;
  margin-inline: auto;
}

.section__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Service grid */
.grid--services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.06), transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(212, 175, 55, 0.15);
}

.service-card:hover::before,
.service-card:focus-within::before {
  opacity: 1;
}

.service-card:hover::after,
.service-card:focus-within::after {
  transform: scaleX(1);
}

.service-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background-color: var(--bg-deep);
  background-image:
    var(--grid-bg),
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(212, 175, 55, 0.05), transparent 50%);
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.service-card__media--placeholder {
  background-color: var(--bg-deep);
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      var(--carbon) 2px,
      var(--carbon) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      var(--carbon) 2px,
      var(--carbon) 4px
    ),
    linear-gradient(160deg, rgba(22, 26, 36, 0.9) 0%, rgba(10, 12, 16, 0.95) 100%);
}

.service-card__media--placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08), transparent 65%);
  pointer-events: none;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  padding: 1rem 1.1rem 1.2rem;
  line-height: 1.35;
  flex: 1;
  display: flex;
  align-items: center;
}

/* Serviços — apenas <600px: grid 2 colunas, cards compactos, gap 12px, glow ao toque */
@media (max-width: 599px) {
  .grid--services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .service-card {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .service-card__media {
    aspect-ratio: unset;
    height: 150px;
    min-height: 150px;
    max-height: 150px;
  }

  .service-card__media img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    min-height: 100%;
  }

  .service-card__title {
    font-size: 0.84rem;
    padding: 0.65rem 0.6rem 0.8rem;
    line-height: 1.28;
    letter-spacing: -0.015em;
  }

  .service-card:active {
    transform: translateY(-6px);
    border-color: var(--border-gold);
    box-shadow:
      0 16px 48px rgba(0, 0, 0, 0.35),
      0 0 0 1px rgba(212, 175, 55, 0.15);
  }

  .service-card:active::before {
    opacity: 1;
  }

  .service-card:active::after {
    transform: scaleX(1);
  }
}

/* Features */
.features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 720px;
  margin-inline: auto;
}

.features__item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.25rem 1.45rem;
  background-color: #12141a;
  background-image: none;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    opacity 0.55s var(--transition),
    transform 0.55s var(--transition),
    border-color 0.35s ease,
    background-image 0.35s ease,
    box-shadow 0.35s ease;
}

html.js-ready .features__item:not(.is-visible) {
  opacity: 0;
  transform: translate3d(-12px, 0, 0);
}

.features__item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.features__item.is-visible:hover {
  transform: translate3d(0, -5px, 0);
  border-color: transparent;
  background-image:
    linear-gradient(#12141a, #12141a),
    linear-gradient(118deg, #d4af37 0%, #f5e6b8 40%, #e31b23 100%);
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(227, 27, 35, 0.08);
}

.features__item.is-visible:hover .features__icon {
  filter: drop-shadow(0 0 16px rgba(227, 27, 35, 0.38));
}

.features__icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
  color: var(--red);
  filter: drop-shadow(0 0 12px rgba(227, 27, 35, 0.22));
}

.features__icon svg {
  width: 1.55rem;
  height: 1.55rem;
  display: block;
}

.features__body {
  flex: 1;
  min-width: 0;
}

.features__title {
  display: block;
  font-family: var(--font-display);
  margin-bottom: 0.25rem;
}

.features__text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact */
.section--contact .section__subtitle--contact {
  max-width: 44ch;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.35rem;
  padding: clamp(2rem, 5vw, 2.5rem);
  background: radial-gradient(ellipse 130% 120% at 50% 0%, #1a1d23 0%, #12151a 48%, #0a0c10 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.42);
  transition:
    opacity 0.65s var(--transition),
    transform 0.65s var(--transition);
}

html.js-ready .contact-card:not(.is-visible) {
  opacity: 0;
  transform: scale(0.97);
}

.contact-card.is-visible {
  opacity: 1;
  transform: scale(1);
}

.contact-card__logo {
  width: min(132px, 40vw);
  height: auto;
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--border-gold), 0 12px 40px rgba(0, 0, 0, 0.35);
}

.contact-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 0.25rem;
}

.contact-card__meta {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
}

.contact-card__phone-line {
  margin: 0;
}

.contact-card__phone {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-bright);
  text-decoration: none;
  text-shadow:
    0 0 14px rgba(212, 175, 55, 0.45),
    0 0 28px rgba(240, 215, 140, 0.2);
  transition: color 0.25s ease, text-shadow 0.25s ease, filter 0.25s ease;
}

.contact-card__phone:hover {
  color: #fff8e6;
  text-shadow:
    0 0 18px rgba(240, 215, 140, 0.65),
    0 0 32px rgba(212, 175, 55, 0.35);
}

.contact-card__body .btn--contact-cta {
  margin-top: 0.5rem;
}

/* Footer */
.footer-site {
  position: relative;
  margin-top: 0;
  background: #0a0c10;
  color: rgba(232, 234, 239, 0.94);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-site__texture {
  position: absolute;
  inset: 0;
  opacity: 0.48;
  pointer-events: none;
  background:
    var(--grid-bg),
    radial-gradient(ellipse 85% 45% at 50% 100%, rgba(212, 175, 55, 0.07), transparent 52%),
    radial-gradient(ellipse 55% 35% at 0% 0%, rgba(227, 27, 35, 0.05), transparent 50%);
}

.footer-site__main {
  position: relative;
  z-index: 1;
  padding: clamp(1.75rem, 4vw, 2.5rem) 0 clamp(1.35rem, 3vw, 1.85rem);
}

.footer-site__columns {
  display: grid;
  grid-template-columns: minmax(140px, 168px) minmax(0, 1fr);
  gap: clamp(0.75rem, 2vw, 1.15rem);
  align-items: start;
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
}

.footer-site__authority {
  width: 100%;
  max-width: 168px;
}

.footer-site__authority-card {
  position: relative;
  padding: 2px;
  border-radius: 11px;
  background: linear-gradient(
    145deg,
    #fff4c4 0%,
    #e8c547 18%,
    #d4af37 38%,
    #f5e6b8 52%,
    #b8941f 68%,
    #e0c66a 85%,
    #c9a227 100%
  );
  box-shadow:
    0 6px 22px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.footer-site__screw {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle at 30% 28%, #e8e8e8, #6a6a6a 42%, #2c2c2c 100%);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.5),
    0 1px 3px rgba(0, 0, 0, 0.65);
}

.footer-site__screw--tl {
  top: 5px;
  left: 5px;
}

.footer-site__screw--tr {
  top: 5px;
  right: 5px;
}

.footer-site__screw--bl {
  bottom: 5px;
  left: 5px;
}

.footer-site__screw--br {
  bottom: 5px;
  right: 5px;
}

.footer-site__authority-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  aspect-ratio: 1;
  padding: 1rem 0.75rem;
  text-align: center;
  border-radius: 9px;
  background: #050505;
}

.footer-site__google-g {
  flex-shrink: 0;
}

.footer-site__authority-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.3;
  color: rgba(232, 234, 239, 0.9);
}

.footer-site__authority-stars {
  display: flex;
  gap: 0.06rem;
  font-size: 0.88rem;
  line-height: 1;
}

.footer-site__authority-score {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(135deg, #ffe082, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.footer-site__authority-star {
  color: var(--gold-bright);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35),
    0 -1px 0 rgba(0, 0, 0, 0.35),
    0 0 10px rgba(240, 215, 140, 0.45),
    0 0 18px rgba(212, 175, 55, 0.28);
}

.footer-site__hub {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  justify-content: flex-start;
  width: 100%;
  min-width: 0;
}

.footer-action-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.58rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #121212;
  color: rgba(232, 234, 239, 0.92);
  text-decoration: none;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.footer-action-link:hover {
  color: rgba(245, 248, 252, 0.98);
}

.footer-action-link__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(232, 234, 239, 0.55);
  transition: color 0.3s ease, filter 0.3s ease;
}

.footer-action-link__text {
  flex: 1;
  min-width: 0;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.35;
  transition: color 0.3s ease, text-shadow 0.3s ease, filter 0.3s ease;
}

.footer-action-link__arrow {
  flex-shrink: 0;
  font-size: 0.95rem;
  line-height: 1;
  color: rgba(232, 234, 239, 0.38);
  transition: color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.footer-action-link:hover .footer-action-link__arrow {
  color: rgba(232, 234, 239, 0.75);
  transform: translateX(3px);
}

.footer-action-link--facebook:hover {
  border-color: rgba(24, 119, 242, 0.45);
  box-shadow: 0 0 22px rgba(24, 119, 242, 0.14);
}

.footer-action-link--facebook:hover .footer-action-link__icon {
  color: #1877f2;
}

.footer-action-link--facebook:hover .footer-action-link__text {
  color: rgba(200, 220, 255, 0.96);
  text-shadow: 0 0 14px rgba(24, 119, 242, 0.28);
}

.footer-action-link--instagram:hover {
  border-color: rgba(228, 64, 95, 0.32);
  box-shadow:
    0 0 18px rgba(228, 64, 95, 0.1),
    0 0 28px rgba(245, 133, 32, 0.08);
}

.footer-action-link--instagram:hover .footer-action-link__icon {
  color: #e4405f;
}

.footer-action-link--instagram:hover .footer-action-link__text {
  background: linear-gradient(100deg, #f58529, #e4405f 42%, #c13584 72%, #833ab4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  box-shadow: none;
}

.footer-action-link--google:hover {
  border-color: rgba(227, 27, 35, 0.55);
  box-shadow: 0 0 20px rgba(227, 27, 35, 0.12);
}

.footer-action-link--google:hover .footer-action-link__icon {
  color: var(--red);
  filter: drop-shadow(0 0 6px rgba(227, 27, 35, 0.45));
}

.footer-action-link--google:hover .footer-action-link__text {
  color: rgba(255, 236, 236, 0.98);
  text-shadow: 0 0 12px rgba(227, 27, 35, 0.35);
}

.footer-site__bottom {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(1.25rem, 3vw, 1.85rem);
}

.footer-site__bottom-inner {
  padding-top: 0;
  max-width: 640px;
  margin-inline: auto;
}

.footer-site__rule {
  margin: 0 0 0.75rem;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-site__bottom-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  text-align: center;
}

.footer-site__copyright {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(154, 163, 178, 0.88);
  opacity: 0.48;
}

.footer-site__tagline {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(154, 163, 178, 0.88);
  opacity: 0.48;
}

.footer-site__wa {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(154, 163, 178, 0.55);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.footer-site__wa:hover {
  color: rgba(200, 205, 216, 0.88);
  border-bottom-color: rgba(212, 175, 55, 0.3);
}

@media (min-width: 900px) {
  .footer-site__columns {
    max-width: 720px;
    grid-template-columns: minmax(152px, 172px) 1fr;
    gap: clamp(0.85rem, 1.8vw, 1.25rem);
  }

  .footer-site__authority {
    max-width: 172px;
  }

  .footer-site__bottom-inner {
    max-width: 720px;
  }
}

@media (min-width: 768px) {
  .footer-site__bottom-row {
    justify-content: space-between;
    text-align: left;
  }

  .footer-site__tagline {
    flex: 1;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .footer-site__columns {
    grid-template-columns: 1fr;
    justify-items: stretch;
    max-width: none;
    gap: 0.85rem;
  }

  .footer-site__authority {
    justify-self: center;
    max-width: 168px;
  }

  .footer-site__hub {
    width: 100%;
    max-width: none;
  }

  .footer-site__bottom-inner {
    max-width: none;
  }
}

/* Depoimentos */
.section--testimonials {
  border-top: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, rgba(10, 12, 16, 0.4) 0%, rgba(18, 21, 28, 0.35) 100%);
}

.section__head--testimonials .section__title {
  margin-top: 0.5rem;
}

.testimonials__intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.25rem;
}

.testimonials__stars-row {
  display: inline-flex;
  gap: 0.12rem;
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.testimonials__star {
  color: var(--gold-bright);
  text-shadow:
    0 0 10px rgba(240, 215, 140, 0.55),
    0 0 22px rgba(212, 175, 55, 0.42),
    0 0 34px rgba(212, 175, 55, 0.22);
}

.testimonials__score {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  background: linear-gradient(135deg, #ffe082, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.35));
}

.testimonials__lead {
  max-width: 60ch;
  margin-inline: auto;
}

.testimonials__lead strong {
  color: var(--text);
}

.testimonials__accent {
  font-weight: 600;
  color: transparent;
  background: linear-gradient(135deg, #fff4d2, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.4));
}

/* Carrossel depoimentos */
.carousel {
  position: relative;
  margin-top: 2rem;
  padding: 0 2.5rem;
}

.carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  touch-action: manipulation;
}

.carousel__track {
  display: flex;
  width: 300%;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel__slide {
  flex: 0 0 33.333333%;
  width: 33.333333%;
  padding: 0 0.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  box-sizing: border-box;
}

.carousel__slide .testimonial-card {
  width: 100%;
  min-width: 0;
}

.testimonial-card {
  --testimonial-quote-deco-font: Georgia, "Times New Roman", serif;
  --testimonial-quote-deco-size: 2.85rem;
  --testimonial-quote-deco-leading: 1;
  --testimonial-quote-deco-color: rgba(255, 255, 255, 0.07);
  position: relative;
  isolation: isolate;
  background: rgba(14, 16, 22, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.35rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.09),
    0 12px 36px rgba(0, 0, 0, 0.38);
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 0.25rem;
  left: 0.45rem;
  z-index: 0;
  font-family: var(--testimonial-quote-deco-font);
  font-size: var(--testimonial-quote-deco-size);
  line-height: var(--testimonial-quote-deco-leading);
  color: var(--testimonial-quote-deco-color);
  pointer-events: none;
}

.testimonial-card > * {
  position: relative;
  z-index: 1;
}

.testimonial-card__quote {
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
  flex: 1;
  font-style: normal;
}

.testimonial-card__quote p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* Aspa de fechamento no fluxo (HTML), mesma tipografia da abertura — evita quebra errada de ::after */
.testimonial-card__quote-close {
  font-family: var(--testimonial-quote-deco-font);
  font-size: var(--testimonial-quote-deco-size);
  line-height: 0;
  color: var(--testimonial-quote-deco-color);
  font-style: normal;
  display: inline;
  vertical-align: text-bottom;
  pointer-events: none;
}

.testimonial-card__name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: 0.02em;
}

.testimonial-card__date {
  margin: 0.25rem 0 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonial-card__rating {
  margin: 0;
  display: flex;
  gap: 0.08rem;
  font-size: 0.95rem;
  line-height: 1;
}

.testimonial-card__star {
  color: var(--gold-bright);
  text-shadow:
    0 0 8px rgba(240, 215, 140, 0.5),
    0 0 16px rgba(212, 175, 55, 0.38),
    0 0 26px rgba(212, 175, 55, 0.2);
}

.carousel__controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 2;
}

.carousel__btn {
  pointer-events: auto;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 14, 18, 0.95);
  color: rgba(200, 205, 216, 0.88);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.carousel__btn:hover,
.carousel__btn:focus-visible,
.carousel__btn:active {
  color: #fff;
  background: rgba(227, 27, 35, 0.2);
  border-color: var(--red);
  box-shadow: 0 0 20px rgba(227, 27, 35, 0.35);
}

.carousel__btn:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.carousel__dot:hover {
  border-color: rgba(227, 27, 35, 0.55);
  background: rgba(227, 27, 35, 0.18);
}

.carousel__dot:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.carousel__dot[aria-selected="true"] {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 14px rgba(227, 27, 35, 0.55);
  transform: scale(1.15);
}

/* Mobile: um review por vez — display:contents nos slides coloca os 9 cards no flex do track */
@media (max-width: 767px) {
  .carousel__controls {
    display: none;
  }

  .carousel__track {
    width: 900%;
    gap: 1rem;
  }

  .carousel__slide {
    display: contents;
  }

  .carousel__track .testimonial-card {
    flex: 0 0 calc((100% - 8 * 1rem) / 9);
    width: calc((100% - 8 * 1rem) / 9);
    max-width: none;
  }
}

/* Reputação / Excelência — vitrine de autoridade (nuvem de badges) */
.section--excelencia {
  position: relative;
  border-top: 1px solid var(--border-subtle);
  padding-top: clamp(3rem, 7vw, 4.5rem);
  padding-bottom: clamp(3.25rem, 7vw, 4.75rem);
  overflow: hidden;
}

.section--excelencia__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  background:
    var(--grid-bg),
    radial-gradient(ellipse 90% 55% at 50% 0%, rgba(212, 175, 55, 0.07), transparent 52%),
    radial-gradient(ellipse 70% 45% at 80% 100%, rgba(227, 27, 35, 0.04), transparent 50%),
    linear-gradient(180deg, rgba(10, 12, 16, 0.2) 0%, rgba(7, 8, 11, 0.55) 100%);
}

.section--excelencia__inner {
  position: relative;
  z-index: 1;
}

.section__head--excelencia .section__subtitle {
  max-width: 52ch;
  margin-inline: auto;
}

.badge-cloud {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  gap: 0.55rem 0.7rem;
  max-width: 760px;
  margin-inline: auto;
  min-height: 200px;
  padding: 1.75rem 0.25rem 1.25rem;
}

.badge-cloud .floating-badge:nth-child(1) {
  margin: 0.2rem 0.4rem 0 -0.15rem;
}

.badge-cloud .floating-badge:nth-child(2) {
  margin: -0.35rem 0.2rem 0.15rem 0.5rem;
}

.badge-cloud .floating-badge:nth-child(3) {
  margin: 0.1rem 0.35rem 0.25rem 0;
}

.badge-cloud .floating-badge:nth-child(4) {
  margin: 0.45rem -0.2rem 0 0.6rem;
}

.badge-cloud .floating-badge:nth-child(5) {
  margin: -0.15rem 0.55rem 0.2rem -0.4rem;
}

.badge-cloud .floating-badge:nth-child(6) {
  margin: 0.25rem 0.15rem -0.1rem 0.25rem;
}

.badge-cloud .floating-badge:nth-child(7) {
  margin: -0.2rem 0.45rem 0.35rem 0;
}

.badge-cloud .floating-badge:nth-child(8) {
  margin: 0.15rem -0.35rem 0.1rem 0.5rem;
}

.badge-cloud .floating-badge:nth-child(9) {
  margin: 0.3rem 0.5rem 0 0;
}

.floating-badge {
  --float-delay: 0s;
  --float-x: 0px;
  --float-duration: 5s;
  --float-rot: -0.45deg;
  position: relative;
  z-index: 0;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.52rem 0.92rem 0.52rem 0.68rem;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 600;
  border-radius: 999px;
  color: rgba(245, 247, 250, 0.96);
  animation: badge-float var(--float-duration) ease-in-out infinite;
  animation-delay: var(--float-delay);
  box-shadow:
    0 0 28px rgba(212, 175, 55, 0.12),
    0 0 48px rgba(0, 0, 0, 0.25),
    0 10px 26px rgba(0, 0, 0, 0.42);
}

.floating-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -2;
  background: linear-gradient(
    145deg,
    #fff6d8 0%,
    #e8c547 22%,
    #f0ead8 42%,
    #d4af37 58%,
    #eef1f6 72%,
    #c9a227 100%
  );
}

.floating-badge::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  z-index: -1;
  background-color: #06080c;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.028) 2px,
      rgba(255, 255, 255, 0.028) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.028) 2px,
      rgba(255, 255, 255, 0.028) 4px
    ),
    linear-gradient(155deg, rgba(255, 255, 255, 0.045) 0%, transparent 52%, rgba(0, 0, 0, 0.35) 100%);
}

.floating-badge > * {
  position: relative;
  z-index: 1;
}

.floating-badge__icon {
  color: var(--gold-bright);
  font-size: 0.78rem;
  line-height: 1;
  text-shadow:
    0 0 10px rgba(240, 215, 140, 0.55),
    0 0 18px rgba(212, 175, 55, 0.42);
  filter: drop-shadow(0 0 3px rgba(212, 175, 55, 0.45));
}

.floating-badge__label {
  letter-spacing: 0.02em;
  color: rgba(252, 252, 255, 0.96);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
}

.floating-badge__count {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold-bright);
  text-shadow:
    0 0 12px rgba(240, 215, 140, 0.55),
    0 0 24px rgba(212, 175, 55, 0.25);
}

.floating-badge--weight-strong {
  box-shadow:
    0 0 32px rgba(212, 175, 55, 0.16),
    0 0 52px rgba(0, 0, 0, 0.22),
    0 12px 28px rgba(0, 0, 0, 0.45);
}

.floating-badge--weight-strong::before {
  filter: brightness(1.06);
}

.floating-badge--weight-strong .floating-badge__label {
  font-size: 0.9rem;
  color: rgba(255, 250, 230, 0.98);
}

.floating-badge--weight-top {
  box-shadow:
    0 0 36px rgba(212, 175, 55, 0.22),
    0 0 56px rgba(255, 215, 90, 0.08),
    0 12px 32px rgba(0, 0, 0, 0.48);
}

.floating-badge--weight-top::before {
  filter: brightness(1.12) saturate(1.05);
}

.floating-badge--weight-top .floating-badge__label {
  font-size: 0.98rem;
  color: rgba(255, 248, 220, 0.99);
  text-shadow:
    0 0 14px rgba(212, 175, 55, 0.2),
    0 1px 0 rgba(0, 0, 0, 0.45);
}

.floating-badge--weight-top .floating-badge__count,
.floating-badge--weight-strong .floating-badge__count {
  font-size: 0.85rem;
}

@keyframes badge-float {
  0%,
  100% {
    transform: translate(var(--float-x), 0) rotate(var(--float-rot));
  }

  50% {
    transform: translate(var(--float-x), -9px) rotate(calc(var(--float-rot) * -1));
  }
}

.excelencia-maps {
  margin: 0.35rem 0 0;
  text-align: center;
}

.excelencia-maps__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.45rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(200, 205, 216, 0.72);
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.excelencia-maps__link:hover {
  color: rgba(232, 234, 239, 0.92);
}

.excelencia-maps__g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.12rem 0.28rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.excelencia-maps__g-svg {
  display: block;
}

.excelencia-maps__arrow {
  color: rgba(212, 175, 55, 0.65);
  transition: color 0.3s ease, transform 0.3s ease;
}

.excelencia-maps__link:hover .excelencia-maps__arrow {
  color: rgba(240, 215, 140, 0.9);
  transform: translateX(2px);
}

@media (max-width: 960px) {
  .carousel {
    padding: 0 2rem;
  }
}

@media (max-width: 600px) {
  .carousel {
    padding: 0 0.25rem;
  }

  .carousel__btn {
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
  }
}

/* Mobile: alvos de toque ≥ 48px (Google Ads / usabilidade) */
@media (max-width: 767px) {
  .btn {
    min-height: 48px;
    box-sizing: border-box;
  }

  .btn--header {
    min-height: 48px;
  }

  .brand {
    min-height: 48px;
    padding-block: 0.15rem;
    box-sizing: border-box;
  }

  .nav__list {
    gap: 0.35rem 0.65rem;
    row-gap: 0.5rem;
  }

  .nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 0.45rem;
    box-sizing: border-box;
  }

  .header__inner {
    gap: 0.75rem 1rem;
  }

  .carousel__dots {
    gap: 0.45rem;
    flex-wrap: wrap;
    padding-inline: 0.25rem;
  }

  .carousel__dot {
    box-sizing: content-box;
    width: 6px;
    height: 6px;
    padding: 14px;
    margin: 0;
  }

  .carousel__dot[aria-selected="true"] {
    transform: scale(1.08);
  }

  .footer-site__wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    min-width: 48px;
    padding: 0 0.75rem;
    font-size: 0.8rem;
    box-sizing: border-box;
  }

  .footer-site__bottom-row {
    gap: 0.65rem 1rem;
  }

  .contact-card__phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 0.75rem;
    box-sizing: border-box;
  }

  .excelencia-maps__link {
    min-height: 48px;
    padding: 0.65rem 0.85rem;
    box-sizing: border-box;
  }

  .footer-action-link {
    min-height: 48px;
    padding-block: 0.75rem;
    box-sizing: border-box;
  }
}

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

  .btn--cta {
    animation: none;
  }

  .btn--cta.btn--contact-cta {
    animation: none;
  }

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

  html.js-ready .features__item:not(.is-visible),
  html.js-ready .contact-card:not(.is-visible) {
    opacity: 1;
    transform: none;
  }

  .features__item.is-visible:hover {
    transform: none;
  }

  .btn--cta::before {
    display: none;
  }

  .floating-badge {
    animation: none;
  }

  .carousel__track {
    transition: none;
  }

  .hero__photo-penumbra {
    opacity: 0.32;
  }

  .hero__photo-penumbra img {
    filter: brightness(0) saturate(0) blur(36px);
  }
}

@media (max-width: 520px) {
  .header__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .nav__list {
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn--header {
    width: 100%;
  }
}

/* Mobile (≤768px): cabeçalho compacto, drawer, hero CTAs, dots do carrossel — desktop intocado */
@media (max-width: 768px) {
  .header {
    z-index: 120;
  }

  .header__inner {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.2rem 0;
    max-height: min(10vh, 68px);
    min-height: 0;
  }

  .brand {
    min-height: 0;
    padding-block: 0;
    flex: 1;
    min-width: 0;
  }

  .brand__logo {
    width: 40px;
    height: 40px;
  }

  .brand__name {
    font-size: 1rem;
  }

  .brand__tag {
    font-size: 0.72rem;
  }

  .nav__list {
    display: none !important;
  }

  .btn--header {
    display: none !important;
  }

  .nav-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: var(--gold-bright);
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
  }

  .nav-toggle:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
  }

  .nav-toggle:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
  }

  .nav-toggle__bars {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 22px;
  }

  .nav-toggle__bar {
    display: block;
    height: 2px;
    width: 100%;
    border-radius: 1px;
    background: currentColor;
    transition:
      transform 0.28s ease,
      opacity 0.2s ease;
  }

  /* Sanduíche → um único × dourado (sem segundo botão no painel) */
  .nav-toggle.active .nav-toggle__bars {
    visibility: hidden;
    position: absolute;
    width: 22px;
    height: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .nav-toggle.active::after {
    content: "\00d7";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -54%);
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 300;
    line-height: 1;
    color: var(--gold-bright);
    text-shadow: 0 0 16px rgba(240, 215, 140, 0.42);
    pointer-events: none;
  }

  /* Drawer abaixo do header (z-index); blur só no overlay em tela cheia */
  .nav-drawer {
    --nav-drawer-top: clamp(52px, 10.5vh, 76px);
    display: block;
    position: fixed;
    inset: 0;
    z-index: 110;
    pointer-events: none;
  }

  .nav-drawer.active {
    pointer-events: auto;
  }

  .nav-drawer__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    min-height: 100dvh;
    z-index: 0;
    background-color: rgba(5, 6, 10, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .nav-drawer.active .nav-drawer__backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-drawer__panel {
    position: fixed;
    top: var(--nav-drawer-top);
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: min(100%, 300px);
    max-width: 92vw;
    padding:
      max(1rem, env(safe-area-inset-top))
      max(1rem, env(safe-area-inset-right))
      max(1.25rem, env(safe-area-inset-bottom))
      max(1rem, env(safe-area-inset-left));
    background:
      var(--grid-bg),
      linear-gradient(180deg, rgba(18, 21, 28, 0.98) 0%, rgba(10, 12, 16, 1) 100%);
    border-left: 1px solid var(--border-subtle);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: translateX(100%);
    visibility: hidden;
    transition:
      transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0.32s step-end;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-drawer.active .nav-drawer__panel {
    transform: translateX(0);
    visibility: visible;
    transition:
      transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0s step-start;
  }

  .nav-drawer__nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 1.25rem;
    width: 100%;
    padding-top: 0.35rem;
  }

  .nav-drawer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
  }

  .nav-drawer__list a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0.65rem 1rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(248, 250, 252, 0.95);
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition:
      color 0.2s ease,
      border-color 0.2s ease,
      background 0.2s ease;
  }

  .nav-drawer__list a:hover,
  .nav-drawer__list a:focus-visible {
    color: var(--gold-bright);
    border-color: rgba(212, 175, 55, 0.28);
    background: rgba(212, 175, 55, 0.06);
  }

  .nav-drawer__wa {
    width: 100%;
    margin-top: 0.35rem;
    min-height: 48px;
  }

  @media (prefers-reduced-motion: reduce) {
    .nav-drawer__panel,
    .nav-drawer__backdrop {
      transition: none;
    }
  }

  .hero__actions {
    margin-top: 24px;
    margin-bottom: 1.75rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: 100%;
  }

  .hero__actions .btn--cta.btn--shine {
    width: 100%;
  }

  .hero__actions .btn--outline {
    margin-top: 16px;
    width: 100%;
    background: transparent;
    color: rgba(232, 234, 239, 0.92);
    border: 1px solid rgba(212, 175, 55, 0.38);
    box-shadow: none;
  }

  .hero__actions .btn--outline:hover,
  .hero__actions .btn--outline:focus-visible {
    border-color: rgba(240, 215, 140, 0.55);
    color: var(--gold-bright);
    background: rgba(212, 175, 55, 0.06);
  }

  .carousel__dots {
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    padding-inline: 0.35rem;
  }

  .carousel__dot {
    box-sizing: border-box;
    width: 9px;
    height: 9px;
    min-width: unset;
    padding: 0;
    margin: 0;
    border: 1px solid rgba(212, 175, 55, 0.42);
    background: transparent;
  }

  .carousel__dot:hover {
    border-color: rgba(240, 215, 140, 0.55);
    background: rgba(212, 175, 55, 0.12);
  }

  .carousel__dot:focus-visible {
    outline: 2px solid var(--gold-bright);
    outline-offset: 3px;
  }

  .carousel__dot[aria-selected="true"] {
    background: var(--gold-bright);
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(240, 215, 140, 0.48);
    transform: none;
  }
}
