/* ===================================================
   AUTO SOCORRO ANÍBAL – style.css
   Premium Tow Truck Website
=================================================== */

/* ---------- CSS TOKENS ---------- */
:root {
  --yellow: #FFD000;
  --yellow-dark: #CCB000;
  --yellow-light: #FFE066;
  --dark: #0D0D0D;
  --dark2: #141414;
  --dark3: #1E1E1E;
  --dark4: #2A2A2A;
  --gray: #F2F2F2;
  --gray2: #E5E5E5;
  --text: #111111;
  --text-muted: #444444;
  --text-light: #CCCCCC;
  --white: #FFFFFF;
  --whatsapp: #25D366;
  --whatsapp-dark: #1ebe5d;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.18);
  --transition: 0.3s cubic-bezier(.4, 0, .2, 1);
  --font-main: 'Montserrat', sans-serif;
  --font-heading: 'Oswald', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 17px;
}

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-gray {
  background: var(--gray);
}

/* ---------- SECTION HEADERS ---------- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.section-header.light h2 {
  color: var(--white);
}

.section-header.light p {
  color: rgba(255, 255, 255, 0.65);
}

.section-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--yellow);
  color: var(--dark);
}

.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 197, 24, 0.35);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
  border-width: 2px;
  display: inline-flex;
}

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

.btn-white {
  background: var(--white);
  color: var(--dark);
}

.btn-white:hover {
  background: var(--yellow);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 197, 24, 0.25);
}

.pulse-btn {
  animation: pulse 2.4s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(245, 197, 24, 0.5);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(245, 197, 24, 0);
  }
}

/* ---------- HEADER ---------- */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: var(--transition);
}

#header.scrolled {
  background: rgba(13, 13, 13, 0.98);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.brand-logo {
  height: 48px;
  width: auto;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.logo-icon {
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
}

.logo-icon svg {
  width: 34px;
  height: 34px;
  transform: rotate(-35deg);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  gap: 6px;
  align-items: flex-start;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.logo-sub {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: -4px;
}

#nav-menu {
  margin-left: auto;
}

#nav-menu ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

#nav-menu a {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}

#nav-menu a:hover {
  color: var(--yellow);
  background: rgba(245, 197, 24, 0.1);
}

#header-cta {
  font-size: 0.9rem;
  padding: 10px 18px;
}

#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

#hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

#hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#hamburger.open span:nth-child(2) {
  opacity: 0;
}

#hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- HERO ---------- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.55) 50%,
      rgba(245, 197, 24, 0.12) 100%);
}

.hero-badge {
  position: absolute;
  top: 110px;
  right: 32px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--whatsapp);
  animation: blink 1.4s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  padding-top: 40px;
  padding-bottom: 80px;
}

.hero-logo {
  max-width: 260px;
  height: auto;
  margin-bottom: 24px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.hero-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 24px;
  transition: color 0.2s;
}

.hero-instagram:hover {
  color: var(--yellow);
}

.mobile-only {
  display: none !important;
}

.hero-pre {
  font-size: 1rem;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
  text-transform: uppercase;
}

.highlight {
  color: var(--yellow);
}

.hero-desc {
  font-size: 1.25rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  width: fit-content;
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
}

.stat span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--yellow);
  border-radius: 2px;
  animation: scrollDown 1.8s infinite;
}

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

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

/* ---------- ANIMATION ---------- */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
}

.animate-in.visible {
  animation: fadeUp 0.7s forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.35s;
}

.delay-4 {
  animation-delay: 0.5s;
}

.delay-5 {
  animation-delay: 0.65s;
}

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

/* ---------- URGENCY BAR ---------- */
.urgency-bar {
  background: var(--yellow);
  padding: 12px 0;
}

.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
}

.urgency-inner span {
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 500;
}

.urgency-icon {
  font-size: 1.2rem;
}

.urgency-phone {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.urgency-phone:hover {
  text-decoration: underline;
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--gray2);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card.featured {
  border-color: var(--yellow);
  background: linear-gradient(135deg, #FFFBEE, #fff);
}

.service-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

/* ---------- DIFERENCIAIS ---------- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 48px;
}

.diff-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--yellow);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 8px;
}

.diff-item h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.diff-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---------- GALLERY ---------- */
.gallery-grid,
.gallery-more-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.gallery-item.g-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(245, 197, 24, 0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gallery-overlay span {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--yellow);
  color: var(--dark);
  padding: 8px 20px;
  border-radius: 100px;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  background: rgba(0, 0, 0, 0.35);
}

.gallery-item:hover .gallery-overlay span {
  opacity: 1;
  transform: translateY(0);
}

.gallery-more-grid {
  margin-top: 12px;
}

.gallery-toggle-wrap {
  text-align: center;
  margin-top: 32px;
}

/* ---------- LIGHTBOX ---------- */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.96);
  align-items: center;
  justify-content: center;
}

#lightbox.open {
  display: flex;
}

#lightboxImg {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.8);
}

#lightboxClose {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 2.5rem;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

#lightboxClose:hover {
  color: var(--yellow);
}

#lightboxPrev,
#lightboxNext {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  font-size: 2rem;
  padding: 16px 20px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: var(--transition);
}

#lightboxPrev {
  left: 24px;
}

#lightboxNext {
  right: 24px;
}

#lightboxPrev:hover,
#lightboxNext:hover {
  background: var(--yellow);
  color: var(--dark);
}

/* ---------- CTA BANNER ---------- */
#cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1700 50%, #1E1C00 100%);
  padding: 64px 0;
  border-top: 3px solid var(--yellow);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 10px;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ---------- SOBRE ---------- */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.sobre-img-wrap {
  position: relative;
}

.sobre-img-wrap img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.sobre-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--yellow);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
}

.sobre-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}

.sobre-badge span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.sobre-content {
  padding: 0 12px;
}

.sobre-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--dark);
  margin: 12px 0 20px;
}

.sobre-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.sobre-info {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.info-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-row div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.info-row strong {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}

.info-row span,
.info-row a {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.info-row a:hover {
  color: var(--yellow-dark);
  text-decoration: underline;
}

/* ---------- MAP ---------- */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-wrap iframe {
  display: block;
}

.map-cta {
  padding: 20px;
  background: var(--white);
  text-align: center;
  border-top: 1px solid var(--gray2);
}

/* ---------- FOOTER ---------- */
#footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.footer-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
  transition: color 0.2s;
}

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

.footer-services ul li {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}

.footer-contact p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact a:hover {
  color: var(--yellow);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.8;
}

/* ---------- FLOATING WHATSAPP ---------- */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  animation: floatPulse 2.4s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.12);
  background: var(--whatsapp-dark);
}

@keyframes floatPulse {

  0%,
  100% {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5)
  }

  50% {
    box-shadow: 0 8px 48px rgba(37, 211, 102, 0.8)
  }
}

.floating-tooltip {
  position: absolute;
  right: 70px;
  white-space: nowrap;
  background: var(--dark);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.floating-whatsapp:hover .floating-tooltip {
  opacity: 1;
}

/* ---------- MOBILE FIXED CTA BAR ---------- */
.mobile-fixed-cta {
  display: none;
  /* shown only on mobile via media query */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  flex-direction: row;
  align-items: stretch;
  height: 62px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mfc-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  text-decoration: none;
  transition: filter 0.2s;
}

.mfc-btn:active {
  filter: brightness(0.88);
}

.mfc-whatsapp {
  background: var(--whatsapp);
}

.mfc-call {
  background: var(--yellow);
  color: var(--dark);
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

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

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

  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sobre-img-wrap img {
    height: 400px;
  }

  .sobre-badge {
    bottom: -16px;
    right: 16px;
  }
}

@media (max-width: 768px) {
  .mobile-fixed-cta {
    display: flex;
  }

  .mobile-only {
    display: flex !important;
  }

  .floating-whatsapp {
    display: none;
  }

  body {
    padding-bottom: 62px;
  }

  #nav-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 24px;
    flex-direction: column;
  }

  #nav-menu.open {
    display: flex;
  }

  #nav-menu ul {
    flex-direction: column;
    gap: 0;
  }

  #nav-menu a {
    display: block;
    padding: 14px 12px;
    border-radius: 6px;
    font-size: 1.05rem;
  }

  #header-cta {
    display: none;
  }

  #hamburger {
    display: flex;
  }

  .nav-container {
    gap: 0;
  }

  .hero-badge {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin: 10px auto 24px;
    width: fit-content;
    max-width: 90vw;
    font-size: 0.75rem;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }

  .hero-content {
    padding-top: 0px;
    text-align: center;
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-logo {
    margin-left: auto;
    margin-right: auto;
    max-width: 330px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    word-break: normal;
    hyphens: none;
  }

  .hero-desc {
    font-size: 1.1rem;
  }

  .hero-stats {
    gap: 16px;
    padding: 14px 18px;
    margin: 0 auto;
  }

  .stat strong {
    font-size: 1.5rem;
  }

  .stat span {
    font-size: 0.72rem;
  }

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

  .diff-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
  }

  .gallery-grid,
  .gallery-more-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-item.g-large {
    grid-column: span 2;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

  .sobre-content {
    padding: 0;
  }

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

  .footer-services,
  .footer-links {
    display: none;
  }

  #lightboxPrev {
    left: 8px;
    padding: 10px 14px;
  }

  #lightboxNext {
    right: 8px;
    padding: 10px 14px;
  }
}

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

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

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    text-align: center;
  }

  .stat-divider {
    width: 60%;
    height: 1px;
  }

  .sobre-img-wrap img {
    height: 280px;
  }

  .sobre-badge {
    bottom: -12px;
    right: 12px;
    padding: 14px 18px;
  }

  .sobre-badge strong {
    font-size: 1.8rem;
  }
}