/* ==========================================================================
   BW CARPET SOLUTIONS — style.css (Professional Grade)
   Complete design system & refined component styles
   ========================================================================== */

:root {
  /* Brand palette */
  --navy: #0B1B33;
  --navy-light: #132A48;
  --blue: #2F6FED;
  --blue-light: #5B8DF6;
  --teal: #5EEAD4;
  --teal-dark: #0FA88D;
  --amber: #F5B301;
  --green: #17A672;

  /* Neutrals */
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  /* Semantic */
  --body-bg: var(--white);
  --body-color: var(--gray-800);
  --surface: var(--white);
  --border: var(--gray-200);
  --border-light: var(--gray-100);

  /* Typography */
  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.16);
  --shadow-glow-blue: 0 0 0 4px rgba(47, 111, 237, 0.18);
  --shadow-blue-lg: 0 18px 40px -12px rgba(47, 111, 237, 0.45);

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 180ms;
  --duration-base: 280ms;
  --duration-slow: 420ms;

  /* Layout */
  --max-width: 1200px;
  --navbar-height: 72px;
  --content-padding: clamp(16px, 4vw, 40px);
}

/* -------------------------------------------------------------------------
   RESET & BASE
   ------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: var(--navbar-height);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--body-color);
  background: var(--body-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

input,
select {
  font: inherit;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* -------------------------------------------------------------------------
   ACCESSIBILITY
   ------------------------------------------------------------------------- */
.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 10000;
  padding: 10px 20px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  transform: translateY(-120px);
  transition: transform var(--duration-fast) var(--ease-in-out);
  pointer-events: none;
}

.skip-link:focus {
  transform: translateY(0);
  pointer-events: auto;
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

:focus-visible {
  outline: 2.5px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* -------------------------------------------------------------------------
   REVEAL ANIMATION
   ------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease-out-expo), transform 0.75s var(--ease-out-expo);
}

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

.reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.reveal:nth-child(3) {
  transition-delay: 0.2s;
}

.reveal:nth-child(4) {
  transition-delay: 0.3s;
}

.reveal:nth-child(5) {
  transition-delay: 0.4s;
}

.reveal:nth-child(6) {
  transition-delay: 0.5s;
}

/* -------------------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  transition: all var(--duration-base) var(--ease-in-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  outline-offset: 3px;
  cursor: pointer;
}

.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(47, 111, 237, 0.35);
}

.btn--primary:hover {
  background: #1E5CD8;
  box-shadow: var(--shadow-blue-lg);
  transform: translateY(-2px);
}

.btn--primary:active {
  transform: scale(0.97);
  box-shadow: 0 2px 8px rgba(47, 111, 237, 0.3);
  transition-duration: 80ms;
}

.btn--ghost {
  background: transparent;
  color: var(--gray-700);
  border: 2px solid var(--gray-200);
}

.btn--ghost:hover {
  border-color: var(--gray-400);
  background: var(--gray-50);
  transform: translateY(-1px);
}

.btn--xl {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn--nav {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* Ripple effect */
.ripple-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: ripple-burst 0.6s var(--ease-out-expo) forwards;
  pointer-events: none;
}

@keyframes ripple-burst {
  to {
    transform: scale(3.5);
    opacity: 0;
  }
}

/* -------------------------------------------------------------------------
   NAVBAR
   ------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-height);
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.navbar.is-scrolled {
  background: rgba(11, 27, 51, 0.88);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo – ready for your image */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: -0.02em;
  transition: color 0.35s ease;
  flex-shrink: 0;
}

.navbar.is-scrolled .logo {
  color: #fff;
}

.logo img {
  width: 170px;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
}

.logo strong {
  font-weight: 800;
  color: var(--teal);
}

.navbar.is-scrolled .logo strong {
  color: var(--blue-light);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tel-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.navbar.is-scrolled .tel-link {
  color: #C6D3EC;
}

.tel-link:hover {
  color: var(--teal);
}

@media (max-width: 768px) {
  .tel-link span {
    display: none;
  }
}

.lang-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--duration-base) ease;
  flex-shrink: 0;
}

.lang-switch:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: rotate(-8deg);
}

.navbar.is-scrolled .lang-switch {
  color: #C6D3EC;
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 480px) {
  .lang-switch {
    width: 34px;
    height: 34px;
    font-size: 0.7rem;
  }

  .navbar__inner {
    gap: 10px;
  }
}

/* -------------------------------------------------------------------------
   HERO (video background + particles)
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px var(--content-padding) 90px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: var(--navy);
}

.hero__video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: top center;
  background: var(--navy);
}

/* Overlay with professional blue gradient */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
      rgba(11, 27, 51, 0.92) 0%,
      rgba(11, 27, 51, 0.75) 30%,
      rgba(47, 111, 237, 0.25) 65%,
      rgba(11, 27, 51, 0.88) 100%);
  pointer-events: none;
  backdrop-filter: blur(0px);
}

.hero__pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.6;
}

.hero__pattern svg {
  width: 100%;
  height: 100%;
}

/* Floating particles */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  animation: floatUp var(--duration) var(--delay) ease-in-out infinite;
  opacity: 0;
}

.particle--1 {
  width: 4px;
  height: 4px;
  left: 10%;
  bottom: 10%;
  --duration: 6s;
  --delay: 0s;
  background: rgba(94, 234, 212, 0.8);
}

.particle--2 {
  width: 3px;
  height: 3px;
  left: 22%;
  bottom: 5%;
  --duration: 7s;
  --delay: 1.2s;
  background: rgba(255, 255, 255, 0.7);
}

.particle--3 {
  width: 5px;
  height: 5px;
  left: 35%;
  bottom: 12%;
  --duration: 5.5s;
  --delay: 0.6s;
  background: rgba(47, 111, 237, 0.8);
}

.particle--4 {
  width: 3px;
  height: 3px;
  left: 48%;
  bottom: 8%;
  --duration: 8s;
  --delay: 2s;
  background: rgba(94, 234, 212, 0.7);
}

.particle--5 {
  width: 6px;
  height: 6px;
  left: 60%;
  bottom: 15%;
  --duration: 6.5s;
  --delay: 0.3s;
  background: rgba(255, 255, 255, 0.8);
}

.particle--6 {
  width: 4px;
  height: 4px;
  left: 75%;
  bottom: 6%;
  --duration: 7.5s;
  --delay: 1.8s;
  background: rgba(47, 111, 237, 0.7);
}

.particle--7 {
  width: 5px;
  height: 5px;
  left: 88%;
  bottom: 10%;
  --duration: 5.8s;
  --delay: 0.9s;
  background: rgba(94, 234, 212, 0.75);
}

.particle--8 {
  width: 3px;
  height: 3px;
  left: 15%;
  bottom: 20%;
  --duration: 9s;
  --delay: 2.5s;
  background: rgba(255, 255, 255, 0.6);
}

.particle--9 {
  width: 4px;
  height: 4px;
  left: 55%;
  bottom: 18%;
  --duration: 6.2s;
  --delay: 1.5s;
  background: rgba(47, 111, 237, 0.8);
}

.particle--10 {
  width: 2px;
  height: 2px;
  left: 70%;
  bottom: 22%;
  --duration: 8.5s;
  --delay: 3s;
  background: rgba(255, 255, 255, 0.7);
}

@keyframes floatUp {
  0% {
    transform: translateY(0) translateX(0) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
    transform: translateY(-5px) translateX(2px) scale(1);
  }

  30% {
    transform: translateY(-40px) translateX(-4px) scale(1.3);
  }

  60% {
    transform: translateY(-100px) translateX(6px) scale(0.9);
  }

  85% {
    opacity: 0.6;
    transform: translateY(-180px) translateX(-2px) scale(1.4);
  }

  100% {
    transform: translateY(-280px) translateX(3px) scale(0);
    opacity: 0;
  }
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 750px;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
  animation: badgeFloat 4s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero__badge-stars {
  color: var(--amber);
  letter-spacing: 2px;
}

@keyframes badgeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.hero__title {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero__title-line {
  display: block;
  animation: titleReveal 0.9s var(--ease-out-expo) forwards;
  opacity: 0;
  transform: translateY(30px);
  font-size: 70%;
}

.hero__title-line:nth-child(2) {
  animation-delay: 0.25s;
}

@keyframes titleReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__title-accent {
  color: var(--teal);
  text-shadow: 0 0 40px rgba(94, 234, 212, 0.4);
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 56px;
}

.hero .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero .btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.hero__stats {
  display: flex;
  gap: clamp(24px, 5vw, 48px);
  justify-content: center;
  flex-wrap: wrap;
}

.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.1;
}

.stat__label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  transition: opacity 0.4s, color 0.3s;
}

.scroll-cue:hover {
  color: rgba(255, 255, 255, 0.9);
}

.scroll-cue__mouse {
  width: 26px;
  height: 40px;
  border: 2px solid currentColor;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-cue__wheel {
  width: 4px;
  height: 10px;
  background: currentColor;
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(8px);
    opacity: 0.3;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.scroll-cue__text {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* -------------------------------------------------------------------------
   SECTION HEAD
   ------------------------------------------------------------------------- */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  padding: 0 24px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-top: 12px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

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

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.dot--pulse {
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(94, 234, 212, 0.7);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(94, 234, 212, 0);
  }
}

/* -------------------------------------------------------------------------
   RESULTS (text + image)
   ------------------------------------------------------------------------- */
.results {
  padding: 100px var(--content-padding);
  max-width: var(--max-width);
  margin: 0 auto;
}

.results__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.results__text h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}

.results__text p {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 14px;
}

.results__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(0.5deg);
  transition: transform 0.4s ease;
}

.results__image:hover {
  transform: rotate(0deg);
}

.results__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/3;
}

@media (max-width: 768px) {
  .results__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .results__image {
    order: -1;
  }
}

/* -------------------------------------------------------------------------
   SERVICES
   ------------------------------------------------------------------------- */
.services {
  padding: 90px var(--content-padding) 100px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 28px 26px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1.5px solid var(--border);
  transition: all 0.35s var(--ease-in-out);
  cursor: pointer;
  gap: 12px;
  width: 100%;
}

.service-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(47, 111, 237, 0.08);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s ease, background 0.35s ease;
}

.service-card:hover .service-card__icon {
  background: var(--blue);
  color: #fff;
  transform: rotate(-5deg) scale(1.05);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.5;
  flex-grow: 1;
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--blue);
  margin-top: auto;
}

.service-card__cta svg {
  transition: transform 0.3s ease;
}

.service-card:hover .service-card__cta svg {
  transform: translateX(3px);
}

@media (max-width: 640px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 420px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------------------
   COMPARE (before/after)
   ------------------------------------------------------------------------- */
.compare {
  padding: 80px var(--content-padding) 100px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.compare__widget {
  max-width: 880px;
  margin: 0 auto;
}

.compare__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: ew-resize;
  box-shadow: var(--shadow-xl);
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.compare__panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.compare__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.compare__panel--before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.compare__panel--after {
  z-index: 1;
}

.compare__tag {
  position: absolute;
  bottom: 20px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  pointer-events: none;
  backdrop-filter: blur(8px);
}

.compare__tag--before {
  left: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
}

.compare__tag--after {
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
}

.compare__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 4px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.compare__handle-grip {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.8), var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: ew-resize;
}

.compare__handle-grip:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.9), var(--shadow-blue-lg);
}

/* -------------------------------------------------------------------------
   TESTIMONIALS
   ------------------------------------------------------------------------- */
.testimonials {
  padding: 80px var(--content-padding) 100px;
  background: var(--gray-50);
}

.testimonial-carousel {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 10px 4px 20px;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  color: var(--amber);
}

.testimonial-card p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.65;
  flex-grow: 1;
}

.testimonial-card__person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-card__person strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
}

.testimonial-card__person span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  transition: all 0.3s ease;
  cursor: pointer;
}

.testimonial-dots button.is-active {
  background: var(--blue);
  width: 30px;
  border-radius: var(--radius-full);
}

/* -------------------------------------------------------------------------
   FINAL CTA
   ------------------------------------------------------------------------- */
.final-cta {
  position: relative;
  padding: 100px var(--content-padding);
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, #1B3A63 100%);
  overflow: hidden;
  isolation: isolate;
}

.final-cta__sweep {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(47, 111, 237, 0.3) 0%, transparent 60%);
  z-index: 0;
  animation: pulse 8s ease-in-out infinite alternate;
}

@keyframes pulse {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }

  100% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.final-cta__content {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 32px;
}

/* -------------------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------------------- */
.footer {
  background: var(--navy-light);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 56px var(--content-padding) 28px;
  color: #C6D3EC;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer__brand {
  max-width: 280px;
}

.logo--footer {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo--footer img {
  width: 200px;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
}

.logo--footer strong {
  color: var(--blue-light);
}

.footer__brand p {
  font-size: 0.88rem;
  color: #8FA0C4;
  line-height: 1.6;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 500;
  font-size: 0.92rem;
  color: #C6D3EC;
}

.footer__contact a:hover {
  color: #fff;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C6D3EC;
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-3px);
}

.footer__bottom {
  max-width: var(--max-width);
  margin: 36px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.8rem;
  color: #6E80A6;
}

/* -------------------------------------------------------------------------
   WIZARD (Modal)
   ------------------------------------------------------------------------- */
.wizard {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-slow) ease;
}

.wizard.is-open {
  opacity: 1;
  pointer-events: auto;
}

.wizard__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 27, 51, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.wizard__panel {
  position: relative;
  z-index: 1;
  width: min(92vw, 560px);
  max-height: 90vh;
  max-height: 90dvh;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(24px) scale(0.96);
  transition: transform var(--duration-slow) var(--ease-out-back);
}

.wizard.is-open .wizard__panel {
  transform: translateY(0) scale(1);
}

.wizard__header {
  padding: 20px 24px 12px;
  flex-shrink: 0;
}

.wizard__progress-track {
  height: 5px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  overflow: hidden;
}

.wizard__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: var(--radius-full);
  transition: width 0.5s var(--ease-out-expo);
  width: 0%;
}

.wizard__header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.wizard__step-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.02em;
}

.wizard__time-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-left: auto;
  margin-right: 14px;
}

.wizard__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all var(--duration-fast);
  flex-shrink: 0;
}

.wizard__close:hover {
  background: var(--gray-100);
  color: var(--gray-700);
}

.wizard__body {
  flex: 1;
  overflow-y: auto;
  padding: 6px 24px 24px;
  min-height: 280px;
}

.wizard__footer {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid var(--border-light);
  flex-shrink: 0;
  gap: 12px;
}

/* (Wizard question components kept identical to your working markup, just polished) */
.wq__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.wq__hint {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 22px;
}

.wq__options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wq__options--grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.wq__options--grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 400px) {
  .wq__options--grid4 {
    grid-template-columns: 1fr 1fr;
  }
}

.wq__option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 2px solid var(--border);
  background: var(--surface);
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.wq__option:hover {
  border-color: var(--blue-light);
  background: #F5F9FF;
}

.wq__option.is-selected {
  border-color: var(--blue);
  background: rgba(47, 111, 237, 0.04);
  box-shadow: 0 0 0 4px rgba(47, 111, 237, 0.1);
}

.wq__option--center {
  justify-content: center;
  text-align: center;
}

.wq__option-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(47, 111, 237, 0.07);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wq__option-text strong {
  display: block;
  font-weight: 600;
  color: var(--navy);
}

/* ===== NOVOS ESTILOS PARA CAMPOS DE FORMULÁRIO ===== */
.wq__field {
  margin-bottom: 18px;
}

.wq__field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 6px;
}

.wq__field input[type="text"],
.wq__field input[type="email"],
.wq__field input[type="tel"],
.wq__field input[type="number"],
.wq__field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  background: var(--gray-50);
  font-size: 0.95rem;
  transition: all 0.2s;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.wq__field input:focus,
.wq__field select:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(47, 111, 237, 0.1);
}

.wq__field select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.wq__field select option {
  color: var(--gray-800);
  background: var(--white);
}

/* Checkbox estilizado */
.wq__field input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid var(--gray-300);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
  vertical-align: middle;
  margin-right: 10px;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.wq__field input[type="checkbox"]:checked {
  background: var(--blue);
  border-color: var(--blue);
}

.wq__field input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.wq__field input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.wq__field label:has(input[type="checkbox"]) {
  display: flex;
  align-items: center;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
}

/* Radio buttons (se necessário, manter padrão) */
.wq__field input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-300);
  border-radius: 50%;
  cursor: pointer;
  vertical-align: middle;
  margin-right: 10px;
  position: relative;
  transition: all 0.2s ease;
}

.wq__field input[type="radio"]:checked {
  border-color: var(--blue);
}

.wq__field input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--blue);
  border-radius: 50%;
}

/* Botões internos do wizard */
.wq__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  transition: all var(--duration-base) var(--ease-in-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  outline-offset: 3px;
  cursor: pointer;
}

.wq__btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(47, 111, 237, 0.35);
}

.wq__btn--primary:hover {
  background: #1E5CD8;
  box-shadow: var(--shadow-blue-lg);
  transform: translateY(-2px);
}

.wq__btn--primary:active {
  transform: scale(0.97);
  box-shadow: 0 2px 8px rgba(47, 111, 237, 0.3);
  transition-duration: 80ms;
}

.wq__btn--secondary {
  background: transparent;
  color: var(--gray-700);
  border: 2px solid var(--gray-200);
}

.wq__btn--secondary:hover {
  border-color: var(--gray-400);
  background: var(--gray-50);
  transform: translateY(-1px);
}

/* Dropzone */
.wq__dropzone {
  position: relative;
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-md);
  padding: 42px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, rgba(47, 111, 237, 0.02) 0%, rgba(94, 234, 212, 0.03) 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.wq__dropzone::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(from 90deg, var(--blue), var(--teal), var(--blue));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  padding: 2px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.wq__dropzone-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(47, 111, 237, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  transition: all 0.3s ease;
  animation: uploadPulse 2.2s ease-in-out infinite;
}

@keyframes uploadPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(47, 111, 237, 0.3);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 12px rgba(47, 111, 237, 0);
  }
}

.wq__dropzone-text {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.4;
  max-width: 260px;
}

.wq__dropzone-hint {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.wq__dropzone:hover {
  border-color: var(--blue-light);
  background: rgba(47, 111, 237, 0.04);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.wq__dropzone:hover .wq__dropzone-icon {
  background: var(--blue);
  color: #fff;
  animation: none;
}

.wq__dropzone.is-dragover {
  border-color: var(--blue);
  background: rgba(47, 111, 237, 0.06);
  transform: scale(1.02);
  box-shadow: var(--shadow-glow-blue), var(--shadow-lg);
}

.wq__dropzone.is-dragover::before {
  opacity: 1;
  animation: borderSpin 3s linear infinite;
}

@keyframes borderSpin {
  to {
    transform: rotate(360deg);
  }
}

.wq__dropzone.is-dragover .wq__dropzone-icon {
  background: var(--teal-dark);
  color: #fff;
  animation: none;
  transform: scale(1.15);
}

.wq__dropzone input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* Container principal da estimativa */
.wq__estimate {
  padding: 10px 0;
}

.wq__estimate-card {
  background: linear-gradient(145deg, #ffffff, #f8faff);
  border: 1px solid rgba(47, 111, 237, 0.12);
  border-radius: var(--radius-lg);
  padding: 40px 28px 32px;
  text-align: center;
  box-shadow:
    0 20px 40px -12px rgba(11, 27, 51, 0.15),
    0 0 0 1px rgba(47, 111, 237, 0.05) inset;
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: estimateAppear 0.5s var(--ease-out-back);
}

@keyframes estimateAppear {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.wq__estimate-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #0e8a5e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 12px 24px -8px rgba(23, 166, 114, 0.4);
  position: relative;
}

.wq__estimate-icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(23, 166, 114, 0.3);
  animation: iconPulse 2s ease-out infinite;
}

@keyframes iconPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.wq__estimate-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.wq__estimate-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 16px;
  line-height: 1;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wq__estimate-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  border-radius: 2px;
  margin: 0 auto 16px;
  opacity: 0.7;
}

.wq__estimate-note {
  font-size: 0.88rem;
  color: var(--gray-500);
  max-width: 300px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ---------- Botão flutuante do WhatsApp ---------- */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.3s var(--ease-out-back);
  animation: whatsapp-pulse 2.5s ease-in-out infinite;
  cursor: pointer;
}

.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
  background: #1ebe57;
}

.whatsapp-btn:active {
  transform: scale(0.95);
  transition-duration: 80ms;
}

@keyframes whatsapp-pulse {

  0%,
  100% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.7), 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

@media (max-width: 480px) {
  .whatsapp-btn {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-btn svg {
    width: 24px;
    height: 24px;
  }
}

.wizard.is-open~.whatsapp-btn {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

/* ===== CARRINHO (Cart) ===== */
.wq__cart {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.wq__cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  border: 1px solid var(--border-light);
  transition: all 0.2s ease;
}

.wq__cart-item:hover {
  border-color: var(--border);
  background: var(--white);
  box-shadow: var(--shadow-xs);
}

.wq__cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: 10px;
}

.wq__cart-item-info strong {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  font-size: 10px;
}

.wq__cart-item-info span {
  font-size: 0.4rem;
  color: var(--gray-500);
  font-size: 10px;
}

.wq__cart-item-price {
  font-weight: 100;
  min-width: 80px;
  text-align: right;
  font-size: 12px;
  color: var(--gray-700);
}

.wq__cart-edit,
.wq__cart-remove {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.2s;
}

.wq__cart-edit:hover {
  background: rgba(47, 111, 237, 0.08);
}

.wq__cart-remove {
  color: #e53935;
}

.wq__cart-remove:hover {
  background: rgba(229, 57, 53, 0.08);
}

.wq__cart-subtotal {
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--gray-700);
}

/* Nota de mínimo */
.wq__minimum-note {
  background: #f5f7ff;
  border: 1px solid rgba(47, 111, 237, 0.15);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.wq__minimum-note p {
  margin-bottom: 6px;
}

.wq__minimum-note p:last-child {
  margin-bottom: 0;
}

/* Resumo da estimativa */
.wq__summary-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
  color: var(--gray-700);
}

.wq__summary-item span:last-child {
  font-weight: 600;
}

.wq__summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 16px;
  color: var(--navy);
  border-top: 2px solid var(--border);
  padding-top: 16px;
}

/* ---------- Logo no Hero ---------- */
.hero__logo {
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
}

.hero__logo img {
  height: auto;
  max-width: 200px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

@media (max-width: 480px) {
  .hero__logo img {
    max-width: 140px;
  }
}

/* ---------- Container do dropdown ---------- */
.lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: 1px solid transparent;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.lang-switch:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.lang-icon {
  transition: transform 0.3s ease;
}

.lang-switch[aria-expanded="true"] .lang-icon {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 8px 0;
  min-width: 140px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

.lang-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  transition: background-color 0.2s ease;
}

.lang-option:hover {
  background-color: #f1f5f9;
  color: #000;
}

/* Previews de arquivos */
.wq__previews {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.wq__preview {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--border);
  background: var(--gray-100);
}

.wq__preview img,
.wq__preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wq__preview-remove {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 22px;
  height: 22px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s;
}

.wq__preview:hover .wq__preview-remove {
  opacity: 1;
}

/* -------------------------------------------------------------------------
   RESPONSIVE FINE-TUNING
   ------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .hero {
    padding: 80px 20px 70px;
    min-height: 100vh;
  }

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

  .hero__actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .compare__handle-grip {
    width: 36px;
    height: 36px;
  }

  .testimonial-card {
    flex: 0 0 85vw;
  }

  .wizard__panel {
    width: 100vw;
    max-height: 100vh;
    border-radius: 0;
  }

  .wizard__body {
    padding: 6px 16px 24px;
  }
}

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

  .hero__subtitle {
    font-size: 0.95rem;
  }

  .hero__stats {
    gap: 16px;
  }

  .stat__num {
    font-size: 1.4rem;
  }

  .stat__label {
    font-size: 0.7rem;
  }

  .scroll-cue__mouse {
    width: 22px;
    height: 34px;
  }

  .service-card {
    padding: 20px 16px;
  }

  .wq__options--grid4 {
    grid-template-columns: 1fr 1fr;
  }

  .wq__cart-item {
    flex-wrap: wrap;
  }

  .wq__cart-item-price {
    min-width: auto;
  }
}


/* -------------------------------------------------------------------------
   CART BUTTON
   ------------------------------------------------------------------------- */
.cart-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--duration-base) ease;
  flex-shrink: 0;
  cursor: pointer;
}

.cart-button:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-2px);
}

.navbar.is-scrolled .cart-button {
  color: #C6D3EC;
  background: rgba(255, 255, 255, 0.05);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: var(--teal);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.cart-count.is-empty {
  background: var(--gray-400);
  color: #fff;
}

.cart-count.is-updated {
  animation: cartPop 0.3s var(--ease-out-back);
}

@keyframes cartPop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.4);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 480px) {
  .cart-button {
    width: 34px;
    height: 34px;
  }

  .cart-button svg {
    width: 18px;
    height: 18px;
  }

  .cart-count {
    min-width: 16px;
    height: 16px;
    font-size: 0.65rem;
    top: -3px;
    right: -3px;
  }
}



/* -------------------------------------------------------------------------
   CART MODAL
   ------------------------------------------------------------------------- */
.cart-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.cart-modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 27, 51, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cart-modal {
  position: relative;
  z-index: 1;
  width: min(92vw, 520px);
  max-height: 85vh;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(24px) scale(0.96);
  transition: transform 0.3s var(--ease-out-back);
}

.cart-modal-overlay.is-open .cart-modal {
  transform: translateY(0) scale(1);
}

.cart-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
  flex-shrink: 0;
}

.cart-modal-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.cart-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all var(--duration-fast);
  cursor: pointer;
}

.cart-modal-close:hover {
  background: var(--gray-100);
  color: var(--gray-700);
}

.cart-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  min-height: 200px;
}

.cart-modal-empty {
  text-align: center;
  color: var(--gray-500);
  padding: 40px 0;
}

.cart-modal-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  border: 1px solid var(--border-light);
  margin-bottom: 10px;
  transition: all 0.2s ease;
}

.cart-modal-item:hover {
  border-color: var(--border);
  background: var(--white);
  box-shadow: var(--shadow-xs);
}

.cart-modal-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(47, 111, 237, 0.08);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-modal-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cart-modal-item-info strong {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}

.cart-modal-item-info span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.cart-modal-item-price {
  font-weight: 600;
  min-width: 70px;
  text-align: right;
  color: var(--gray-700);
  font-size: 0.9rem;
}

.cart-modal-item-actions {
  display: flex;
  gap: 6px;
}

.cart-modal-btn {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.cart-modal-btn-edit {
  color: var(--blue);
  background: rgba(47, 111, 237, 0.08);
}

.cart-modal-btn-edit:hover {
  background: rgba(47, 111, 237, 0.15);
}

.cart-modal-btn-remove {
  color: #e53935;
  background: rgba(229, 57, 53, 0.08);
}

.cart-modal-btn-remove:hover {
  background: rgba(229, 57, 53, 0.15);
}

.cart-modal-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-light);
  flex-shrink: 0;
}

.cart-modal-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cart-modal-subtotal span {
  font-size: 1rem;
  color: var(--gray-600);
}

.cart-modal-subtotal strong {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
}

.cart-modal-minimum {
  background: #f5f7ff;
  border: 1px solid rgba(47, 111, 237, 0.15);
  border-radius: var(--radius-sm);
  padding: 10px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.cart-modal-minimum p {
  margin-bottom: 4px;
}

.cart-modal-minimum p:last-child {
  margin-bottom: 0;
}

.cart-modal-actions {
  display: flex;
  gap: 12px;
}

.cart-modal-action-btn {
  flex: 1;
  padding: 12px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.cart-modal-action-secondary {
  background: transparent;
  color: var(--gray-700);
  border: 2px solid var(--gray-200);
}

.cart-modal-action-secondary:hover {
  border-color: var(--gray-400);
  background: var(--gray-50);
}

.cart-modal-action-primary {
  background: var(--blue);
  color: #fff;
  border: 2px solid var(--blue);
  box-shadow: 0 4px 14px rgba(47, 111, 237, 0.35);
}

.cart-modal-action-primary:hover {
  background: #1E5CD8;
  border-color: #1E5CD8;
  box-shadow: var(--shadow-blue-lg);
}

@media (max-width: 480px) {
  .cart-modal {
    width: 100vw;
    max-height: 100vh;
    border-radius: 0;
  }

  .cart-modal-actions {
    flex-direction: column;
  }
}


.cart-modal-empty-state {
  text-align: center;
  padding: 40px 20px;
}

.cart-modal-empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(47, 111, 237, 0.08);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-modal-empty-state p {
  font-size: 1.1rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.cart-modal-start-btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.cart-modal-start-btn:hover {
  background: #1E5CD8;
  box-shadow: var(--shadow-blue-lg);
  transform: translateY(-2px);
}

img.logo-hero {
  filter: drop-shadow(2px 1px 2px white);
}

/* -------------------------------------------------------------------------
   BIBLE VERSE
   ------------------------------------------------------------------------- */
.bible-verse {
  padding: 70px var(--content-padding);
  background: linear-gradient(135deg, #F8FAFC 0%, #EEF3FF 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decoração sutil de fundo */
.bible-verse::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(47, 111, 237, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.bible-verse__inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.bible-verse__text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--navy);
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  font-style: italic;
}

.bible-verse__ref {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(47, 111, 237, 0.08);
  padding: 6px 16px;
  border-radius: 20px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.bible-verse__ref:hover {
  background: rgba(47, 111, 237, 0.15);
  transform: translateY(-2px);
}

/* Ajuste responsivo */
@media (max-width: 480px) {
  .bible-verse {
    padding: 50px 20px;
  }

  .bible-verse__text {
    font-size: 1.1rem;
  }
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #141937 0%, #0a0d24 100%);
  border: 2px solid rgba(0, 255, 204, 0.3);
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  padding: 0;
  overflow: hidden;
  position: fixed;
  bottom: 20px;
  right: 30px;
}

.app-store-btn:hover {
  box-shadow: 0 4px 15px rgba(0, 183, 255, 0.5);
}

.app-store-btn:active {
  transform: translateY(-1px);
}

/* Classe utilitária para leitores de tela (acessibilidade) */
.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;
}





/* ============================================================
   MENU HAMBÚRGUER E NAVEGAÇÃO MOBILE
   ============================================================ */

/* Esconde o botão em telas grandes */
.nav-toggle {
  display: none;
}

/* Exibe o botão hambúrguer em telas até 1024px */
@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    z-index: 1100;
  }

  .navbar.is-scrolled .nav-toggle {
    background: rgba(255, 255, 255, 0.05);
  }

  .nav-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  .nav-toggle__line {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  /* Animação do hambúrguer para X */
  .nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Painel de navegação */
  .navbar__actions {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    z-index: 1050;
    background: rgba(11, 27, 51, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 24px var(--content-padding);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(-120%);
    transition: transform 0.4s var(--ease-out-expo);
    pointer-events: none;
    visibility: hidden;
  }

  .navbar__actions.is-open {
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
  }

  /* Ajusta os itens dentro do painel */
  .navbar__actions .tel-link {
    justify-content: center;
    font-size: 1rem;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
  }

  .navbar__actions .tel-link span {
    display: inline;
  }

  .navbar__actions .cart-button {
    align-self: center;
  }

  .navbar__actions .btn--nav {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 1rem;
  }

  /* Dropdown de idiomas no mobile */
  .lang-dropdown {
    position: relative;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .lang-switch {
    width: 100%;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.9rem;
    color: #fff;
  }

  .lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: 100%;
    min-width: auto;
    background: #fff;
    border-radius: var(--radius-sm);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    z-index: 20;
  }

  .lang-option {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
  :root {
    --navbar-height: 64px;
  }

  .logo img {
    width: 130px;
  }

  .navbar__actions {
    padding: 16px;
    gap: 10px;
  }
}

/* ============================================================
   CORREÇÃO DROPDOWN DE IDIOMAS NO MOBILE
   ============================================================ */
@media (max-width: 1024px) {

  #navCta {
    display: none;
  }

  /* Remove a rotação do botão em telas touch */
  .lang-switch:hover,
  .lang-switch:focus,
  .lang-switch:active {
    transform: none !important;
  }

  /* Garante que o dropdown fique acima de outros elementos */
  .lang-dropdown {
    z-index: 30;
  }

  .lang-menu {
    z-index: 30;
    /* Força a transição correta (alguns navegadores podem não aplicar a classe .show) */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }

  .lang-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Evita que o painel de navegação corte o dropdown */
  .navbar__actions {
    overflow: visible;
  }

  /* Ajusta posição e largura para não sair da tela */
  .lang-dropdown {
    position: relative;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .lang-switch {
    width: 100%;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.9rem;
    color: #fff;
  }

  .lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: 100%;
    min-width: auto;
    background: #fff;
    border-radius: var(--radius-sm);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  }

  .lang-option {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
}

@media (max-width: 1024px) {
  .navbar__actions {
    overflow: visible;
    /* permite que o dropdown apareça fora do painel */
  }

  .lang-dropdown {
    position: relative;
    z-index: 30;
  }

  .lang-menu {
    z-index: 40;
  }
}



/* Ajustes adicionais para telas pequenas */
@media (max-width: 480px) {
  :root {
    --navbar-height: 64px;
  }

  .logo img {
    width: 130px;
  }

  .navbar__actions {
    padding: 16px;
    gap: 10px;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .hero__subtitle {
    font-size: 0.95rem;
  }

  .hero__stats {
    gap: 12px;
  }

  .stat__num {
    font-size: 1.3rem;
  }

  .stat__label {
    font-size: 0.68rem;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .service-card {
    padding: 16px 14px;
  }

  .testimonial-card {
    flex: 0 0 88vw;
  }
}

/* Melhorando toques em telas pequenas */
@media (pointer: coarse) {

  .btn,
  .wq__option,
  .service-card,
  .cart-button,
  .lang-switch,
  .whatsapp-btn {
    min-height: 44px;
  }
}

/* Esconde o botão do WhatsApp quando o wizard estiver aberto em telas pequenas */
@media (max-width: 768px) {
  .wizard.is-open~.whatsapp-btn {
    opacity: 0;
    pointer-events: none;
  }
}





/* -------------------------------------------------------------------------
   SERVICE AREA (MAP SECTION)
   ------------------------------------------------------------------------- */
.service-area {
  padding: 90px var(--content-padding) 100px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.service-area__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.service-area__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-area__address h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-area__address p {
  color: var(--gray-600);
  margin-bottom: 6px;
}

.service-area__radius strong {
  color: var(--blue);
}

.service-area__legend {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.service-area__legend span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.legend-dot--primary {
  background: rgba(47, 111, 237, 0.25);
  border: 2px solid var(--blue);
}

.legend-dot--secondary {
  background: rgba(94, 234, 212, 0.25);
  border: 2px solid var(--teal);
}

.service-area__map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Responsividade */
@media (max-width: 768px) {
  .service-area__grid {
    grid-template-columns: 1fr;
  }
}


/* Trust Badges */
.hero__trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  gap: 0.5rem;
}

.trust-badge__stars {
  font-size: 1.5rem;
  letter-spacing: 3px;
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  margin-bottom: 0.25rem;
}

.trust-badge__icon {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.trust-badge__title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-badge__subtitle {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 500;
}

.trust-badge__week {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 0.25rem;
}

/* Contact Section */
.contact-section {
  padding: 6rem 2rem;
  background: #f8fafc;
}

.contact-grid {
  max-width: 1100px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

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

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-info__item svg {
  flex-shrink: 0;
  color: #2563eb;
}

.contact-info__item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
}

.contact-info__item p {
  margin: 0;
  color: #64748b;
  line-height: 1.5;
}

.contact-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1e293b;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

/* Responsive */
@media (max-width: 768px) {
  .hero__trust-badges {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.5rem;
  }
}


button#contactSubmit {
  margin-top: 20px;
}


.service-area__map-container {
  position: relative;
  min-height: 450px;
  width: 100%;
}

#serviceMap {
  height: 450px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 1;
  /* Evita sobreposição com outros elementos */
}

/* Garantir que o Leaflet funcione corretamente */
.leaflet-container {
  font-family: 'Inter', sans-serif;
  z-index: 1;
}

/* Ajuste para mobile */
@media (max-width: 768px) {
  .service-area__map-container {
    min-height: 350px;
  }

  #serviceMap {
    height: 350px;
  }
}

/* ============ TOAST SIMPLES ============ */
#toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background-color: #0B1B33;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  max-width: 90%;
  word-wrap: break-word;
}

#toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

#toast.toast--success {
  background-color: #10B981;
}

#toast.toast--error {
  background-color: #EF4444;
}

#toast.toast--warning {
  background-color: #F59E0B;
}

/* ============ TOAST CONTAINER (AVANÇADO) ============ */
.toast-container {
  position: fixed;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.toast-container--bottom {
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
}

.toast-container--top {
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
}

/* ============ TOAST AVANÇADO ============ */
.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #0B1B33;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: auto;
  min-width: 280px;
  max-width: 400px;
}

.toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.toast.is-hiding {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.toast--success {
  background-color: #10B981;
}

.toast--error {
  background-color: #EF4444;
}

.toast--warning {
  background-color: #F59E0B;
}

.toast--info {
  background-color: #3B82F6;
}

.toast__icon {
  font-size: 18px;
  font-weight: bold;
  flex-shrink: 0;
}

.toast__message {
  flex: 1;
  line-height: 1.4;
}

.toast__close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.toast__close:hover {
  opacity: 1;
}

/* Responsivo */
@media (max-width: 768px) {
  .toast-container {
    width: calc(100% - 32px);
    left: 16px;
    right: 16px;
    transform: none;
  }

  .toast {
    min-width: auto;
    max-width: none;
    width: 100%;
  }

  #toast {
    width: calc(100% - 32px);
  }
}