.svg-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  stroke: currentColor;
  fill: none;
}

.proof-icon .svg-icon,
.service-icon .svg-icon,
.detail-icon .svg-icon,
.diff-emoji .svg-icon {
  width: 1.4em;
  height: 1.4em;
}

.footer-social a .svg-icon {
  width: 1.1em;
  height: 1.1em;
}

.hours-card h3 .svg-icon {
  width: 1em;
  height: 1em;
  margin-right: 0.35em;
  vertical-align: -0.15em;
}

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

:root {
  --primary: #2d3e4e;
  --primary-rgb: 45, 62, 78;
  --brand-deep: #1a2e3a;
  --brand-deep-rgb: 26, 46, 58;
  --accent: #b8d8a7;
  --accent-rgb: 184, 216, 167;
  --accent-dark: #8ebf78;
  --white: #ffffff;
  --cream: #f7faf5;
  --gray-bg: #f0f3ee;
  --dark: #1a2530;
  --text: #3a4a5a;
  --text-light: #6b7d8d;
  --shadow: 0 4px 24px rgba(45, 62, 78, 0.1);
  --shadow-lg: 0 12px 40px rgba(45, 62, 78, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Outfit", sans-serif;
  color: var(--primary);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(45, 62, 78, 0.97);
  padding: 10px 0;
  box-shadow: var(--shadow-lg);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 44px;
  transition: height 0.3s;
}

.navbar.scrolled .nav-logo img {
  height: 36px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  height: 310vh;
  padding: 0;
  background: #081118;
}

.hero-stage {
  position: sticky;
  top: 0;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 25%,
      rgba(var(--accent-rgb), 0.12),
      transparent 30%),
    radial-gradient(circle at 85% 15%,
      rgba(255, 255, 255, 0.08),
      transparent 32%),
    #081118;
}

.hero-video,
.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.08);
}

.hero-video {
  filter: saturate(0.9) contrast(1.02) brightness(0.92);
}

.hero-poster {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--brand-deep-rgb), 0.48);
  mix-blend-mode: multiply;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(5, 12, 18, 0.64) 0%,
      rgba(5, 12, 18, 0.1) 35%,
      rgba(5, 12, 18, 0.66) 100%),
    radial-gradient(circle at center,
      transparent 32%,
      rgba(5, 12, 18, 0.52) 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.hero-glow-one {
  top: -50%;
  right: -15%;
  width: 40vw;
  height: 40vw;
  background: rgba(var(--accent-rgb), 0.15);
}

.hero-glow-two {
  left: -10%;
  bottom: -25%;
  width: 36vw;
  height: 36vw;
  background: rgba(255, 255, 255, 0.08);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 340px);
  align-items: end;
  gap: 40px;
  padding-top: 140px;
  padding-bottom: 56px;
}

.hero-copy {
  max-width: 760px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  margin-bottom: 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 15, 24, 0.38);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  animation: fadeDown 0.8s ease;
}

.hero-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.8);
}

.hero-logo {
  width: min(240px, 42vw);
  margin: 0 0 28px;
  animation: fadeDown 0.8s ease;
}

.hero-logo img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 16px 30px rgba(0, 0, 0, 0.25));
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  color: #fff;
  margin-bottom: 18px;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
  animation: fadeUp 0.8s ease;
}

.hero h1 span {
  color: var(--accent);
  position: relative;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.02rem, 2.2vw, 1.3rem);
  margin-bottom: 18px;
  animation: fadeUp 1s ease;
  max-width: 620px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  margin: 0 0 32px;
  animation: fadeUp 1.1s ease;
}

.hero-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50px;
  padding: 9px 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(7, 15, 24, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 18px 20px;
  margin-bottom: 18px;
  animation: fadeUp 1.2s ease;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(5, 12, 18, 0.22);
}

.hero-rating .stars {
  color: var(--accent);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}

.hero-rating-copy {
  display: grid;
  gap: 2px;
}

.hero-rating strong {
  color: #fff;
  font-size: 1rem;
  font-family: "Outfit", sans-serif;
}

.hero-rating span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: "Outfit", sans-serif;
}

.btn-primary {
  background: rgba(168, 216, 176, 0.9);
  color: var(--brand-deep);
  box-shadow: 0 14px 34px rgba(var(--accent-rgb), 0.26);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(var(--accent-rgb), 0.34);
  background: #b7e2bf;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-ctas {
  animation: fadeUp 1.4s ease;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
}

.hero-side {
  align-self: end;
  animation: fadeUp 1.4s ease;
}

.hero-panel {
  background: rgba(7, 15, 24, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 24px;
  color: #fff;
  box-shadow: 0 20px 60px rgba(5, 12, 18, 0.22);
  backdrop-filter: blur(16px);
}

.hero-panel-label {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  margin-bottom: 14px;
}

.hero-panel strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  line-height: 1.05;
  margin-bottom: 12px;
}

.hero-panel p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.hero-metric {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-metric strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.hero-metric span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
}

.wa-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* ═══ SOCIAL PROOF BAR ═══ */
.proof-bar {
  background: var(--primary);
  padding: 36px 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.proof-item {
  color: #fff;
}

.proof-icon {
  font-size: 2rem;
  margin-bottom: 4px;
}

.proof-number {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: "Outfit", sans-serif;
  color: var(--accent);
}

.proof-label {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 2px;
}

/* ═══ SECTIONS COMMON ═══ */
section {
  padding: 80px 0;
}

/* ═══ ANIMATIONS & REVEALS ═══ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  z-index: 2000;
  transition: width 0.1s ease-out;
}

body.loading {
  overflow: hidden;
}

body.loading::before {
  content: "";
  position: fixed;
  inset: 0;
  background: #081118;
  z-index: 9999;
  transition: opacity 0.8s ease;
}

body.loaded::before {
  opacity: 0;
  pointer-events: none;
}

.reveal, .reveal-up, .reveal-down, .reveal-left, .reveal-right, .reveal-zoom {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal, .reveal-up { transform: translateY(40px); }
.reveal-down { transform: translateY(-40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-zoom { transform: scale(0.9); }

.reveal.active, .reveal-up.active, .reveal-down.active, .reveal-left.active, .reveal-right.active, .reveal-zoom.active {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.pulse-on-hover {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pulse-on-hover:hover {
  transform: scale(1.1) rotate(5deg);
}

.hero-decoration {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 15vw;
  height: 15vw;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(40px);
}

.hero-decoration-2 {
  top: 60%;
  left: 80%;
  width: 25vw;
  height: 25vw;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}

/* ═══ UTILITIES ═══ */
.parallax-element {
  will-change: transform;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(var(--accent-rgb), 0.15);
  color: var(--accent-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  transition: all 0.3s;
}

.section-badge:hover {
  background: var(--accent);
  color: var(--primary);
  transform: scale(1.05);
}

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

/* ═══ SERVICES OVERVIEW ═══ */
.services {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.services-bg-video {
  position: absolute;
  top: 50%;
  right: -2%;
  transform: translateY(-50%);
  width: 460px;
  height: auto;
  opacity: 0.55;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  opacity: 0;
  transition: opacity 0.3s;
}

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

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

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(var(--accent-rgb), 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background: var(--accent);
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ═══ SERVICE DETAILS ═══ */
#detalhes {
  background: var(--cream);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.detail-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.detail-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.08);
  transform: translate(-30%, 30%);
  transition: all 0.4s;
}

.detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.detail-card:hover::after {
  width: 120px;
  height: 120px;
  background: rgba(var(--accent-rgb), 0.12);
}

.detail-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(var(--accent-rgb), 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.detail-card h3 {
  font-size: 1.1rem;
}

.detail-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}

.detail-list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.detail-list li {
  font-size: 0.88rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.detail-list li::before {
  content: "✓";
  color: var(--accent-dark);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ═══ DIFFERENTIALS ═══ */
.diff {
  background: var(--white);
}

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

.diff-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--cream);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(45, 62, 78, 0.06);
  transition: all 0.4s;
}

.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.diff-emoji {
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.diff-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.diff-card p {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* ═══ REVIEWS ═══ */
.reviews {
  background: var(--cream);
}

.reviews-carousel {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
  min-width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.review-inner {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 2px 12px rgba(45, 62, 78, 0.06);
  text-align: center;
  border: 1px solid rgba(var(--accent-rgb), 0.15);
}

.review-stars {
  color: var(--accent-dark);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.review-text {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--text);
}

.review-author {
  font-weight: 700;
  color: var(--primary);
  font-family: "Outfit", sans-serif;
}

.review-badge {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
}

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

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot.active {
  background: var(--primary);
  transform: scale(1.15);
}

.reviews-cta {
  text-align: center;
}

/* ═══ LOCATION ═══ */
.location {
  background: var(--white);
}

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

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.hours-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.hours-card h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.15);
  font-size: 0.95rem;
}

.hour-row:last-child {
  border: none;
}

.hour-row.today {
  color: var(--primary);
  font-weight: 700;
  background: rgba(var(--accent-rgb), 0.08);
  margin: 0 -12px;
  padding: 10px 12px;
  border-radius: 8px;
}

.hour-row .closed {
  color: #c0392b;
  font-weight: 600;
}

.location-address {
  margin-top: 24px;
  padding: 20px;
  background: var(--cream);
  border-radius: 12px;
}

.location-address p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.location-address p:last-child {
  margin-bottom: 0;
}

/* ═══ CTA FINAL ═══ */
.cta-final {
  background: linear-gradient(160deg,
      var(--dark),
      var(--primary),
      #3a5568);
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.08);
  filter: blur(60px);
}

.cta-final h2 {
  color: #fff;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-final p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.cta-final .hero-ctas {
  position: relative;
  z-index: 1;
  justify-content: center;
}

.cta-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  position: relative;
  z-index: 1;
}

/* ═══ FOOTER ═══ */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0 20px;
  text-align: center;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.1);
}

footer hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 16px 0;
}

footer small {
  font-size: 0.8rem;
}

/* ═══ WHATSAPP FLOAT ═══ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  animation: pulse 2s infinite;
  text-decoration: none;
}

.wa-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

@keyframes pulse {

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

  50% {
    box-shadow: 0 4px 36px rgba(37, 211, 102, 0.7);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }

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

/* ═══ MOBILE ═══ */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    padding: 80px 32px 32px;
    transition: right 0.4s;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-bg-video {
    display: none;
  }

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

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

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

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

  .hero {
    height: 260vh;
  }

  .hero-content {
    grid-template-columns: 1fr;
    align-items: end;
    gap: 24px;
    padding-top: 120px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-logo {
    width: 180px;
  }

  .hero-panel {
    padding: 20px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 9vw, 4rem);
  }
}

@media (max-width: 480px) {
  .hero {
    height: 230vh;
  }

  .hero-content {
    padding-top: 104px;
    padding-bottom: 28px;
  }

  .hero-kicker {
    margin-bottom: 18px;
    font-size: 0.72rem;
    padding: 8px 12px;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .hero-sub {
    font-size: 0.98rem;
  }

  .hero-tags {
    gap: 8px;
    margin-bottom: 24px;
  }

  .hero-tag {
    font-size: 0.78rem;
    padding: 8px 14px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

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

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