:root {
  --teal: #17b3b2;
  --teal-dark: #0e8a89;
  --teal-deep: #0a4f4e;
  --mint: #e8f6f5;
  --mint-2: #d3efee;
  --sage: #c5e4e2;
  --ink: #123333;
  --ink-2: #3a5554;
  --white: #ffffff;
  --whatsapp: #25d366;
  --gold: #c9a227;
  --shadow: 0 10px 28px rgba(10, 79, 78, 0.12);
  --radius-pill: 69px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--ink-2);
  background: var(--mint);
  line-height: 1.65;
}

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

a {
  color: var(--teal-dark);
  text-decoration: none;
}

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

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 10px;
}

h3 {
  font-size: 1.25rem;
  margin: 12px 0 8px;
}

.gold-line {
  display: block;
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--sage));
  border-radius: 99px;
  margin: 12px 0 22px;
}

.gold-line.center {
  margin-inline: auto;
}

.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-sub {
  max-width: 640px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  transition: 0.25s ease;
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(23, 179, 178, 0.32);
}

.btn-teal:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

.btn-nav {
  padding: 12px 22px;
  font-size: 15px;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(232, 246, 245, 0.96);
  border-bottom: 1px solid var(--sage);
  backdrop-filter: blur(8px);
}

.header-inner {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: nowrap;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  flex: none;
}

.brand img {
  height: 78px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  background: transparent;
}

.brand-city {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal-dark);
  padding-left: 4px;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
  flex-wrap: nowrap;
}

.nav a {
  color: var(--ink-2);
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--teal-dark);
}

.nav .btn-teal,
.nav .btn-teal:hover {
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--teal-dark);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 110px);
  display: grid;
  place-items: center;
  padding: 80px 0;
  background:
    linear-gradient(180deg, rgba(10, 79, 78, 0.72), rgba(8, 40, 40, 0.82)),
    url("../img/gallery/foto-05.jpeg") center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  color: var(--white);
}

.hero .lead,
.hero .lead-sm {
  color: #f3f3f3;
}

.eyebrow {
  color: var(--sage);
  letter-spacing: 0.5px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
}

.lead {
  margin-bottom: 14px;
}

.lead-sm {
  margin-bottom: 22px;
}

.lead-form {
  background: var(--white);
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.18);
  display: grid;
  gap: 12px;
  width: min(100%, 460px);
  text-align: left;
}

.lead-form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.lead-form input,
.lead-form select {
  height: 46px;
  border: 1px solid #c5e4e2;
  border-radius: 8px;
  padding: 0 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  width: 100%;
}

.combo {
  position: relative;
}

.combo input[type="text"] {
  padding-right: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2317b3b2' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-size: 16px;
}

.combo-list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 20;
  max-height: 220px;
  overflow: auto;
  background: #fff;
  border: 1px solid #c5e4e2;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(10, 79, 78, 0.16);
  list-style: none;
  text-align: left;
}

.combo-list li {
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 400;
  color: var(--ink);
}

.combo-list li:hover,
.combo-list li.active {
  background: var(--mint);
  color: var(--teal-dark);
}

.combo-list li.empty {
  color: var(--ink-2);
  cursor: default;
}

.combo-list[hidden] {
  display: none;
}

.lead-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2317b3b2' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-size: 16px;
  padding-right: 38px;
}

.lead-form input:focus,
.lead-form select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(23, 179, 178, 0.18);
}

.form-err {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.25);
  color: #b91c1c;
  padding: 12px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
}

.about-grid,
.pro-grid,
.human-grid,
.specialist-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.about-media img,
.pro-media img,
.specialist-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 20px 20px 32px 32px;
  box-shadow: 0 14px 35px rgba(10, 79, 78, 0.22);
}

.pro-media img {
  height: 620px;
  object-fit: cover;
  object-position: center center;
}

.specialist-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.specialist-media {
  background: linear-gradient(180deg, var(--mint) 0%, var(--white) 100%);
  border-radius: 20px 20px 32px 32px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.specialist-media img {
  width: 100%;
  height: 680px;
  object-fit: contain;
  object-position: center bottom;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.about,
.pro,
.specialist,
.google-reviews,
.quem-somos {
  padding: 90px 0;
  background: var(--white);
}

.quem-somos {
  background:
    linear-gradient(180deg, var(--mint) 0%, var(--white) 48%, var(--mint-2) 100%);
}

.about p,
.pro p,
.human p,
.specialist p,
.quem-somos p {
  margin-bottom: 14px;
}

.services,
.gallery,
.tech,
.before-after {
  padding: 90px 0;
  background: var(--mint);
}

.gallery {
  background: linear-gradient(180deg, var(--mint-2), var(--sage));
}

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

.card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center center;
}

.card h3,
.card p {
  padding-inline: 18px;
}

.card p {
  padding-bottom: 22px;
  font-size: 15px;
}

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

.gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.6s;
}

.gallery-grid a:hover img {
  transform: scale(1.05);
}

.human {
  padding: 90px 0;
  background: var(--mint-2);
}

.stats {
  display: grid;
  gap: 18px;
}

.stat {
  background: var(--white);
  border-radius: 16px;
  padding: 22px 26px;
  box-shadow: var(--shadow);
}

.stat-number,
.stat-plus {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: var(--teal-dark);
  font-weight: 700;
}

.stat p {
  margin: 0;
}

.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid rgba(18, 51, 51, 0.08);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(10, 79, 78, 0.06);
}

.reviews-score {
  display: grid;
  gap: 6px;
}

.reviews-score strong {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 3rem);
  line-height: 1;
  color: var(--ink);
}

.reviews-score p {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
}

.google-wordmark {
  display: inline-flex;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.g-blue { color: #4285f4; }
.g-red { color: #ea4335; }
.g-yellow { color: #fbbc05; }
.g-green { color: #34a853; }

.btn-google-review {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: #006dff;
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 109, 255, 0.22);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-google-review:hover {
  transform: translateY(-1px);
  background: #0059d4;
  box-shadow: 0 14px 28px rgba(0, 109, 255, 0.28);
}

.review {
  background: var(--white);
  border: 1px solid rgba(18, 51, 51, 0.1);
  border-radius: 16px;
  padding: 22px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.review:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 179, 178, 0.35);
  box-shadow: 0 12px 28px rgba(10, 79, 78, 0.12);
}

.review-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
  text-decoration: none;
}

.review-link:hover .review-more {
  color: var(--teal-dark);
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.reviews-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.reviews-viewport {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.45s ease;
}

.reviews-track .review {
  flex: 0 0 33.333%;
  padding-right: 18px;
  box-sizing: border-box;
  margin-right: 0;
}

.review-text {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  color: var(--ink-2);
}

.review-text.is-measuring {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
  height: auto;
}

.review.is-open .review-text {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.review-more {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 10px;
  border: 0;
  background: none;
  color: #006dff;
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: none;
}

.review-more.is-visible {
  display: inline-flex;
}

.reviews-nav {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  flex: none;
  box-shadow: 0 8px 20px rgba(10, 79, 78, 0.12);
}

.reviews-nav:hover {
  background: var(--mint);
  color: var(--teal-dark);
}

@media (max-width: 980px) {
  .reviews-track .review {
    flex-basis: 50%;
  }
}

@media (max-width: 700px) {
  .reviews-summary {
    padding: 20px;
  }

  .reviews-carousel {
    grid-template-columns: 1fr;
  }

  .reviews-nav {
    display: none;
  }

  .reviews-track .review {
    flex-basis: 100%;
    padding-right: 0;
  }
}

.review header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--ink);
}

.review-avatar {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  flex: none;
  overflow: hidden;
}

.review-avatar-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  z-index: 0;
}

.review-avatar-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.review-avatar-photo.is-hidden {
  display: none;
}

.review-google-badge {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  color: #4285f4;
  font-size: 10px;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 1px rgba(18, 51, 51, 0.08);
  z-index: 2;
}

.review-meta {
  min-width: 0;
}

.review-meta strong {
  display: inline;
  font-size: 15px;
  color: var(--ink);
}

.review-verified {
  color: #006dff;
  margin-left: 4px;
  font-size: 13px;
}

.review-meta time {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  color: var(--ink-2);
}

.center-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  text-align: center;
  margin-top: 36px;
}

.role {
  font-weight: 600;
  color: var(--teal-dark);
}

.tech-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  max-width: 560px;
  margin: 8px auto 36px;
}

.tech-feature-photo {
  width: min(280px, 72vw);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold, #c9a227);
  box-shadow: 0 12px 30px rgba(10, 79, 78, 0.16);
  background: var(--white);
}

.tech-feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.tech-feature .section-sub {
  margin: 0;
  max-width: 480px;
}

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

.tech-item {
  background: var(--white);
  text-align: center;
  padding: 28px 18px;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(10, 79, 78, 0.08);
}

.tech-item-photo {
  width: 140px;
  height: 140px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  background: var(--mint);
}

.tech-item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.tech-item i {
  font-size: 28px;
  color: var(--teal);
  margin-bottom: 10px;
}

.ba-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.ba-viewport {
  overflow: hidden;
}

.ba-track {
  display: flex;
  transition: transform 0.45s ease;
}

.ba-card {
  flex: 0 0 50%;
  padding-right: 18px;
  box-sizing: border-box;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.ba-pair figure {
  position: relative;
  margin: 0;
}

.ba-pair img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ba-pair figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(10, 79, 78, 0.82);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
}

.ba-nav {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  flex: none;
  box-shadow: 0 8px 20px rgba(10, 79, 78, 0.12);
}

.ba-nav:hover {
  background: var(--mint);
  color: var(--teal-dark);
}

.testimonials {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--mint) 0%, var(--white) 48%, var(--mint-2) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 300px));
  justify-content: center;
  gap: 22px;
  max-width: 1280px;
  margin: 0 auto 8px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(10, 79, 78, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(10, 79, 78, 0.18);
}

.testimonial-video {
  position: relative;
  background: #0b1c1c;
  aspect-ratio: 9 / 16;
}

.testimonial-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.testimonial-video video:fullscreen,
.testimonial-video video:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  background: #000;
}

.video-hitbox {
  position: absolute;
  inset: 0 0 52px 0;
  z-index: 1;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
}

.video-toggle {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 68px;
  height: 68px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  background: rgba(10, 79, 78, 0.78);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease, visibility 0.2s ease;
}

.video-toggle:hover,
.video-toggle:focus-visible {
  background: rgba(14, 138, 137, 0.92);
  transform: translate(-50%, -50%) scale(1.06);
  outline: none;
}

.video-toggle-icon {
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #fff;
}

.testimonial-video.is-playing .video-toggle-icon {
  width: 18px;
  height: 22px;
  margin-left: 0;
  border: 0;
  background:
    linear-gradient(#fff, #fff) left / 6px 100% no-repeat,
    linear-gradient(#fff, #fff) right / 6px 100% no-repeat;
}

.testimonial-video.is-playing .video-toggle {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.social-strip {
  padding: 28px 0;
  background: var(--teal-deep);
  color: #fff;
}

.social-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.social-strip p {
  margin: 0;
  font-weight: 500;
}

.social-strip strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--teal-deep);
  padding: 12px 18px;
  border-radius: 99px;
  font-weight: 600;
}

.social-links a:hover {
  background: var(--mint);
}

.social-links a.franchise {
  background: var(--teal);
  color: #fff;
}

.social-links a i {
  font-size: 20px;
}

.contact {
  padding: 90px 0;
  background: var(--teal-deep);
  color: #e4f4f3;
}

.contact h2 {
  color: var(--mint);
}

.address {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-list li,
.contact-list a {
  color: #e9e9e9;
}

.contact-list i {
  color: var(--teal);
  width: 18px;
}

.contact-list a:hover {
  color: var(--sage);
}

.map-frame {
  width: 100%;
  min-height: 240px;
  border: 0;
  border-radius: 16px;
}

.hours {
  list-style: none;
  display: grid;
  gap: 10px;
}

.hours li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hours i {
  color: var(--teal);
}

.site-footer {
  background: var(--mint);
  border-top: 1px solid var(--sage);
  padding: 22px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--ink-2);
  align-items: center;
}

.footer-inner a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 44px;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  z-index: 50;
  animation: wa-pulse 1.8s ease-out infinite;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
  color: var(--white);
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.55);
  }
  70% {
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 0 0 22px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s;
}

.lightbox[hidden] {
  display: none;
}

.lightbox.open {
  opacity: 1;
}

.lb-stage {
  position: relative;
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.lb-stage img {
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.lb-stage figcaption {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.lb-nav,
.lb-close {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  cursor: pointer;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  flex: none;
}

.lb-nav {
  width: 48px;
  height: 48px;
}

.lb-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  z-index: 2;
}

.lb-nav:hover,
.lb-close:hover {
  background: var(--teal);
}

body.lb-locked {
  overflow: hidden;
}

@media (max-width: 980px) {
  .about-grid,
  .pro-grid,
  .human-grid,
  .specialist-grid,
  .contact-grid,
  .cards-grid,
  .gallery-grid,
  .tech-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid img {
    height: 300px;
  }

  .ba-card {
    flex: 0 0 100%;
    padding-right: 0;
  }

  .ba-pair img {
    height: 260px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 320px));
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    gap: 18px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    inset: 110px 16px auto;
    background: var(--white);
    flex-direction: column;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    align-items: flex-start;
  }

  .nav.open {
    display: flex;
  }

  .header-inner {
    min-height: 88px;
  }

  .brand img {
    height: 56px;
    max-width: 190px;
  }

  .brand-city {
    font-size: 10px;
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: auto;
    padding: 72px 0;
  }

  .about,
  .services,
  .pro,
  .gallery,
  .human,
  .google-reviews,
  .specialist,
  .tech,
  .contact,
  .quem-somos,
  .before-after,
  .testimonials {
    padding: 64px 0;
  }

  .about-grid,
  .pro-grid,
  .human-grid,
  .specialist-grid,
  .contact-grid,
  .cards-grid,
  .gallery-grid,
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ba-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px;
  }

  .ba-viewport {
    flex: 0 0 100%;
    order: 1;
  }

  .ba-nav {
    display: grid;
    width: 48px;
    height: 48px;
    order: 2;
  }

  #baPrev {
    margin-right: 4px;
  }

  #baNext {
    margin-left: 4px;
  }

  .ba-card {
    flex: 0 0 100%;
    padding-right: 0;
  }

  .ba-pair img {
    height: 220px;
  }

  .testimonials-grid {
    grid-template-columns: minmax(0, 340px);
    justify-content: center;
    gap: 20px;
  }

  .gallery .container {
    width: min(100% - 16px, var(--container));
  }

  .gallery-grid {
    gap: 14px;
  }

  .gallery-grid img {
    height: 320px;
  }

  .card img {
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center center;
  }

  .about-media img,
  .pro-media img,
  .specialist-media img {
    height: 240px;
  }

  .pro-media img {
    height: 480px;
    object-fit: cover;
    object-position: center center;
  }

  .specialist-media img {
    height: 520px;
    object-fit: contain;
    object-position: center bottom;
  }

  .whatsapp-fab {
    width: 76px;
    height: 76px;
    font-size: 40px;
  }

  .social-strip .container {
    justify-content: center;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}
