/**
 * TEMA DO TEMPLATE MASTER
 * =======================
 * Altere as cores abaixo para customizar a identidade visual.
 * Todas as cores do site referenciam estas variáveis.
 *
 * Dica de paletas:
 * - Advogado: --primary: #1e3a5f (azul marinho), --accent: #c9a84c (dourado)
 * - Eletricista: --primary: #0d9488 (teal), --accent: #f59e0b (ambar)
 * - Floricultura: --primary: #ec4899 (rosa), --accent: #84cc16 (verde)
 * - Alimentos: --primary: #dc2626 (vermelho), --accent: #fbbf24 (amarelo)
 * - Pedreiro: --primary: #ea580c (laranja), --accent: #1e40af (azul)
 */
:root {
  --primary: #0d9488;
  --primary-dark: #0f766e;
  --primary-light: #f0fdfa;
  --primary-rgb: 13, 148, 136;
  --accent: #f59e0b;
  --accent-rgb: 245, 158, 11;
  --text: #1f2937;
  --text-muted: #6b7280;
  --text-secondary: #6b7280;
  --bg-light: #f9fafb;
  --bg: #f3f4f6;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
  --shadow-premium: 0 4px 6px rgba(0,0,0,0.04), 0 10px 24px rgba(0,0,0,0.06);
  --shadow-premium-lg: 0 8px 16px rgba(0,0,0,0.06), 0 20px 48px rgba(0,0,0,0.08);
  --radius: 12px;
  --radius-lg: 16px;
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a, button, .btn, .service-card, .testimonial-card, .benefit-card, .faq-item, .contact-method, .service-item {
  transition: all 0.3s var(--transition-smooth);
}

*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

main {
  display: block;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s var(--transition-smooth);
}

ul {
  list-style: none;
}

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

.section {
  padding: 70px 0;
}

.section-header {
  margin-bottom: 45px;
  text-align: center;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto;
}

/* Badge — Shimmer Effect */
.badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}

.badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--transition-smooth);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::before {
  opacity: 1;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

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

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35), 0 0 40px rgba(37, 211, 102, 0.15);
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.3), 0 0 40px rgba(var(--primary-rgb), 0.1);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* =====================================================================
   SCROLL REVEAL — Global Keyframes
   ===================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--transition-smooth), transform 0.6s var(--transition-smooth);
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================================
   HEADER — Glassmorphism
   ===================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.35s var(--transition-smooth);
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
  max-width: 1150px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.35s var(--transition-smooth);
}

header.scrolled .header-inner {
  padding: 10px 20px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary);
}

.site-brand i {
  font-size: 1.4rem;
  transition: transform 0.3s var(--transition-smooth);
}

.site-brand:hover i {
  transform: rotate(15deg) scale(1.1);
}

nav {
  display: none;
  align-items: center;
  gap: 28px;
}

nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.25s var(--transition-smooth);
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s var(--transition-smooth);
}

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

nav a:hover, nav a.active {
  color: var(--primary);
}

nav .btn-whatsapp {
  padding: 10px 16px;
  font-size: 0.9rem;
}

nav .btn-whatsapp::after {
  display: none;
}

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

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

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

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

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

/* Desktop Dropdowns */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-dropdown-toggle i {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
}

/* Chevron roda quando dropdown está aberto (controlado por JS) */
.nav-dropdown.open .nav-dropdown-toggle i {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 1000;
  margin-top: 10px;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.97);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Dropdown abre via classe .open (adicionada por JS) */
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.nav-dropdown-menu a::after {
  display: none !important;
}

.nav-dropdown-menu a:hover {
  color: var(--primary) !important;
  background: rgba(var(--primary-rgb), 0.06);
  padding-left: 24px;
}

/* Body lock when off-canvas is active */
body.body-lock {
  overflow: hidden !important;
}

/* Off-canvas Overlay */
.offcanvas-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 1040;
}

.offcanvas-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Off-canvas Drawer */
.offcanvas-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 350px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1050;
}

.offcanvas-drawer.active {
  transform: translateX(0);
}

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--border);
}

.offcanvas-close {
  background: none;
  border: none;
  font-size: 1.35rem;
  color: var(--text);
  cursor: pointer;
  padding: 5px;
  transition: color 0.2s, transform 0.2s;
}

.offcanvas-close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.offcanvas-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 20px;
}

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

/* Wrapper do accordion — sem margens extras */
.offcanvas-accordion {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Estilos comuns a links simples e triggers de accordion */
.offcanvas-link,
.offcanvas-accordion-trigger {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 12px 16px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s var(--transition-smooth);
}

/* Links simples (Início, Sobre Nós, Contato): ícone + texto alinhados à esquerda */
.offcanvas-link {
  justify-content: flex-start;
  gap: 12px;
}

/* Triggers com dropdown: ícone+texto à esquerda, chevron à direita */
.offcanvas-accordion-trigger {
  justify-content: space-between;
  margin: 0; /* zera margem padrão do browser em <button> */
}

.offcanvas-link i,
.offcanvas-accordion-trigger span i {
  font-size: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
}

/* O span interno do trigger agrupa ícone + label */
.offcanvas-accordion-trigger > span {
  display: flex;
  align-items: center;
  gap: 12px;
}

.offcanvas-accordion-trigger > span .label {
  font-size: 1.05rem;
  font-weight: 600;
}

.offcanvas-link:hover,
.offcanvas-link.active,
.offcanvas-accordion-trigger:hover,
.offcanvas-accordion-trigger.active {
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.05);
}

/* Off-canvas Accordion Dropdowns */
.offcanvas-accordion-trigger .chevron {
  font-size: 0.8rem;
  transition: transform 0.3s var(--transition-smooth);
}

.offcanvas-accordion-trigger[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.offcanvas-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offcanvas-accordion-content a {
  padding: 8px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-left: 2px solid var(--border);
  transition: all 0.2s ease;
}

.offcanvas-accordion-content a:hover {
  color: var(--primary);
  border-left-color: var(--primary);
  padding-left: 20px;
}

/* Off-canvas Footer */
.offcanvas-footer {
  padding: 20px;
  border-top: 1px solid var(--border);
  background: rgba(248, 250, 252, 0.6);
}

.offcanvas-footer .btn-whatsapp {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 12px;
}

.offcanvas-contact-info {
  margin-bottom: 16px;
}

.offcanvas-contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.offcanvas-contact-info p i {
  color: var(--primary);
}

.offcanvas-socials {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.offcanvas-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all 0.25s var(--transition-smooth);
}

.offcanvas-socials a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

@media (min-width: 900px) {
  nav { display: flex; }
  .hamburger { display: none; }
}

/* =====================================================================
   HERO — Animated Gradient + Particles Canvas
   ===================================================================== */
.hero {
  padding-top: 110px;
  padding-bottom: 60px;
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--white) 60%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.06) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.04) 0%, transparent 70%);
  animation: heroGlow 10s ease-in-out infinite alternate-reverse;
  pointer-events: none;
}

@keyframes heroGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.15); }
}

/* Canvas for particles — injected by JS */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-inner {
  display: grid;
  gap: 40px;
  align-items: center;
  overflow: hidden;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 14px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
  position: relative;
}

.hero-badge .dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(var(--primary-rgb), 0.3);
  animation: dotRing 2s infinite;
}

@keyframes dotRing {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.5); opacity: 0; }
}

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

.hero h1 {
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.hero h1 span {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-icon {
  color: var(--primary);
}

.trust-text {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hero-image {
  position: relative;
}

.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium-lg);
  transition: transform 0.5s var(--transition-smooth);
}

.hero-img-wrap:hover {
  transform: translateY(-4px);
}

.hero-img-wrap img {
  width: 100%;
  height: auto;
}

/* Floating Stat Badges */
.hero-stat {
  position: absolute;
  background: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-premium);
  display: flex;
  align-items: center;
  gap: 10px;
  will-change: transform;
  transition: box-shadow 0.3s;
}

.hero-stat:hover {
  box-shadow: var(--shadow-premium-lg);
}

.hero-stat-1 {
  top: 15px;
  right: -15px;
  animation: floatUp 4s ease-in-out infinite;
}

.hero-stat-2 {
  bottom: 25px;
  left: -15px;
  animation: floatUp 5s ease-in-out 1s infinite;
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.stat-icon-green {
  background: #d1fae5;
  color: #059669;
}

.stat-icon-orange {
  background: #fef3c7;
  color: #d97706;
}

.stat-num {
  font-weight: 700;
  font-size: 0.95rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* =====================================================================
   SERVICES GRID
   ===================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-align: center;
  transition: all 0.35s var(--transition-smooth);
  overflow: hidden;
  word-wrap: break-word;
  contain: content;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.03), rgba(var(--accent-rgb), 0.03));
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: inherit;
}

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

.service-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.12), 0 0 0 1px rgba(var(--primary-rgb), 0.05);
  transform: translateY(-6px);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.4rem;
  color: var(--primary);
  transition: transform 0.35s var(--transition-smooth), background 0.35s;
}

.service-card:hover .service-icon {
  transform: scale(1.08) rotate(-3deg);
  background: rgba(var(--primary-rgb), 0.12);
}

.service-icon i {
  color: var(--primary);
}

.service-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

/* =====================================================================
   SERVICE PAGE
   ===================================================================== */
.service-hero {
  padding-top: 110px;
  padding-bottom: 50px;
  background: var(--primary-light);
}

.service-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.service-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 24px;
}

.service-hero-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.service-hero-grid-single {
  display: block;
}

.service-hero-content {
  min-width: 0;
}

.service-hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium-lg);
  background: #d9ebe9;
  aspect-ratio: 4 / 3;
  transition: transform 0.5s var(--transition-smooth);
}

.service-hero-media:hover {
  transform: translateY(-4px);
}

.service-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 992px) {
  .service-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
    gap: 36px;
  }
}

.service-content {
  padding: 50px 0;
  overflow: hidden;
}

.service-section {
  margin-bottom: 50px;
}

.service-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.service-section p {
  color: var(--text-muted);
  line-height: 1.7;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.service-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.service-feature i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 3px;
}

.service-feature span {
  font-size: 0.95rem;
  color: var(--text);
}

/* =====================================================================
   BENEFITS — Premium Cards
   ===================================================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border);
  contain: content;
  transition: all 0.35s var(--transition-smooth);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-premium-lg);
  border-color: rgba(var(--primary-rgb), 0.15);
}

.benefit-icon {
  width: 46px;
  height: 46px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.2rem;
  transition: transform 0.35s var(--transition-smooth);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.08) rotate(-3deg);
}

.benefit-icon i {
  color: var(--white);
}

.benefit-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.benefit-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* =====================================================================
   STEPS — Timeline Style
   ===================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  position: relative;
}

.step {
  text-align: center;
  padding: 20px;
  position: relative;
  transition: all 0.35s var(--transition-smooth);
}

.step:hover {
  transform: translateY(-4px);
}

.step-num {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 14px;
  position: relative;
  transition: transform 0.35s var(--transition-smooth), box-shadow 0.35s;
}

.step:hover .step-num {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.3);
}

.step-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* =====================================================================
   TESTIMONIALS — Premium Cards
   ===================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border);
  contain: content;
  transition: all 0.35s var(--transition-smooth);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 3.5rem;
  color: rgba(var(--primary-rgb), 0.08);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

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

.stars {
  color: var(--accent);
  font-size: 0.95rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

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

.author-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary-light), rgba(var(--primary-rgb), 0.15));
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.author-name {
  font-weight: 600;
  font-size: 0.93rem;
}

.author-city {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =====================================================================
   CTA BANNER — Animated Gradient
   ===================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--primary) 100%);
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
  padding: 55px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cta-banner .badge {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.cta-banner .badge::after {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 700;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.03rem;
  margin-bottom: 25px;
}

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

.cta-banner .btn-whatsapp:hover {
  background: #f0f0f0;
}

/* =====================================================================
   AREA
   ===================================================================== */
.area-inner {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .area-inner {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.84rem;
  font-weight: 500;
  transition: all 0.3s var(--transition-smooth);
}

.area-tag:hover {
  background: rgba(var(--primary-rgb), 0.12);
  transform: translateY(-2px);
}

.area-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium-lg);
}

.area-image-natural {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* =====================================================================
   FAQ — Smooth Accordion
   ===================================================================== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item.open {
  border-color: rgba(var(--primary-rgb), 0.3);
  box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.06);
}

.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s, color 0.3s;
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-item.open .faq-question {
  color: var(--primary);
}

.faq-question i {
  transition: transform 0.35s var(--transition-smooth);
  font-size: 0.85rem;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--transition-smooth);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 20px 16px;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =====================================================================
   FINAL CTA
   ===================================================================== */
.final-cta {
  background: var(--bg-light);
  padding: 65px 0;
  text-align: center;
  position: relative;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  border-radius: 2px;
}

.final-cta-inner {
  max-width: 580px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.final-cta h2 span {
  color: var(--primary);
}

.final-cta p {
  color: var(--text-muted);
  font-size: 1.03rem;
  margin-bottom: 25px;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.final-cta-checks {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* =====================================================================
   CONTACT PAGE
   ===================================================================== */
.contact-section {
  padding: 110px 0 50px;
  background: var(--primary-light);
}

.contact-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

.contact-info h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s var(--transition-smooth);
}

.contact-method:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.1);
  transform: translateX(4px);
}

.contact-method i {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.contact-method span {
  font-weight: 500;
}

.contact-method small {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.contact-form {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium-lg);
}

.contact-form h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 0.93rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s var(--transition-smooth), box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

/* =====================================================================
   ABOUT PAGE
   ===================================================================== */
.about-hero {
  padding: 110px 0 50px;
  background: var(--primary-light);
}

.about-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.about-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
}

.about-content {
  padding: 50px 0;
}

.about-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

.about-text h2 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.7;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat-box {
  background: var(--primary-light);
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.35s var(--transition-smooth);
}

.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.1);
}

.stat-box .stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.stat-box .stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* =====================================================================
   FOOTER — Premium Dark
   ===================================================================== */
footer {
  background: var(--text);
  color: var(--white);
  padding: 50px 0 20px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-grid {
  display: grid;
  gap: 30px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 35px;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.footer-logo i {
  color: var(--primary);
}

.footer-brand p {
  color: #9ca3af;
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9ca3af;
  font-size: 0.9rem;
  transition: color 0.25s, transform 0.25s;
}

.footer-contact a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--white);
}

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

.footer-col a, .footer-col li {
  color: #9ca3af;
  font-size: 0.9rem;
}

.footer-col a {
  transition: color 0.25s, padding-left 0.25s;
}

.footer-col a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  color: #9ca3af;
  font-size: 0.84rem;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: #374151;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: all 0.3s var(--transition-smooth);
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}

/* =====================================================================
   WHATSAPP FLOAT — Pulse Ring
   ===================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: max(20px, env(safe-area-inset-bottom));
  right: max(20px, env(safe-area-inset-right));
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  z-index: 1200;
  transition: transform 0.3s var(--transition-smooth);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.3);
  animation: whatsappPulse 2.5s ease-out infinite;
  z-index: -1;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--text);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  line-height: 1.3;
  white-space: nowrap;
  max-width: min(220px, calc(100vw - 110px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px), (hover: none) {
  .whatsapp-float {
    width: 54px;
    height: 54px;
    font-size: 1.45rem;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

/* =====================================================================
   UTILITY CLASSES
   ===================================================================== */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }
.bg-light { background: var(--bg-light); }
.max-w-800 { max-width: 800px; }
.text-muted-sm { color: var(--text-muted); font-size: 0.9rem; }

.section-divider {
  height: 1px;
  background: var(--border);
  max-width: 1150px;
  margin: 0 auto;
}

/* =====================================================================
   PAGE TITLE
   ===================================================================== */
.page-title {
  padding: 120px 0 40px;
  background: var(--primary-light);
  text-align: center;
}

.page-title h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.page-title p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

.breadcrumb {
  display: block;
  width: 100%;
  padding: 12px 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.breadcrumb a {
  color: var(--primary);
  font-weight: 500;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 8px;
  color: var(--text-muted);
  font-weight: 400;
}

/* =====================================================================
   SERVICES LIST PAGE
   ===================================================================== */
.services-list {
  display: grid;
  gap: 20px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.35s var(--transition-smooth);
  overflow: hidden;
  flex-wrap: wrap;
}

.service-item:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.1);
  transform: translateX(4px);
}

.service-item-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.35s var(--transition-smooth);
}

.service-item:hover .service-item-icon {
  transform: scale(1.08);
}

.service-item-icon i {
  color: var(--primary);
}

.service-item-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.service-item-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.service-item-content {
  min-width: 0;
}

.service-item-link {
  margin-left: auto;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.3s;
}

.service-item:hover .service-item-link {
  transform: translateX(4px);
}

/* =====================================================================
   CTA SECTION IN PAGES
   ===================================================================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
  padding: 50px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 12px;
}

.cta-section p {
  opacity: 0.9;
  margin-bottom: 22px;
}

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

/* =====================================================================
   ERROR/NOT FOUND
   ===================================================================== */
.not-found {
  padding: 150px 0;
  text-align: center;
}

.not-found h1 {
  font-size: 6rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.not-found p {
  color: var(--text-muted);
  margin-bottom: 25px;
}

.not-found-code {
  font-size: 6rem;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 800;
}

.not-found-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--text);
}

.not-found-desc {
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.not-found-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.not-found-redirect {
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* =====================================================================
   REDUCED MOTION — Accessibility
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .hero-particles {
    display: none;
  }
}

/* =====================================================================
   PRINT STYLES
   ===================================================================== */
@media print {
  header, .offcanvas-drawer, .offcanvas-overlay, .whatsapp-float, footer, .cta-banner, .cta-section,
  .btn, .hero-actions, .final-cta-actions, .breadcrumb {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
    overflow: visible;
  }

  .hero, .service-hero, .about-hero, .contact-section, .page-title {
    padding-top: 0;
    background: none;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  img {
    max-width: 500px;
    page-break-inside: avoid;
  }

  h1, h2, h3 {
    page-break-after: avoid;
  }

  .service-card, .benefit-card, .testimonial-card {
    box-shadow: none;
    border: 1px solid #ccc;
    page-break-inside: avoid;
  }
}
