/* Reset e configuração global */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050608;
  color: #f7f7f7;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  padding-top: 82px;
}

:root {
  --accent-primary: #2196f3;
  --accent-secondary: #00bcd4;
}

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

.is-hidden {
  display: none !important;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: transparent;
}

button {
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 20;
  background: rgba(5, 6, 8, 0.92);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03) inset, 0 4px 24px rgba(0, 0, 0, 0.4);
  animation: fade-down 0.6s ease forwards;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 2.5rem;
}

@media (min-width: 961px) {
  .topbar__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
  }
  .topbar .logo {
    justify-self: start;
  }
  .topbar .nav {
    justify-self: center;
  }
  .topbar__actions {
    justify-self: end;
  }
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.topbar__actions .btn--instagram-header,
.topbar__actions .btn--whatsapp-header {
  min-width: 140px;
  justify-content: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.92rem;
  color: #ffffff;
  transition: opacity 0.2s ease;
}

.logo span {
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.logo:hover {
  opacity: 0.85;
}

.logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 6px rgba(33, 150, 243, 0.25));
}

.logo:hover img {
  transform: scale(1.05) rotate(-2deg);
  filter: drop-shadow(0 3px 10px rgba(33, 150, 243, 0.4));
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  font-size: 0.88rem;
  font-weight: 500;
}

.nav__link {
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  transition: color 0.3s ease, transform 0.2s ease;
  padding: 0.35rem 0;
  letter-spacing: 0.01em;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, rgba(33, 150, 243, 0.9), rgba(0, 188, 212, 0.9));
  border-radius: 999px;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__link:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.nav__link.active {
  color: #ffffff;
  font-weight: 600;
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.btn--whatsapp-header.btn--whatsapp-cta {
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 10px;
  background: #25D366;
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.35);
}
.btn--whatsapp-header.btn--whatsapp-cta:hover {
  background: #20ba5a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.12s ease, box-shadow 0.15s ease;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn--primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.btn--primary:hover::before {
  left: 100%;
}

.btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn__icon {
  margin-right: 14px;
}

.btn--instagram-header svg,
.btn--whatsapp-header svg {
  margin-right: 6px;
}

.btn--instagram-header {
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 10px;
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 25%, #8134af 50%, #515bd4 75%, #f58529 100%);
  color: #ffffff;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(245, 133, 41, 0.25);
  letter-spacing: 0.01em;
  border: none;
}

.btn--instagram-header:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 133, 41, 0.35);
}

.btn--whatsapp-header {
  padding: 0.65rem 1.6rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.95) 0%, rgba(32, 186, 90, 0.95) 100%);
  color: #ffffff;
  border: 1px solid rgba(37, 211, 102, 0.3);
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
  letter-spacing: 0.01em;
}

.btn--whatsapp-header:hover {
  background: linear-gradient(135deg, rgba(37, 211, 102, 1) 0%, rgba(32, 186, 90, 1) 100%);
  border-color: rgba(37, 211, 102, 0.5);
  transform: translateY(-1.5px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp-primary {
  padding: 0.75rem 1.85rem;
  font-size: 0.9rem;
  font-weight: 700;
  background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
  border: 1px solid rgba(37, 211, 102, 0.4);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  position: relative;
  z-index: 1;
}

.btn--whatsapp-primary:hover {
  background: linear-gradient(135deg, #20BA5A 0%, #1ea952 100%);
  border-color: rgba(37, 211, 102, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.btn--secondary {
  background: transparent;
  color: #666;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.btn--secondary:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #333;
  border-color: rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}

.btn--agendar,
.booking-step__actions .btn--agendar {
  padding: 0.9rem 2rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  transition: all 0.25s ease;
}

.btn--agendar.btn--agendar--invalid,
.booking-step__actions .btn--agendar.btn--agendar--invalid {
  background: #cbd5e1;
  color: #64748b;
  cursor: not-allowed;
}

.btn--agendar:not(.btn--agendar--invalid),
.booking-step__actions .btn--agendar:not(.btn--agendar--invalid) {
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(33, 150, 243, 0.35);
}

.btn--agendar:hover:not(.btn--agendar--invalid),
.booking-step__actions .btn--agendar:hover:not(.btn--agendar--invalid) {
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
  transform: translateY(-1px);
}

/* Menu mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 25;
  transition: opacity 0.2s ease;
}

.menu-toggle:hover {
  opacity: 0.85;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

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

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

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

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background: #050608;
  backdrop-filter: blur(20px);
  padding-top: 5rem;
  padding-bottom: max(2rem, env(safe-area-inset-bottom));
  padding-left: max(1.5rem, env(safe-area-inset-left));
  padding-right: max(1.5rem, env(safe-area-inset-right));
  flex-direction: column;
  gap: 0;
  z-index: 18;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.nav-mobile.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile__links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
  min-width: 0;
}

.nav-mobile__link {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1.25rem 0;
  transition: color 0.2s ease;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-mobile__link:hover {
  color: #2196f3;
}

.nav-mobile__link:last-child {
  border-bottom: none;
}

.nav-mobile__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}

.nav-mobile__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-mobile__btn svg {
  flex-shrink: 0;
}

.nav-mobile__btn--instagram {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 25%, #8134af 50%, #515bd4 75%, #f58529 100%);
  color: #fff;
}

.nav-mobile__btn--instagram:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(245, 133, 41, 0.4);
}

.nav-mobile__btn--whatsapp {
  background: #25D366;
  color: #fff;
}

.nav-mobile__btn--whatsapp:hover {
  background: #20ba5a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

.nav-mobile__footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  text-align: left;
}

/* Hero */
.hero {
  position: relative;
  padding: 3rem 0 4rem;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  animation: fade-up 0.8s ease forwards;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #050608;
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  min-height: calc(100vh - 82px);
}

.hero__content {
  max-width: 560px;
  text-align: left;
  opacity: 0;
  transform: translateY(16px);
  animation: fade-up 0.8s ease 0.15s forwards;
  padding: 1rem 0;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: #a0a0a0;
  margin-bottom: 1.5rem;
  text-align: left;
}

.hero__title {
  font-size: 3.15rem;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
  font-size: 1rem;
  color: #d8d8d8;
  line-height: 1.9;
  margin-bottom: 2.5rem;
  font-weight: 400;
  max-width: 540px;
}

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

.hero__actions .btn {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-width: 2px;
  letter-spacing: 0.015em;
  width: 220px;
  white-space: nowrap;
  justify-content: center;
  flex-shrink: 0;
}

.hero__actions .btn--primary {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color: #000000;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  font-weight: 700;
}

.hero__actions .btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 32px rgba(255, 255, 255, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  background: linear-gradient(135deg, #ffffff 0%, #f0f2f5 100%);
}

.hero__actions .btn--secondary {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.95) 0%, rgba(0, 188, 212, 0.95) 100%);
  color: #ffffff;
  border-color: rgba(33, 150, 243, 0.3);
  border-width: 2px;
  box-shadow: 0 4px 16px rgba(33, 150, 243, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  font-weight: 600;
}

.hero__actions .btn--secondary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(33, 150, 243, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  background: linear-gradient(135deg, rgba(33, 150, 243, 1) 0%, rgba(0, 188, 212, 1) 100%);
  color: #ffffff;
}


.hero__image-wrapper {
  flex: 1;
  max-width: 440px;
  position: relative;
  border-radius: 28px;
  overflow: visible;
  transform: translateY(10px);
  opacity: 0;
  animation: fade-up 0.9s ease 0.25s forwards;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.hero__image-wrapper:hover {
  transform: translateY(0) scale(1.02);
}

.hero__image-wrapper::before {
  content: "";
  position: absolute;
  inset: -35%;
  background:
    radial-gradient(ellipse at top right, rgba(33, 150, 243, 0.5) 0, transparent 65%),
    radial-gradient(ellipse at bottom left, rgba(25, 118, 210, 0.4) 0, transparent 70%);
  filter: blur(50px);
  opacity: 0.7;
  z-index: -1;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.hero__image-wrapper:hover::before {
  opacity: 0.9;
}

.hero__image {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 28px;
  display: block;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.85);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease, box-shadow 0.4s ease;
  filter: saturate(1.15) contrast(1.05) brightness(1.02);
  position: relative;
  z-index: 2;
}

.hero__image-wrapper:hover .hero__image {
  transform: scale(1.03);
  filter: saturate(1.25) contrast(1.08) brightness(1.04);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9), 0 0 60px rgba(33, 150, 243, 0.3);
}

.hero__image-glow {
  position: absolute;
  inset: -20px;
  border-radius: 40px;
  background: radial-gradient(ellipse at center, rgba(33, 150, 243, 0.4) 0%, transparent 70%);
  z-index: 0;
  opacity: 0.8;
  transition: opacity 0.6s ease;
  pointer-events: none;
  animation: pulse-glow 3s ease-in-out infinite;
  box-shadow: 0 0 40px rgba(33, 150, 243, 0.25);
}

.hero__image-wrapper:hover .hero__image-glow {
  opacity: 1;
  background: radial-gradient(ellipse at center, rgba(33, 150, 243, 0.5) 0%, transparent 70%);
  box-shadow: 0 0 60px rgba(33, 150, 243, 0.4);
}

/* Seções */
.section {
  padding: 3.25rem 0;
  position: relative;
  overflow: hidden;
}

.section--border {
  border-top: 1px solid #1b1b1b;
  background: #050608;
}

.section--dark {
  background: #000000;
  color: #f5f5f5;
}

.section--border::before,
.section--dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary), #7c4dff);
  opacity: 0.7;
}

.section__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  text-align: center;
  letter-spacing: -0.02em;
}

.section__title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.5rem;
  width: 80px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
}

.section--dark .section__title::after {
  background: linear-gradient(90deg, var(--accent-secondary), #7c4dff);
}

.section__subtitle {
  font-size: 1rem;
  color: #a0a0a0;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.6;
}

.section--dark .section__subtitle {
  color: #9d9d9d;
}

.section__note {
  font-size: 0.9rem;
  color: #9d9d9d;
  margin: 0 auto 1.25rem;
  text-align: center;
}

.section__note strong {
  font-weight: 700;
  color: #e0e0e0;
}

.section__note a {
  display: block;
  margin-top: 0.35rem;
  color: #2196f3;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.section__note a:hover {
  text-decoration: underline;
}

.section__agendar-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.services-carousel {
  margin-top: 2rem;
}

.services-carousel__viewport {
  overflow: visible;
}

.services-carousel__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.services-carousel__dots {
  display: none;
}

.service-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.15);
}

.service-card__image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.service-card__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
  pointer-events: none;
}

.service-card__image--custom {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2196f3 0%, #00bcd4 100%);
}

.service-card__image--custom .service-card__custom-icon {
  opacity: 0.9;
  color: white;
}

.service-card__image--custom .service-card__custom-icon path,
.service-card__image--custom .service-card__custom-icon circle {
  fill: rgba(255, 255, 255, 0.2);
}

.service-card__image--custom .service-card__custom-icon path {
  fill: rgba(255, 255, 255, 0.15);
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.1);
}

.service-card__content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
  min-height: 0;
}

.service-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  /* garante mesma altura de título em todos os cards (até 2 linhas) */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.9rem;
}

.service-card__price {
  font-size: 1rem;
  font-weight: 700;
  color: #2196f3;
  margin: 0;
}

.service-card__description {
  font-size: 0.85rem;
  color: #d0d0d0;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  /* garante que a área de descrição tenha altura consistente entre os cards */
  min-height: 3.8rem;
}

.service-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  background: linear-gradient(135deg, #2196f3 0%, #00bcd4 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
  width: 100%;
  font-family: inherit;
}

.service-card__button:hover {
  background: linear-gradient(135deg, #1976d2 0%, #0097a7 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-modal.active {
  display: flex;
  opacity: 1;
}

.service-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.service-modal__container {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  z-index: 1;
}

.service-modal.active .service-modal__container {
  transform: scale(1);
}

.service-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  font-size: 1.2rem;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}

.service-modal__close:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: rotate(90deg);
}

.service-modal__content {
  padding: 2.5rem;
}

.service-modal__header {
  margin-bottom: 2rem;
}

.service-modal__title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 .5rem;
}

.service-modal__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2196f3;
  margin: 0;
}

.service-modal__before-after {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}

.service-modal__before-after-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.service-modal__before-after-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #2196f3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.service-modal__before-after-col:last-child .service-modal__before-after-label {
  color: #25D366;
}

.service-modal__before-after-pair img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-modal__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.service-modal__gallery img,
.service-modal__gallery video {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-modal__gallery img:hover,
.service-modal__gallery video:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}


.service-modal__description {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  margin: 1.5rem 0;
}

.service-modal__features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-modal__features li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  color: #333;
  font-size: 0.95rem;
}

.service-modal__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2196f3;
  font-weight: 700;
  font-size: 1.2rem;
}

.service-modal__cta {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.service-modal__cta .btn {
  flex: 1;
  min-width: 200px;
}

@media (max-width: 720px) {
  .service-modal {
    padding: 0.75rem;
    align-items: center;
  }

  .service-modal__container {
    max-width: 100%;
    width: 100%;
    max-height: 90dvh;
    border-radius: 20px;
    -webkit-overflow-scrolling: touch;
  }

  .service-modal__content {
    padding: 3.5rem 1.5rem 4rem;
  }

  .service-modal__close {
    width: 36px;
    height: 36px;
    top: 0.75rem;
    right: 0.75rem;
    font-size: 1.25rem;
  }

  .service-modal__title {
    font-size: 1.5rem;
  }

  .service-modal__price {
    font-size: 1.25rem;
  }

  .service-modal__before-after-pair {
    grid-template-columns: 1fr;
  }

  .service-modal__before-after-pair img {
    height: 240px;
  }

  .service-modal__gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-modal__gallery img,
  .service-modal__gallery video {
    height: 300px;
  }

  .service-modal__cta {
    flex-direction: column;
  }

  .service-modal__cta .btn {
    width: 100%;
    min-width: unset;
  }
}

/* Sobre */
.about {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  text-align: center;
}

.about__text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #d3d3d3;
}

.about__text strong {
  color: #ffffff;
  font-weight: 600;
}

.about__social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 0;
  margin: 2rem 0;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.social-proof__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #b0b0b0;
}

.social-proof__stars {
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.social-proof__text {
  color: #b0b0b0;
}

.social-proof__text strong {
  color: #ffffff;
  font-weight: 600;
}

.social-proof__divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.15);
}

.about__stats {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  width: 100%;
}

.about__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.75rem 1.75rem;
  border-radius: 12px;
  background: #111111;
  border: 1px solid #2c2c2c;
  transition: transform 0.2s ease, border-color 0.2s ease;
  flex: 1;
  min-height: 180px;
  min-width: 200px;
  max-width: 280px;
}

.about__stat:hover {
  transform: translateY(-4px);
  border-color: #ffffff;
}

.about__stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.about__stat-label {
  display: block;
  font-size: 0.9rem;
  color: #a0a0a0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about__stat-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.65rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #2196f3 0%, #00bcd4 100%);
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.about__stat-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
  background: linear-gradient(135deg, #1976d2 0%, #0097a7 100%);
}

.about__reviews {
  margin-top: 3rem;
  width: 100%;
}

.reviews__title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.review__card {
  background: #111111;
  border: 1px solid #2c2c2c;
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review__card:hover {
  transform: translateY(-4px);
  border-color: rgba(33, 150, 243, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.review__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.review__stars {
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.review__date {
  font-size: 0.8rem;
  color: #888888;
}

.review__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #d3d3d3;
  flex: 1;
}

.review__author {
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.review__author strong {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
}

.reviews__cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* Contato */
.contact__container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 1.5rem;
}

.contact__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.contact__title-icon {
  font-size: 2.5rem;
  line-height: 1;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  margin-bottom: 0.25rem;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

.contact__info-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.contact__info-label {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.01em;
}

.contact__info-text {
  font-size: 1.15rem;
  color: #d3d3d3;
  line-height: 1.7;
  margin: 0;
}

.contact__info-text strong {
  color: #ffffff;
  font-weight: 600;
}

.contact__phone-link {
  font-size: 1.35rem;
  color: #2196f3;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.contact__phone-link:hover {
  color: #00bcd4;
  text-decoration: underline;
}

.contact__map-wrapper {
  position: relative;
  width: 100%;
  min-height: 500px;
}

.contact__map-container {
  position: relative;
  width: 100%;
  min-height: 500px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  background: #1a1a1a;
}

.contact__map-container iframe {
  width: 100%;
  min-height: 500px;
  height: 500px;
  border: none;
  display: block;
  filter: brightness(0.9) contrast(1.05);
}

/* Footer */
.footer {
  border-top: 1px solid #1b1b1b;
  padding: 1.25rem 0 1.5rem;
  font-size: 0.8rem;
  color: #a0a0a0;
  background: #000000;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
}

.footer__main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.footer__watermark {
  font-size: 0.75rem;
  color: #6b6b6b;
  text-decoration: none;
  transition: color 0.2s;
}

.footer__watermark:hover {
  color: #a0a0a0;
}

/* Animações */
@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-down {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

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

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

@media (max-width: 1200px) and (min-width: 721px) {
  .services-carousel__track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-mobile {
    display: flex;
  }

  .topbar__actions {
    display: none;
  }

  .hero__inner {
    flex-direction: column;
    gap: 2rem;
  }

  .hero__content {
    text-align: center;
    max-width: 100%;
  }

  .hero__eyebrow {
    text-align: center;
  }

  .hero__actions {
    align-items: flex-start;
  }

  .hero__image-wrapper {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 720px) {
  body {
    padding-top: 70px;
  }
  .topbar__inner {
    height: 70px;
    gap: 1rem;
  }

  .nav-mobile {
    padding-top: 4.5rem;
  }

  .logo {
    font-size: 0.85rem;
    gap: 0.5rem;
  }

  .logo span {
    display: block;
    font-size: 0.8rem;
  }

  .logo img {
    width: 42px;
    height: 42px;
  }

  .hero {
    padding: 2.5rem 0 3rem;
  }

  .hero__title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.75rem;
  }

  .hero__subtitle {
    font-size: 0.95rem;
    margin-bottom: 2.25rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.875rem;
    margin-bottom: 2rem;
    margin-top: 0.75rem;
  }

  .hero__actions .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 0.95rem;
  }

  .hero__image-wrapper {
    max-width: 100%;
  }

  .hero__image-glow {
    inset: -15px;
  }

  .container {
    padding: 0 1.25rem;
  }

  .services-carousel__viewport {
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
  }

  .services-carousel__track {
    display: flex;
    grid-template-columns: unset;
    gap: 1.5rem;
    transition: transform 0.68s ease-out;
    will-change: transform;
  }

  .services-carousel__track .service-card {
    flex: 0 0 auto;
    min-width: 0;
    scroll-snap-align: start;
    box-sizing: border-box;
    /* altura consistente entre todos os cards no carrossel mobile */
    min-height: 420px;
  }

  .services-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0 0.25rem;
  }

  .services-carousel__dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
  }

  .services-carousel__dots button:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  .services-carousel__dots button[aria-selected="true"] {
    background: #2196f3;
    transform: scale(1.2);
  }

  .service-card__image {
    height: 200px;
  }

  .service-card__content {
    padding: 1.5rem;
  }

  .service-card__title {
    font-size: 1.1rem;
  }

  .service-card__price {
    font-size: 1rem;
  }

  .service-card__description {
    font-size: 0.85rem;
  }

  .about {
    gap: 2rem;
  }

  .about__stats {
    flex-direction: column;
    align-items: center;
  }

  .about__stat {
    width: 100%;
    max-width: 100%;
  }

  .about__stat-number {
    font-size: 2rem;
  }

  .about__social-proof {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0;
    margin: 1.5rem 0;
  }

  .social-proof__divider {
    display: none;
  }

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

  .reviews__title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .review__card {
    padding: 1.25rem;
  }

  .contact__container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem 1.25rem;
  }

  .contact__content {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
  }

  .contact__title {
    font-size: 1.75rem;
    justify-content: center;
    align-items: center;
  }

  .contact__title-icon {
    font-size: 2.25rem;
  }

  .contact__info {
    gap: 1.5rem;
    align-items: center;
    width: 100%;
  }

  .contact__info-item {
    text-align: center;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
  }

  .contact__info-label {
    font-size: 1.15rem;
  }

  .contact__info-text {
    font-size: 1rem;
    word-wrap: break-word;
  }

  .contact__phone-link {
    font-size: 1.15rem;
  }

  .contact__map-wrapper {
    order: 2;
    min-height: 350px;
    width: 100%;
  }

  .contact__map-container {
    min-height: 350px;
    width: 100%;
  }

  .contact__map-container iframe {
    min-height: 350px;
    height: 350px;
    width: 100%;
  }

  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__watermark {
    margin-top: 0.25rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.7rem;
  }

  .hero__subtitle {
    font-size: 0.9rem;
  }

  .btn {
    width: 100%;
  }

  .logo span {
    font-size: 0.75rem;
    line-height: 1.2;
  }
}

.btn--booking-cta {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  background: linear-gradient(135deg, #2196f3 0%, #00bcd4 100%);
  color: #ffffff;
  border: none;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(33, 150, 243, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--booking-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(33, 150, 243, 0.45);
}

@media (max-width: 768px) {
  .btn--booking-cta {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    margin-top: 1.25rem;
  }
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.booking-modal.active {
  display: flex;
  opacity: 1;
}

.booking-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 8, 0.75);
  backdrop-filter: blur(12px);
}

.booking-modal__container {
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 28px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-x: hidden;
  overflow-y: auto;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transform: scale(0.96);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
  min-width: 0;
}

.booking-modal.active .booking-modal__container {
  transform: scale(1);
}

.booking-modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #475569;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  z-index: 10;
}

.booking-modal__close:hover {
  background: rgba(15, 23, 42, 0.1);
  color: #0f172a;
  transform: rotate(90deg);
}

.booking-modal__content {
  padding: 3rem 2.5rem 2.5rem;
}

.booking-progress {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 0.5rem;
  align-items: flex-start;
  justify-items: center;
  padding: 2rem 0 0;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.booking-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.booking-progress__step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.35s ease;
  border: 2px solid transparent;
}

.booking-progress__step--active .booking-progress__step-number {
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(33, 150, 243, 0.4);
}

.booking-progress__step--completed .booking-progress__step-number {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.booking-progress__step--completed .booking-progress__step-number::before {
  content: "✓";
  font-size: 1.15rem;
  font-weight: 700;
}

.booking-progress__step-label {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.booking-progress__step--active .booking-progress__step-label {
  color: #1976d2;
  font-weight: 600;
}

.booking-progress__step--completed .booking-progress__step-label {
  color: #16a34a;
}

.booking-progress__line {
  width: 100%;
  min-width: 8px;
  height: 3px;
  border-radius: 2px;
  background: #e2e8f0;
  margin-top: 20px;
  transition: background 0.35s ease;
  align-self: flex-start;
  justify-self: stretch;
}

.booking-progress__step--completed ~ .booking-progress__line,
.booking-progress__step--active ~ .booking-progress__line {
  background: linear-gradient(90deg, #2196f3, #1976d2);
}

.booking-step {
  display: none;
  animation: fadeIn 0.4s ease;
}

.booking-step--active {
  display: block;
}

.booking-step__title {
  font-size: 1.85rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  text-align: center;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.booking-step__subtitle {
  font-size: 1rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.booking-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.booking-service-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.booking-service-card:hover {
  border-color: #94a3b8;
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.booking-service-card.selected {
  border-color: #2196f3;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.04), rgba(25, 118, 210, 0.02));
  box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.28), 0 10px 26px rgba(15, 23, 42, 0.18);
}

.booking-service-card__image {
  width: 100%;
  height: 120px;
  overflow: hidden;
  background: #f1f5f9;
}

.booking-service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.booking-service-card:hover .booking-service-card__image img {
  transform: scale(1.08);
}

.booking-service-card__icon {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: white;
}

.booking-service-card__content {
  padding: 1.1rem;
  text-align: left;
}

.booking-service-card__content h4 {
  font-size: 0.96rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.15rem;
  line-height: 1.35;
}

.booking-service-card__price {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1976d2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.booking-selected-service {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #ffffff;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  border-left: 4px solid #2196f3;
}

.booking-selected-service__image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.booking-selected-service__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-selected-service__icon {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.booking-selected-service__info {
  flex: 1;
}

.booking-selected-service__info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.booking-selected-service__info span {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1976d2;
  letter-spacing: 0.02em;
}

.booking-form__fields {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.booking-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.booking-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.booking-form__field label {
  position: absolute;
  left: 1.1rem;
  top: 1.05rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: 0.01em;
  pointer-events: none;
  transition: all 0.15s ease;
}

.booking-form__required {
  color: #dc2626;
}

.booking-form__field input,
.booking-form__field textarea {
  padding: 1.5rem 1.1rem 0.7rem;
  border: 1px solid #d4e0f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #f8fafc;
  color: #0f172a;
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.08);
}

.booking-form__field input::placeholder,
.booking-form__field textarea::placeholder {
  color: transparent;
}

.booking-form__field input:focus,
.booking-form__field textarea:focus {
  outline: none;
  border-color: #2196f3;
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.15);
}

.booking-form__field textarea {
  resize: vertical;
  min-height: 72px;
}

.booking-form__field:focus-within label,
.booking-form__field.booking-form__field--filled label {
  top: 0.3rem;
  font-size: 0.7rem;
  color: #1d4ed8;
}

/* Campo Veículo: label em cima e placeholder visível (estilo clássico) */
.booking-form__field:has(#booking-car) label {
  position: static;
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.35rem;
}
.booking-form__field:has(#booking-car) input {
  padding: 0.9rem 1.1rem;
}
.booking-form__field:has(#booking-car) input::placeholder {
  color: #94a3b8;
}
.booking-form__field:has(#booking-car):focus-within label,
.booking-form__field:has(#booking-car).booking-form__field--filled label {
  top: auto;
  font-size: 0.9rem;
  color: #334155;
}

/* Nome completo e WhatsApp: label fora do input, igual ao Veículo */
.booking-form__field:has(#booking-name) label,
.booking-form__field:has(#booking-phone) label {
  position: static;
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.35rem;
}
.booking-form__field:has(#booking-name) input,
.booking-form__field:has(#booking-phone) input {
  padding: 0.9rem 1.1rem;
}
.booking-form__field:has(#booking-name) input::placeholder,
.booking-form__field:has(#booking-phone) input::placeholder {
  color: #94a3b8;
}
.booking-form__field:has(#booking-name):focus-within label,
.booking-form__field:has(#booking-name).booking-form__field--filled label,
.booking-form__field:has(#booking-phone):focus-within label,
.booking-form__field:has(#booking-phone).booking-form__field--filled label {
  top: auto;
  font-size: 0.9rem;
  color: #334155;
}

/* Mensagem (Opcional): título em cima e placeholder visível, igual aos outros campos */
.booking-form__field:has(#booking-message) label {
  position: static;
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.35rem;
}
.booking-form__field:has(#booking-message) textarea {
  padding: 0.9rem 1.1rem;
}
.booking-form__field:has(#booking-message) textarea::placeholder {
  color: #94a3b8;
}
.booking-form__field:has(#booking-message):focus-within label,
.booking-form__field:has(#booking-message).booking-form__field--filled label {
  top: auto;
  font-size: 0.9rem;
  color: #334155;
}

/* Serviço que deseja * (personalizado): título em cima e placeholder visível, igual aos outros */
.booking-form__field:has(#booking-custom-service) label {
  position: static;
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.35rem;
}
.booking-form__field:has(#booking-custom-service) textarea {
  padding: 0.9rem 1.1rem;
}
.booking-form__field:has(#booking-custom-service) textarea::placeholder {
  color: #94a3b8;
}
.booking-form__field:has(#booking-custom-service):focus-within label,
.booking-form__field:has(#booking-custom-service).booking-form__field--filled label {
  top: auto;
  font-size: 0.9rem;
  color: #334155;
}

.booking-step__actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.25rem;
  justify-content: flex-end;
}

.booking-step__actions .btn {
  min-width: 140px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.booking-step__next:disabled {
  background: #cbd5e1;
  color: #64748b;
  cursor: not-allowed;
}

.booking-step__next:not(:disabled) {
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 14px rgba(33, 150, 243, 0.35);
}

.booking-step__next:not(:disabled):hover {
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
  transform: translateY(-1px);
}

.booking-confirmation {
  text-align: center;
  padding: 2rem 0;
}

.booking-confirmation__icon {
  margin: 0 auto 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
}

.booking-confirmation__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.booking-confirmation__message {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.booking-confirmation__contact {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 2rem;
}

.booking-confirmation__contact strong {
  font-weight: 700;
  color: #334155;
}

.booking-confirmation__contact a {
  display: block;
  margin-top: 0.35rem;
  color: #25D366;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.booking-confirmation__contact a:hover {
  text-decoration: underline;
}

.booking-confirmation__close {
  min-width: 200px;
}

.btn--large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .booking-modal {
    padding: 0.5rem;
    align-items: center;
    overflow-x: hidden;
  }

  .booking-modal__container {
    width: 100%;
    max-width: 100%;
    max-height: 90dvh;
    border-radius: 24px;
    overflow-x: hidden;
    min-width: 0;
    box-sizing: border-box;
  }

  .booking-modal__content {
    min-width: 0;
    overflow-x: hidden;
    padding: 2.2rem 1rem 1.4rem;
    box-sizing: border-box;
  }

  .booking-selected-service {
    min-width: 0;
    padding: 0.9rem;
    gap: 0.9rem;
    margin-top: 1.25rem;
  }

  .booking-selected-service__info {
    min-width: 0;
    overflow-wrap: break-word;
  }

  .booking-selected-service__info h3 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: 0.9rem;
  }

  .booking-selected-service__image,
  .booking-selected-service__icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }

  .booking-form__field input,
  .booking-form__field textarea {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 0.7rem 0.75rem;
    font-size: 16px;
    box-sizing: border-box;
  }

  .booking-form__fields {
    min-width: 0;
  }

  .booking-form__row {
    min-width: 0;
  }

  .booking-form,
  .booking-step {
    min-width: 0;
  }

  .booking-modal__close {
    top: 0.6rem;
    right: 0.6rem;
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
    z-index: 20;
  }

  .booking-progress {
    padding: 5.25rem 1.25rem 0.75rem;
    margin-bottom: 1.5rem;
    max-width: min(300px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .booking-progress__line {
    margin-top: 17px;
  }

  .booking-progress__step-label {
    font-size: 0.75rem;
  }

  .booking-progress__step-number {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .booking-modal.booking-modal--keyboard .booking-progress {
    display: none;
  }

  .booking-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.45rem;
    margin-bottom: 0.9rem;
  }

  .booking-service-card {
    border-radius: 12px;
  }

  .booking-service-card__image,
  .booking-service-card__icon {
    height: 66px;
  }

  .booking-service-card__content {
    padding: 0.4rem 0.35rem;
  }

  .booking-service-card__content h4 {
    font-size: 0.78rem;
    margin-bottom: 0.15rem;
    line-height: 1.2;
  }

  .booking-service-card__price {
    font-size: 0.72rem;
  }

  .booking-step__title {
    font-size: 1.28rem;
    margin-bottom: 0.2rem;
  }

  .booking-step__subtitle {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }

  .booking-form__row {
    grid-template-columns: 1fr;
  }

  .booking-step__actions {
    flex-direction: column;
    margin-top: 1rem;
  }

  .booking-step__actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .booking-services-grid {
    gap: 0.4rem;
    margin-bottom: 0.75rem;
  }

  .booking-service-card__image,
  .booking-service-card__icon {
    height: 58px;
  }

  .booking-service-card__content h4 {
    font-size: 0.72rem;
  }

  .booking-service-card__price {
    font-size: 0.68rem;
  }

  .booking-step__subtitle {
    margin-bottom: 0.6rem;
  }

  .booking-step__actions {
    margin-top: 0.75rem;
  }

  .booking-modal__close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }

  .booking-progress {
    padding: 5.25rem 1rem 0.75rem;
  }
}

@media (max-width: 420px) {
  .booking-modal {
    padding: 0.5rem;
  }

  .booking-modal__container {
    border-radius: 16px;
  }
}
