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

:root {
  --navy: #1a2e44;
  --navy-mid: #243b55;
  --teal: #2e7d6b;
  --teal-light: #3a9e87;
  --sage: #7aab96;
  --sage-pale: #b8d5cb;
  --cream: #f7f4ef;
  --warm-white: #fdfcfa;
  --stone: #e8e4dd;
  --gray-mid: #8a8f98;
  --text-dark: #1c2530;
  --text-body: #3d4752;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 48px;
  --shadow-soft: 0 4px 24px rgba(26, 46, 68, 0.08);
  --shadow-mid: 0 8px 40px rgba(26, 46, 68, 0.12);
  --shadow-strong: 0 16px 64px rgba(26, 46, 68, 0.18);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--warm-white);
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
}
.hero-bg img,
.logo-img {
  max-width: none;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 10px 0;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-item svg {
  opacity: 0.7;
  flex-shrink: 0;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-top-phone {
  color: white;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}
.btn-top-phone:hover {
  background: rgba(255, 255, 255, 0.18);
}
.btn-top-wa {
  background: #25d366;
  color: white;
  border-color: #25d366;
}
.btn-top-wa:hover {
  background: #1fba5a;
}

/* ── NAVBAR ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 252, 250, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232, 228, 221, 0.7);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#header {
  width: 100%;
}
#header.scrolled {
  box-shadow: 0 2px 32px rgba(26, 46, 68, 0.1);
}
header:has(#header.scrolled) {
  background: rgba(253, 252, 250, 0.99);
  border-bottom-color: var(--stone);
}
#header.scrolled .header-inner {
  height: 62px;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: height 0.4s ease;
  min-width: 0;
}
.logo {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  min-width: 0;
  flex-shrink: 1;
}
.logo div{
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-img{
  height: 60px;
  width: 60px;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  transition: var(--transition);
}
.logo-tag {
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--teal);
  font-weight: 500;
  line-height: 1.3;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.desktop-nav a {
  text-decoration: none;
  color: var(--text-body);
  font-size: 0.87rem;
  font-weight: 400;
  padding: 8px 13px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
}
.desktop-nav a:hover {
  color: var(--teal);
  background: rgba(46, 125, 107, 0.06);
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 26px);
  height: 1.5px;
  background: var(--teal);
  border-radius: 2px;
  transition: transform 0.25s ease;
}
.desktop-nav a:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.btn-agendar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: white;
  border-radius: 40px;
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 500;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(46, 125, 107, 0.3);
  white-space: nowrap;
}
.btn-agendar:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(46, 125, 107, 0.42);
}
/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.menu-toggle:hover {
  background: var(--cream);
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(253, 252, 250, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 80px 24px 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--navy);
  text-decoration: none;
  padding: 12px 40px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.mobile-menu a:hover {
  color: var(--teal);
  background: rgba(46, 125, 107, 0.06);
}
.mobile-menu .btn-mobile-cta {
  margin-top: 16px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  padding: 16px 40px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(46, 125, 107, 0.35);
}

/* ── HERO ── */
.hero-section {
  position: relative;
  height: 84vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.1s ease-out;
}
/* Layered overlays for premium look */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(247, 244, 239, 1) 0%,
    rgba(247, 244, 239, 0.97) 08%,
    rgba(247, 244, 239, 0.82) 18%,
    rgba(247, 244, 239, 0.3) 65%,
    rgba(247, 244, 239, 0) 75%
  );
}
/* Subtle vignette at bottom */
.hero-bg-overlay2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    rgba(247, 244, 239, 0.6) 100%
  );
}
.hero {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 32px;
}
.hero-content {
  max-width: 580px;
}
.bg-hero{
    background-position: bottom bottom;
}
/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(46, 125, 107, 0.08);
  border: 1px solid rgba(46, 125, 107, 0.22);
  border-radius: 40px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease both;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

/* Hero headline — more emotional */
.hero h2 {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 4.8vw, 4.2rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.1s ease both;
}
.hero h2 em {
  font-style: italic;
  color: var(--teal);
}
.hero h2 .hero-h1-accent {
  display: block;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 470px;
  margin-bottom: 14px;
  opacity: 0.82;
  animation: fadeInUp 0.8s 0.18s ease both;
}
/* Urgency microcopy */
.hero-urgency {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s 0.22s ease both;
}
.hero-urgency-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.2);
}

/* CTAs */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.28s ease both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 6px 28px rgba(46, 125, 107, 0.38);
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(46, 125, 107, 0.48);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1.5px solid rgba(46, 125, 107, 0.45);
  color: var(--teal);
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}
.btn-secondary:hover {
  background: rgba(46, 125, 107, 0.08);
  border-color: var(--teal);
  transform: translateY(-1px);
}
/* Microcopy under CTA */
.hero-cta-note {
  font-size: 0.75rem;
  color: var(--gray-mid);
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: fadeInUp 0.8s 0.35s ease both;
}
.hero-cta-note svg {
  opacity: 0.6;
}

/* Trust badges row */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
  animation: fadeInUp 0.8s 0.38s ease both;
}
.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: white;
  border: 1px solid var(--stone);
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-dark);
  box-shadow: var(--shadow-soft);
}
.hero-badge-item svg {
  color: var(--teal);
  flex-shrink: 0;
}

/* Stats */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(26, 46, 68, 0.1);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.44s ease both;
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
}
.hero-trust-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.hero-trust-label {
  font-size: 0.73rem;
  color: var(--gray-mid);
  margin-top: 3px;
}
.hero-trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(26, 46, 68, 0.13);
}

/* Float cards */
.hero-float-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: 0 12px 48px rgba(26, 46, 68, 0.14);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: floatIn 1s ease both;
}
.hero-float-1 {
  bottom: 15%;
  right: 8%;
  min-width: 200px;
  animation-delay: 0.6s;
}
.hero-float-2 {
  top: 22%;
  right: 5%;
  min-width: 200px;
  animation-delay: 0.9s;
}
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.hero-float-card {
  animation: floatIn 1s ease both;
}
.hero-float-1 {
  animation:
    floatIn 1s 0.6s ease both,
    float 4s 1.6s ease-in-out infinite;
}
.hero-float-2 {
  animation:
    floatIn 1s 0.9s ease both,
    float 4s 1.9s ease-in-out infinite reverse;
}
.float-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-icon-teal {
  background: rgba(46, 125, 107, 0.1);
}
.float-icon-navy {
  background: rgba(26, 46, 68, 0.08);
}
.float-text {
  display: flex;
  flex-direction: column;
}
.float-label {
  font-size: 0.68rem;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.float-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

/* Glassmorphism accent card on hero */
.hero-glass-card {
  position: absolute;
  bottom: 10%;
  right: 3%;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  box-shadow: 0 8px 32px rgba(26, 46, 68, 0.12);
  z-index: 2;
  min-width: 190px;
  display: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── SECTION BASE ── */
section {
  padding: 108px 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.section-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--teal);
  flex-shrink: 0;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.section-title em {
  font-style: italic;
  color: var(--teal);
}
.section-sub {
  font-size: 1rem;
  color: var(--gray-mid);
  line-height: 1.75;
  max-width: 520px;
  margin-top: 16px;
}

/* CTA repeat banner */
.cta-band {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  padding: 64px 0;
}
.cta-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: white;
  line-height: 1.2;
}
.cta-band-text h3 em {
  font-style: italic;
}
.cta-band-text p {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 8px;
  font-size: 0.95rem;
}
.cta-band-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: white;
  color: var(--teal);
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}
.btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.16);
}
.btn-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}
.btn-cta-wa:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
}
.cta-band-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

/* ── DORES ── */
.dores {
  background: var(--cream);
}
.dores-intro {
  max-width: 680px;
  margin: 20px 0 0;
  font-size: clamp(1.05rem, 1.8vw, 1.18rem);
  line-height: 1.8;
  color: var(--navy);
  opacity: 0.82;
}
.dores-intro em {
  font-style: normal;
  color: var(--teal);
  font-weight: 500;
}
.dores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.dores-destaque {
  margin-top: 48px;
  padding: 36px 48px;
  text-align: center;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid rgba(46, 125, 107, 0.18);
  box-shadow: var(--shadow-soft);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 300;
  font-style: italic;
  color: var(--navy);
  line-height: 1.65;
  position: relative;
}
.dores-destaque::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  border-radius: 0 0 4px 4px;
}
.dores-destaque em {
  font-style: normal;
  color: var(--teal);
  font-weight: 500;
}
.dor-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--stone);
  cursor: default;
}
.dor-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-mid);
  border-color: rgba(46, 125, 107, 0.2);
}
.dor-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(46, 125, 107, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: var(--transition);
}
.dor-card:hover .dor-icon {
  background: rgba(46, 125, 107, 0.14);
  transform: scale(1.05);
}
.dor-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.dor-text {
  font-size: 0.8rem;
  color: var(--gray-mid);
  line-height: 1.55;
}

/* ── SOBRE ── */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 16px;
}
.sobre-img-wrap {
  position: relative;
  border-radius: var(--radius-xl) 0 var(--radius-xl) var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.sobre-img-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #c5dbd5, #8eb8ab);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-image: url(images/image.png);
  background-position: center;
  background-size: cover;
}
.sobre-badge-float {
  position: absolute;
  bottom: 28px;
  left: -28px;
  background: var(--navy);
  color: white;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-strong);
}
.sobre-badge-year {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
  color: white;
}
.sobre-badge-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sobre-content {
  padding-left: 16px;
}
.sobre-text {
  font-size: 0.97rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-top: 24px;
}
.sobre-valores {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
}
.valor-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--teal);
  transition: var(--transition);
}
.valor-item:hover {
  background: rgba(46, 125, 107, 0.06);
}
.valor-icon {
  color: var(--teal);
  flex-shrink: 0;
}
.valor-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
}

/* ── SERVIÇOS ── */
.servicos {
  background: var(--cream);
}
.servicos-tabs {
  display: flex;
  gap: 4px;
  background: white;
  border: 1px solid var(--stone);
  border-radius: 40px;
  padding: 4px;
  width: fit-content;
  margin: 40px 0;
}
.tab-btn {
  padding: 10px 28px;
  border-radius: 40px;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-mid);
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn.active {
  background: var(--navy);
  color: white;
}
.servicos-panel {
  display: none;
}
.servicos-panel.active {
  display: block;
}
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.servico-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--stone);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.servico-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.servico-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-mid);
  border-color: rgba(46, 125, 107, 0.15);
}
.servico-card:hover::before {
  transform: scaleX(1);
}
.servico-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(46, 125, 107, 0.12),
    rgba(46, 125, 107, 0.04)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.servico-card:hover .servico-icon {
  background: rgba(46, 125, 107, 0.16);
  transform: scale(1.05);
}
.servico-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.servico-text {
  font-size: 0.87rem;
  color: var(--gray-mid);
  line-height: 1.65;
}

/* ── FORMULÁRIO ── */
.form-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(46, 125, 107, 0.15) 0%,
    transparent 60%
  );
}
.form-section::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(46, 125, 107, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.contato-content .section-label {
  color: var(--sage);
}
.contato-content .section-label::before {
  background: var(--sage);
}
.contato-content .section-title {
  color: white;
}
.contato-content .section-title em {
  color: var(--sage-pale);
}
.contato-lead {
  margin-top: 16px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  max-width: 520px;
}
.contato-intro {
  margin-top: 20px;
  max-width: 580px;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.8vw, 1.22rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.88);
  padding-left: 20px;
  border-left: 3px solid var(--teal);
}
.contato-actions-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.3);
  text-align: center;
}
.contato-actions-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
}
.contato-actions-sub {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.6;
}
.contato-actions-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.btn-contato-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-contato-wa-primary {
  background: #25d366;
  color: white;
  border: 2px solid #25d366;
}
.btn-contato-wa-primary:hover {
  background: #1fb855;
  border-color: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.btn-contato-wa-secondary {
  background: white;
  color: var(--navy);
  border: 2px solid var(--stone);
}
.btn-contato-wa-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.contato-actions-note {
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--gray-mid);
  line-height: 1.5;
}
.form-content .section-label {
  color: var(--sage);
}
.form-content .section-label::before {
  background: var(--sage);
}
.form-content .section-title {
  color: white;
}
.form-content .section-sub {
  color: rgba(255, 255, 255, 0.55);
}
.form-feature-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}
.form-feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}
.form-security {
  margin-top: 32px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
}
.form-security-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}
.form-security-text strong {
  color: rgba(255, 255, 255, 0.8);
}
.form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.3);
}
.form-type-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 28px;
}
.type-btn {
  padding: 11px;
  border-radius: 6px;
  border: none;
  font-family: var(--font-body);
  font-size: 0.87rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--gray-mid);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.type-btn.active {
  background: white;
  color: var(--navy);
  box-shadow: var(--shadow-soft);
}
.form-panel {
  display: none;
}
.form-panel.active {
  display: block;
}
.form-group {
  margin-bottom: 18px;
}
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--stone);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--warm-white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(46, 125, 107, 0.1);
  background: white;
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.btn-form {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
  box-shadow: 0 6px 24px rgba(46, 125, 107, 0.38);
  letter-spacing: 0.01em;
}
.btn-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(46, 125, 107, 0.48);
}
.form-privacy {
  font-size: 0.72rem;
  color: var(--gray-mid);
  text-align: center;
  margin-top: 12px;
}
.form-status {
  margin-bottom: 20px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
}
.form-status.success {
  background: rgba(46, 125, 107, 0.12);
  color: var(--teal);
  border: 1px solid rgba(46, 125, 107, 0.25);
}
.form-status.error {
  background: rgba(198, 40, 40, 0.08);
  color: #b71c1c;
  border: 1px solid rgba(198, 40, 40, 0.2);
}

/* ── DIFERENCIAIS ── */
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.dif-card {
  padding: 36px 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--stone);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  background: white;
}
.dif-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.dif-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-mid);
}
.dif-card:hover::after {
  transform: scaleX(1);
}
.dif-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(46, 125, 107, 0.12);
  line-height: 1;
  margin-bottom: 8px;
}
.dif-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.dif-text {
  font-size: 0.87rem;
  color: var(--gray-mid);
  line-height: 1.65;
}

/* ── ONLINE ── */
.online {
  background: linear-gradient(160deg, var(--teal) 0%, var(--navy) 100%);
  color: white;
}
.online .section-label {
  color: rgba(255, 255, 255, 0.6);
}
.online .section-label::before {
  background: rgba(255, 255, 255, 0.4);
}
.online .section-title {
  color: white;
}
.online-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 16px;
}
.online-features {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.online-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.online-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.online-feature:hover .online-feat-icon {
  background: rgba(255, 255, 255, 0.2);
}
.online-feat-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}
.online-feat-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}
.online-visual {
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-xl) var(--radius-xl) 0 var(--radius-xl);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
}
.online-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 30%,
    rgba(255, 255, 255, 0.08),
    transparent 70%
  );
}
.online-visual-inner {
  text-align: center;
  padding: 40px;
  position: relative;
}
.online-visual-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.online-stat {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: white;
}
.online-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

/* ── BENEFÍCIOS ── */
.beneficios {
  background: var(--cream);
}
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.beneficios-grid .ben-card:nth-child(1) {
  grid-column: 1 / span 2;
}
.beneficios-grid .ben-card:nth-child(2) {
  grid-column: 3 / span 2;
}
.beneficios-grid .ben-card:nth-child(3) {
  grid-column: 5 / span 2;
}
.beneficios-grid .ben-card:nth-child(4) {
  grid-column: 2 / span 2;
}
.beneficios-grid .ben-card:nth-child(5) {
  grid-column: 4 / span 2;
}
.ben-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}
.ben-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-mid);
}
.ben-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ben-icon-1 {
  background: rgba(46, 125, 107, 0.1);
}
.ben-icon-2 {
  background: rgba(26, 46, 68, 0.08);
}
.ben-icon-3 {
  background: rgba(201, 169, 110, 0.15);
}
.ben-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}
.ben-text {
  font-size: 0.87rem;
  color: var(--gray-mid);
  line-height: 1.65;
}

/* ── POR QUE ESCOLHER ── */
.escolha {
  background: white;
}
.escolha .section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.escolha-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}
.escolha-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.97rem;
  color: var(--navy);
  line-height: 1.55;
  padding: 16px 18px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border: 1px solid var(--stone);
  transition: var(--transition);
}
.escolha-item:hover {
  border-color: rgba(46, 125, 107, 0.25);
  background: rgba(46, 125, 107, 0.04);
}
.escolha-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(46, 125, 107, 0.12);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* ── DEPOIMENTOS ── */
.depoimentos {
  background: var(--cream);
}
.depoimentos-header {
  max-width: 720px;
}
.depoimentos-header .section-title {
  line-height: 1.25;
}
.depo-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 12px 20px 12px 16px;
  background: white;
  border: 1px solid var(--stone);
  border-radius: 999px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}
.depo-google-badge:hover {
  border-color: rgba(46, 125, 107, 0.35);
  box-shadow: var(--shadow-mid);
  transform: translateY(-2px);
}
.depo-google-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.depo-google-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  text-align: left;
}
.depo-google-score {
  font-size: 0.92rem;
  color: var(--navy);
  line-height: 1.2;
}
.depo-google-score strong {
  font-size: 1.1rem;
  font-weight: 700;
}
.depo-google-stars {
  color: #fbbc04;
  font-size: 0.85rem;
  letter-spacing: 1px;
  line-height: 1;
}
.depo-google-link-text {
  font-size: 0.82rem;
  color: var(--teal);
  font-weight: 600;
  margin-left: 4px;
  padding-left: 14px;
  border-left: 1px solid var(--stone);
  white-space: nowrap;
}
.depoimentos-footer {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}
.depo-avaliar-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: white;
  border: 1.5px solid var(--stone);
  border-radius: 50px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}
.depo-avaliar-link:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-mid);
}
.depo-avaliar-link svg:last-child {
  color: var(--teal);
  transition: transform 0.2s ease;
}
.depo-avaliar-link:hover svg:last-child {
  transform: translateX(3px);
}
.depo-carousel {
  position: relative;
  margin-top: 48px;
}
.depo-carousel-viewport {
  overflow: hidden;
  width: 100%;
}
.depo-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.depo-carousel-track .depo-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 32px 28px;
  background: white;
  border: 1px solid var(--stone);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.depo-carousel-track .depo-card:hover {
  box-shadow: var(--shadow-mid);
  transform: translateY(-3px);
}
.depo-carousel-track .depo-card .depo-text {
  flex: 1;
  font-size: 0.92rem;
  margin-bottom: 24px;
}
.depo-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.depo-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(46, 125, 107, 0.2);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.depo-carousel-dot.active {
  width: 28px;
  background: rgba(46, 125, 107, 0.18);
}
.depo-carousel-dot.active.animating::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--teal);
  border-radius: inherit;
  animation: depoDotProgress 5s linear forwards;
}
@keyframes depoDotProgress {
  from { width: 0; }
  to { width: 100%; }
}
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.depo-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--stone);
  transition: var(--transition);
  position: relative;
}
.depo-card:hover {
  box-shadow: var(--shadow-mid);
  transform: translateY(-3px);
}
.depo-card::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(46, 125, 107, 0.1);
  position: absolute;
  top: 12px;
  right: 24px;
  line-height: 1;
}
.depo-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 1rem;
}
.depo-text {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}
.depo-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.depo-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: white;
}
.depo-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}
.depo-role {
  font-size: 0.75rem;
  color: var(--gray-mid);
}

/* ── BLOG ── */
.blog {
  background: var(--cream);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.blog-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--stone);
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-mid);
}
.blog-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 46, 68, 0);
  transition: background 0.35s ease;
}
.blog-card:hover .blog-img::after {
  background: rgba(46, 125, 107, 0.08);
}
.blog-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 12px;
  background: white;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 1;
}
.blog-body {
  padding: 24px;
}
.blog-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 10px;
}
.blog-excerpt {
  font-size: 0.85rem;
  color: var(--gray-mid);
  line-height: 1.65;
  margin-bottom: 16px;
}
.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-date {
  font-size: 0.75rem;
  color: var(--gray-mid);
}
.blog-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
}
.blog-link:hover {
  text-decoration: underline;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.65);
}
.footer-main {
  padding: 80px 0 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}
.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: white;
  line-height: 1.2;
  margin-bottom: 4px;
}
.footer-logo-tag {
  font-size: 0.7rem;
  color: var(--sage-pale);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-desc {
  font-size: 0.87rem;
  line-height: 1.75;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}
.social-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  color: white;
  transform: translateY(-2px);
}
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.87rem;
  transition: var(--transition);
}
.footer-links a:hover {
  color: white;
  padding-left: 4px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
}
.footer-contact-item svg {
  margin-top: 2px;
  flex-shrink: 0;
  opacity: 0.5;
}
.footer-map {
  margin-top: 14px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-map iframe {
  width: 100%;
  height: 180px;
  border: 0;
  display: block;
}
.footer-map:hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}
.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── WA FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  z-index: 999;
  transition: var(--transition);
  animation: wa-bounce 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 36px rgba(37, 211, 102, 0.58);
  animation: none;
}
@keyframes wa-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--navy);
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.wa-tooltip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--navy);
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
}

/* ── SCROLL REVEAL ── */
html.js .fade-up:not(.visible) {
  opacity: 0;
  transform: translateY(28px);
}
.fade-up {
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) {
  transition-delay: 0.1s;
}
.fade-up:nth-child(3) {
  transition-delay: 0.2s;
}
.fade-up:nth-child(4) {
  transition-delay: 0.3s;
}
html.js .fade-left:not(.visible) {
  opacity: 0;
  transform: translateX(-28px);
}
.fade-left {
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}
html.js .fade-right:not(.visible) {
  opacity: 0;
  transform: translateX(28px);
}
.fade-right {
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  html.js .fade-up:not(.visible),
  html.js .fade-left:not(.visible),
  html.js .fade-right:not(.visible) {
    opacity: 1;
    transform: none;
  }
  .depo-carousel-track {
    transition: none;
  }
  .depo-carousel-dot.active.animating::after {
    animation: none;
    width: 100%;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .container,
  .topbar-inner,
  .header-inner,
  .hero,
  .cta-band-inner,
  .footer-bottom-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-float-1,
  .hero-float-2 {
    display: none;
  }
  .hero-bg-overlay {
    background: linear-gradient(
      105deg,
      rgba(247, 244, 239, 0.99) 0%,
      rgba(247, 244, 239, 0.97) 35%,
      rgba(247, 244, 239, 0.85) 55%,
      rgba(247, 244, 239, 0.4) 70%,
      transparent 80%
    );
  }
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .sobre-content {
    padding-left: 0;
  }
  .sobre-img-wrap {
    max-width: 480px;
    margin: 0 auto;
  }
  .online-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .form-grid,
  .contato-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contato-intro {
    padding-left: 16px;
    font-size: 1.02rem;
  }
  .contato-actions-card {
    padding: 32px 24px;
  }
  .diferenciais-grid {
    grid-template-columns: 1fr 1fr;
  }
  .dores-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .depo-carousel-track .depo-card {
    flex: 0 0 calc((100% - 24px) / 2);
    min-height: 280px;
  }
  .beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .beneficios-grid .ben-card:nth-child(n) {
    grid-column: auto;
  }
  .escolha-list {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 36px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .btn-agendar {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  section {
    padding: 72px 0;
  }

  .container,
  .topbar-inner,
  .header-inner,
  .hero,
  .cta-band-inner,
  .footer-bottom-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header-inner {
    height: 64px;
    gap: 12px;
  }

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

  .topbar {
    padding: 8px 0;
  }
  .topbar-left {
    display: none;
  }
  .topbar-inner {
    justify-content: center;
  }
  .topbar-right {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .logo-name {
    font-size: 1.3rem;
  }
  .logo-tag {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }
  .logo-img {
    height: 48px;
    width: 48px;
  }

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

  .hero-section {
    height: auto;
    min-height: auto;
    background: var(--cream);
    padding: 28px 0 40px;
    align-items: flex-start;
  }
  .hero-bg {
    display: none;
  }
  .hero {
    padding: 0 20px;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero h2 {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }
  .hero-sub {
    font-size: 1rem;
    max-width: 100%;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
  .hero-cta-note {
    justify-content: center;
    text-align: center;
  }

  .hero-trust {
    flex-wrap: wrap;
    gap: 16px;
  }

  .dores-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }

  .dores-intro {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.75;
  }

  .dores-destaque {
    margin-top: 36px;
    padding: 28px 24px;
    font-size: 1.05rem;
  }

  .sobre-badge-float {
    left: 12px;
    bottom: 16px;
    padding: 16px 20px;
  }
  .sobre-badge-year {
    font-size: 2.2rem;
  }

  .servicos-tabs {
    width: 100%;
    max-width: 100%;
  }
  .tab-btn {
    flex: 1;
    padding: 10px 16px;
    text-align: center;
  }
  .servicos-grid {
    grid-template-columns: 1fr;
  }

  .beneficios-grid,
  .depoimentos-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
  .depo-carousel {
    margin-top: 36px;
  }
  .depo-carousel-track .depo-card {
    flex: 0 0 100%;
    min-height: 260px;
    padding: 32px 24px 28px;
  }
  .depoimentos-footer {
    margin-top: 28px;
  }
  .depo-google-badge {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: var(--radius-md);
    padding: 16px 20px;
  }
  .depo-google-link-text {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
  .depo-avaliar-link {
    width: 100%;
    justify-content: center;
  }
  .beneficios-grid .ben-card:nth-child(n) {
    grid-column: auto;
  }
  .escolha-list {
    margin-top: 32px;
  }

  .cta-band {
    padding: 48px 0;
  }
  .cta-band-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .cta-band-btns {
    width: 100%;
  }
  .cta-band-btns a {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .form-card {
    padding: 28px 20px;
  }
  .form-input,
  .form-select,
  .form-textarea {
    font-size: 16px;
  }
  .form-security {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-desc {
    max-width: 100%;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .wa-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
  .wa-tooltip {
    display: none;
  }

  .mobile-menu a {
    font-size: 1.6rem;
    padding: 10px 32px;
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  section {
    padding: 60px 0;
  }

  .container,
  .topbar-inner,
  .header-inner,
  .hero,
  .cta-band-inner,
  .footer-bottom-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .topbar-right {
    gap: 8px;
  }
  .btn-top {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .logo div {
    min-width: 0;
  }
  .logo-name {
    font-size: 1.15rem;
  }
  .logo-tag {
    font-size: 0.55rem;
    letter-spacing: 0.04em;
    white-space: normal;
    max-width: 200px;
  }

  .hero {
    padding: 0 16px;
  }
  .hero h2 {
    font-size: 1.95rem;
    margin-bottom: 18px;
  }
  .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
  .hero-urgency {
    margin-bottom: 28px;
    font-size: 0.78rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 14px;
  }
  .hero-badges {
    gap: 8px;
  }
  .hero-badge-item {
    font-size: 0.73rem;
    padding: 6px 12px;
  }
  .hero-trust-num {
    font-size: 1.4rem;
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }
  .section-sub {
    font-size: 0.95rem;
  }

  .dor-card,
  .servico-card,
  .ben-card,
  .depo-card {
    padding: 24px 20px;
  }

  .form-card {
    padding: 24px 16px;
    border-radius: var(--radius-md);
  }
  .type-btn {
    font-size: 0.8rem;
    padding: 10px 8px;
  }

  .footer-main {
    padding: 60px 0 40px;
  }
  .footer-logo-name {
    font-size: 1.4rem;
  }

  .btn-primary,
  .btn-secondary,
  .btn-cta-white,
  .btn-cta-wa {
    font-size: 0.9rem;
    padding: 14px 24px;
  }
}

@media (max-width: 360px) {
  .btn-top-phone {
    font-size: 0.7rem;
    padding: 6px 10px;
  }
  .logo-tag {
    max-width: 160px;
  }
  .hero h2 {
    font-size: 1.75rem;
  }
}
