/* ============================================
   LAVANDERIA DOM BOSCO - 2026 Modern Website
   Animations: Scroll-driven, stagger, parallax
   ============================================ */

:root {
  --primary: #0c1d3f;
  --primary-mid: #152d5e;
  --primary-light: #1e3f7d;
  --accent: #3b82f6;
  --accent-light: #60a5fa;
  --accent-glow: rgba(59, 130, 246, 0.4);
  --secondary: #06b6d4;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.4s var(--ease-out-expo);
  --transition-fast: 0.2s var(--ease-out-expo);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-700);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

body.loading {
  overflow: hidden;
}

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

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

:focus:not(:focus-visible) {
  outline: none;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.header:not(.scrolled) .nav-link:focus-visible {
  outline-color: rgba(147, 197, 253, 0.95);
}

/* ============================================
   LOADER
   ============================================ */

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 24px;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.7; }
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  margin: 0 auto 16px;
  overflow: hidden;
}

.loader-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  border-radius: 4px;
  animation: loaderFill 1.5s var(--ease-out-expo) forwards;
}

@keyframes loaderFill {
  to { width: 100%; }
}

.loader-text {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============================================
   CURSOR GLOW (desktop only)
   ============================================ */

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

@media (hover: hover) {
  .cursor-glow { opacity: 1; }
}

/* ============================================
   SCROLL PROGRESS
   ============================================ */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  z-index: 1001;
  width: 0%;
  transition: none;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 60px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.2px;
}

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

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-light), var(--secondary));
  opacity: 0;
  transition: opacity 0.4s;
}

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px var(--accent-glow);
}

.btn-primary span,
.btn-primary i {
  position: relative;
  z-index: 1;
}

.btn-arrow {
  transition: transform 0.4s var(--ease-spring);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-glass {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-3px);
}

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

.btn-icon-send {
  transition: transform 0.4s var(--ease-spring);
}

.btn:hover .btn-icon-send {
  transform: translate(4px, -4px);
}

/* ============================================
   HEADER
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.5s var(--ease-out-expo);
  background: transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 10px 0;
  box-shadow: 0 1px 30px rgba(0,0,0,0.06);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
  min-width: 0;
  flex-shrink: 1;
}

.logo-icon-wrap {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 10px;
  transition: var(--transition);
}

.logo-img {
  display: block;
  height: 34px;
  width: auto;
  max-width: 132px;
  object-fit: contain;
  object-position: left center;
  transition: filter var(--transition), transform var(--transition);
}

.header:not(.scrolled) .logo-img {
  filter: brightness(0) invert(1) drop-shadow(0 2px 12px rgba(0, 0, 0, 0.25));
}

.header.scrolled .logo-img {
  filter: none;
}

.logo-icon {
  font-size: 1.2rem;
  color: var(--accent-light);
  transition: var(--transition);
}

.header:not(.scrolled) .logo-icon-wrap {
  background: rgba(255,255,255,0.08);
}

.header.scrolled .logo-icon {
  color: var(--accent);
}

.footer .logo-img--footer {
  filter: brightness(0) invert(1);
  opacity: 0.92;
  max-width: 150px;
  height: 36px;
}

.logo:hover .logo-icon-wrap {
  transform: rotate(-8deg) scale(1.05);
}

.logo-name {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.1;
  transition: var(--transition);
}

.header.scrolled .logo-name {
  color: var(--primary);
}

.logo-tagline {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: var(--transition);
}

.header.scrolled .logo-tagline {
  color: var(--gray-400);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  position: relative;
}

.nav-link {
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-radius: 10px;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out-expo);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 20px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.header.scrolled .nav-link {
  color: var(--gray-500);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 3px;
  transition: all 0.4s var(--ease-spring);
  transform-origin: center;
}

.header.scrolled .menu-toggle span {
  background: var(--gray-700);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #050d1f 0%, var(--primary) 30%, var(--primary-mid) 60%, var(--primary-light) 100%);
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 85%, rgba(59, 130, 246, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 85% 15%, rgba(6, 182, 212, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
  animation: meshFloat 20s ease-in-out infinite alternate;
}

@keyframes meshFloat {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.05) translate(-10px, 10px); }
  100% { transform: scale(1) translate(10px, -10px); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  animation: particleFloat var(--duration) var(--delay) ease-in-out infinite alternate;
}

@keyframes particleFloat {
  0% { transform: translate(0, 0) scale(1); opacity: 0.2; }
  100% { transform: translate(var(--tx), var(--ty)) scale(0.5); opacity: 0.6; }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: orbFloat 12s ease-in-out infinite alternate;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--accent);
  top: -20%;
  right: -10%;
  animation-duration: 14s;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--secondary);
  bottom: -15%;
  left: -8%;
  animation-duration: 18s;
  animation-delay: -4s;
}

.hero-orb-3 {
  width: 200px;
  height: 200px;
  background: #8b5cf6;
  top: 40%;
  left: 40%;
  animation-duration: 10s;
  animation-delay: -2s;
  opacity: 0.15;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
  100% { transform: translate(15px, -15px) scale(1.02); }
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top, var(--gray-50), transparent);
  z-index: 1;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  padding: 120px 24px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0;
  max-width: 640px;
}

.hero-media {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.hero-media-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  background: rgba(255, 255, 255, 0.04);
}

.hero-media-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

@media (min-width: 1024px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
    gap: 56px;
    padding: 130px 24px 110px;
    align-items: center;
  }

  .hero-content {
    max-width: 560px;
  }

  .hero-media {
    max-width: none;
    margin: 0;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

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

.hero-brand {
  margin-bottom: 20px;
}

.hero-brand-label {
  display: block;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 6px;
  text-transform: uppercase;
}

.hero-brand-name {
  display: block;
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -2px;
}

.hero-brand-since {
  display: block;
  margin-top: 12px;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: 0;
}

.title-line {
  display: block;
}

.highlight {
  background: linear-gradient(135deg, var(--accent-light), var(--secondary), var(--accent-light));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-shimmer {
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 560px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat {
  text-align: left;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1px;
  display: inline;
  font-variant-numeric: tabular-nums;
}

.stat-plus {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-light);
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
  margin-top: 4px;
}

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

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 1s 1.5s both;
}

.hero-scroll-indicator span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 3px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ============================================
   SECTIONS (Common)
   ============================================ */

.section {
  padding: 110px 0;
  position: relative;
}

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

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(59, 130, 246, 0.06);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.section-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  border-radius: 4px;
  margin: 0 auto 20px;
}

.section-desc {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================
   CARD SHINE EFFECT
   ============================================ */

.card-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
}

.card-shine::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.08), transparent 30%);
  opacity: 0;
  transition: opacity 0.5s;
}

[data-tilt]:hover .card-shine::before,
.highlight-card:hover .card-shine::before,
.loja-card:hover .card-shine::before,
.servico-visual-card:hover .card-shine::before {
  opacity: 1;
  animation: cardSpin 4s linear infinite;
}

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

/* ============================================
   SOBRE
   ============================================ */

.sobre {
  background: var(--gray-50);
}

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

.sobre-content {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}

.sobre-highlights {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  min-width: 0;
}

.sobre-content p {
  margin-bottom: 20px;
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.9;
}

.sobre-content strong {
  color: var(--primary);
  font-weight: 700;
}

.highlight-card {
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: rgba(59, 130, 246, 0.15);
}

.highlight-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(6, 182, 212, 0.08));
  border-radius: 12px;
  margin-bottom: 16px;
  font-size: 1.15rem;
  color: var(--accent);
  transition: var(--transition);
}

.highlight-card:hover .highlight-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: var(--white);
}

.highlight-card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.highlight-card p {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ============================================
   SERVIÇOS
   ============================================ */

.servicos {
  background: var(--white);
}

.servicos-visuals {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.servico-visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: all 0.5s var(--ease-out-expo);
}

.servico-visual-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
}

.servico-visual-img-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gray-100);
  line-height: 0;
}

.servico-visual-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease-out-expo);
}

.servico-visual-card:hover .servico-visual-img-wrap img {
  transform: scale(1.04);
}

.servico-visual-body {
  padding: 22px 26px 26px;
}

.servico-visual-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.servico-visual-body p {
  font-size: 0.86rem;
  color: var(--gray-500);
  line-height: 1.65;
}

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

.servico-card {
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.servico-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}

.servico-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  border-color: transparent;
}

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

.servico-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 14px;
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: var(--white);
  transition: all 0.5s var(--ease-spring);
}

.servico-card:hover .servico-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  box-shadow: 0 8px 25px var(--accent-glow);
}

.servico-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 10px;
}

.servico-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================
   DICAS
   ============================================ */

.dicas {
  background: var(--gray-50);
}

.dicas-intro {
  max-width: 640px;
  margin: 0 auto 40px;
  padding: 24px 28px;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.dicas-intro-title {
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.dicas-intro-text {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin: 0;
}

.dicas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.dica-card {
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.dica-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}

.dica-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  border-color: rgba(59, 130, 246, 0.15);
}

.dica-card:hover::after {
  transform: scaleX(1);
}

.dica-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
  transition: var(--transition);
}

.dica-card:hover .dica-number {
  transform: scale(1.1);
}

.dica-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 10px;
}

.dica-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.dicas-cta {
  text-align: center;
  padding: 40px 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.8;
  position: relative;
  overflow: hidden;
}

.cta-bg-animation {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
  animation: ctaPulse 6s ease-in-out infinite alternate;
}

@keyframes ctaPulse {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}

.dicas-cta p {
  position: relative;
  z-index: 1;
}

.dicas-cta strong {
  color: var(--white);
}

/* ============================================
   LOJAS
   ============================================ */

.lojas {
  background: var(--white);
}

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

.loja-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
}

.loja-photo-link {
  display: block;
  overflow: hidden;
  background: var(--gray-100);
  line-height: 0;
  position: relative;
}

.loja-photo-link::after {
  content: 'Ver no mapa';
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 6px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  background: rgba(12, 29, 63, 0.85);
  border-radius: 6px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s var(--ease-out-expo);
  pointer-events: none;
}

.loja-photo-link:hover::after,
.loja-photo-link:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.loja-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s var(--ease-out-expo);
}

.loja-photo-link:hover .loja-photo,
.loja-photo-link:focus-visible .loja-photo {
  transform: scale(1.05);
}

.loja-photo-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  z-index: 2;
}

.loja-maps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 12px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.28);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.loja-maps-btn:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.loja-maps-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.loja-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
  border-color: transparent;
}

.loja-header {
  padding: 28px 28px 22px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.loja-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.loja-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}

.loja-card:hover .loja-icon {
  transform: rotate(-5deg) scale(1.1);
}

.loja-badge {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  position: relative;
}

.loja-body {
  padding: 24px 28px 28px;
}

.loja-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.loja-info:last-child {
  margin-bottom: 0;
}

.loja-info > i {
  color: var(--accent);
  font-size: 0.85rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.loja-info p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.loja-info a {
  color: var(--accent);
  font-weight: 600;
}

.loja-info a:hover {
  color: var(--primary);
}

/* ============================================
   CONTATO
   ============================================ */

.contato {
  background: var(--gray-50);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.contato-form {
  background: var(--white);
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 30px rgba(0,0,0,0.04);
  border: 1px solid var(--gray-100);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--gray-700);
  background: var(--gray-50);
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.08);
}

.input-focus-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out-expo);
}

.form-group input:focus ~ .input-focus-line,
.form-group textarea:focus ~ .input-focus-line {
  transform: scaleX(1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contato-info {
  display: grid;
  gap: 18px;
}

.info-card {
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: all 0.5s var(--ease-out-expo);
}

.info-card:hover {
  border-color: rgba(59, 130, 246, 0.15);
  transform: translateX(6px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.info-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(6, 182, 212, 0.08));
  border-radius: 12px;
  margin-bottom: 14px;
  font-size: 1.05rem;
  color: var(--accent);
  transition: var(--transition);
}

.info-card:hover .info-icon {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: var(--white);
  transform: rotate(-5deg);
}

.info-card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.info-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.info-card a {
  color: var(--accent);
  font-weight: 500;
  transition: var(--transition);
}

.info-card a:hover {
  color: var(--primary);
}

/* ============================================
   WHATSAPP
   ============================================ */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  font-size: 1.6rem;
  z-index: 999;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transition: all 0.4s var(--ease-spring);
  opacity: 0;
  transform: scale(0) translateY(20px);
}

.whatsapp-float.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.45);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--gray-800);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--gray-800);
  border-right: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   BACK TO TOP
   ============================================ */

.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 96px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--accent);
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 999;
  transition: all 0.4s var(--ease-spring);
  opacity: 0;
  transform: scale(0);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.back-to-top.visible {
  opacity: 1;
  transform: scale(1);
}

.back-to-top:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: scale(1.1) translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--gray-900);
  padding: 80px 0 0;
}

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

.footer-brand p {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.8;
}

.footer .logo-name {
  color: var(--white);
}

.footer .logo-tagline {
  color: var(--gray-500);
}

.footer .logo-icon {
  color: var(--accent-light);
}

.footer .logo-icon-wrap {
  background: rgba(59, 130, 246, 0.12);
}

.footer h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links a,
.footer-services a {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-400);
  padding: 6px 0;
  transition: var(--transition);
  position: relative;
}

.footer-links a::before,
.footer-services a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 1px;
  background: var(--accent-light);
  transition: width 0.3s var(--ease-out-expo);
}

.footer-links a:hover,
.footer-services a:hover {
  color: var(--accent-light);
  padding-left: 0;
}

.footer-links a:hover::before,
.footer-services a:hover::before {
  width: 100%;
}

.footer-contact p {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.footer-contact i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}

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

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.footer-bottom strong {
  color: var(--gray-300);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

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

.scroll-reveal.stagger {
  transition-delay: calc(var(--stagger-index, 0) * 80ms);
}

/* Hero reveal-up */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

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

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

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sobre-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .servicos-visuals {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(12, 29, 63, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out-expo);
  }

  .nav.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8) !important;
    padding: 14px 36px;
    opacity: 0;
    transform: translateY(20px);
  }

  .nav.active .nav-link {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo);
  }

  .nav.active .nav-link:nth-child(1) { transition-delay: 0.05s; }
  .nav.active .nav-link:nth-child(2) { transition-delay: 0.1s; }
  .nav.active .nav-link:nth-child(3) { transition-delay: 0.15s; }
  .nav.active .nav-link:nth-child(4) { transition-delay: 0.2s; }
  .nav.active .nav-link:nth-child(5) { transition-delay: 0.25s; }
  .nav.active .nav-link:nth-child(6) { transition-delay: 0.3s; }

  .nav-link:hover,
  .nav-link.active {
    color: var(--white) !important;
  }

  .nav-link::after {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span {
    background: var(--white) !important;
  }

  .hero-layout {
    padding: 120px 24px 80px;
    text-align: center;
    gap: 28px;
  }

  .hero-content {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-media {
    max-width: min(320px, 88vw);
  }

  .hero-media-img {
    max-height: min(52vh, 420px);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 4;
  }

  .hero-brand {
    margin-bottom: 16px;
  }

  .hero-brand-name {
    font-size: 3.8rem;
    letter-spacing: -1px;
  }

  .hero-brand-label {
    font-size: 0.9rem;
    letter-spacing: 5px;
  }

  .hero-brand-since {
    margin-top: 10px;
    font-size: 0.85rem;
    letter-spacing: 0.25em;
  }

  .hero-title {
    font-size: 1.15rem;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-divider {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    margin-bottom: 40px;
  }

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

  .hero-scroll-indicator {
    display: none;
  }

  .section {
    padding: 80px 0;
  }

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

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

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

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

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

  .contato-form {
    padding: 28px;
  }

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

  .sobre-highlights {
    grid-template-columns: 1fr;
  }

  .dicas-cta {
    padding: 28px 24px;
    font-size: 0.9rem;
  }

  .cursor-glow {
    display: none;
  }

  .back-to-top {
    right: 28px;
    bottom: 96px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

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

  .hero-brand-name {
    font-size: 3rem;
  }

  .hero-brand-label {
    font-size: 0.8rem;
    letter-spacing: 4px;
  }

  .hero-brand-since {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    margin-top: 8px;
  }

  .hero-title {
    font-size: 1.05rem;
  }

  .hero-layout {
    padding: 110px 16px 48px;
    text-align: center;
    gap: 22px;
  }

  .hero-content {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-media {
    max-width: min(280px, 85vw);
  }

  .hero-media-img {
    max-height: min(48vh, 380px);
  }

  .logo-img {
    height: 28px;
    max-width: 108px;
  }

  .logo-name {
    font-size: 0.95rem;
    letter-spacing: 0.3px;
  }

  .logo-icon-wrap {
    min-width: 36px;
    height: 36px;
    padding: 0 2px;
  }

  .dicas-intro {
    padding: 20px 18px;
    margin-bottom: 32px;
  }

  .servico-visual-body {
    padding: 18px 20px 22px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .hero-stats {
    gap: 16px;
  }

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

  .stat-label {
    font-size: 0.7rem;
  }

  .servico-card,
  .dica-card {
    padding: 24px 20px;
  }

  .loja-photo {
    height: 180px;
  }

  .loja-photo-link::after {
    opacity: 1;
    transform: translateY(0);
  }

  .loja-body {
    padding: 20px 20px 24px;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
    bottom: 20px;
    right: 20px;
  }

  .back-to-top {
    right: 20px;
    bottom: 82px;
    width: 40px;
    height: 40px;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */

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

  .scroll-reveal,
  .reveal-up {
    opacity: 1 !important;
    transform: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}
