﻿/*======================================================
  TE ENCONTRÃ‰ - PREMIUM APP THEME (VANILLA CSS)
  Arquitectura: Glassmorphism / Dark Mode / Hiper-Responsivo
  Fuente: 'Outfit', sans-serif
======================================================*/

:root {
  /* Color Palette - Premium Light (Default) */
  --base: #F8FAFC;
  /* Light gray/blue background */
  --surface: rgba(255, 255, 255, 0.7);
  --surface-light: rgba(255, 255, 255, 1);
  --surface-border: rgba(0, 0, 0, 0.08);

  --primary: #2563EB;
  /* Electric Blue */
  --primary-glow: rgba(37, 99, 235, 0.3);

  --accent: #10B981;
  /* Emerald Green for Success/Action */
  --accent-glow: rgba(16, 185, 129, 0.3);

  --warning: #F59E0B;
  /* Star Rating / Alerts */
  --success: #10B981;

  /* Typography Colors */
  --text-main: #0F172A;
  --text-muted: #64748B;

  /* Utils */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);

  --font-main: 'Outfit', sans-serif;

  /* Theme variables */
  --shadow-color: rgba(0, 0, 0, 0.08);
  --nav-bg: rgba(255, 255, 255, 0.85);
  --phone-bg: linear-gradient(145deg, #1f2937, #030712);
  --phone-shadow: -20px 30px 60px rgba(0, 0, 0, 0.3), inset 0 0 15px rgba(255, 255, 255, 0.05);
  --phone-screen-shadow: inset 0 0 50px rgba(0, 0, 0, 0.05);
  --section-grad: rgba(241, 245, 249, 1);
  --bento-grad: radial-gradient(circle at top right, rgba(37, 99, 235, 0.1), transparent 50%), var(--surface);
  --quote-opacity: 0.1;
  --nav-link-hover: var(--text-main);
  --btn-secondary-hover: var(--surface-light);
  --step-border: var(--surface-border);
  --step-bg-hover: var(--surface-light);
  --btn-primary-border: rgba(0, 0, 0, 0.1);
  --bento-hover: rgba(0, 0, 0, 0.02);
}

@media (prefers-color-scheme: dark) {
  :root {
    /* Color Palette - Premium Dark */
    --base: #060913;
    /* Ultra dark blue/black background */
    --surface: rgba(255, 255, 255, 0.02);
    --surface-light: rgba(255, 255, 255, 0.05);
    --surface-border: rgba(255, 255, 255, 0.08);

    --primary: #3B82F6;
    /* Electric Blue */
    --primary-glow: rgba(59, 130, 246, 0.4);

    --accent: #10B981;
    /* Emerald Green for Success/Action */
    --accent-glow: rgba(16, 185, 129, 0.3);

    --text-main: #FFFFFF;
    --text-muted: #9CA3AF;

    /* Theme variables */
    --shadow-color: rgba(0, 0, 0, 0.5);
    --nav-bg: rgba(6, 9, 19, 0.8);
    --phone-bg: linear-gradient(145deg, #1f2937, #030712);
    --phone-shadow: -20px 30px 60px rgba(0, 0, 0, 0.6), inset 0 0 15px rgba(255, 255, 255, 0.1);
    --phone-screen-shadow: inset 0 0 50px rgba(0, 0, 0, 1);
    --section-grad: rgba(30, 41, 59, 0.3);
    --bento-grad: radial-gradient(circle at top right, rgba(59, 130, 246, 0.1), transparent 50%), var(--surface);
    --quote-opacity: 0.5;
    --nav-link-hover: #FFFFFF;
    --btn-secondary-hover: var(--surface-light);
    --step-border: var(--surface-border);
    --step-bg-hover: var(--surface-light);
    --btn-primary-border: rgba(255, 255, 255, 0.1);
    --bento-hover: rgba(255, 255, 255, 0.04);
  }
}

/*====== RESET & BASE ======*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: var(--font-main);
  background-color: var(--base);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
  /* Evitar scroll horizontal */
  scroll-behavior: smooth;
}

::selection {
  background: var(--primary);
  color: white;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--base);
}

::-webkit-scrollbar-thumb {
  background: var(--surface-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--surface-border);
}

/*====== UTILITY CLASSES ======*/
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.py-6 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.py-8 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.mb-1 {
  margin-bottom: 4px;
}

.mb-2 {
  margin-bottom: 12px;
}

.mb-3 {
  margin-bottom: 16px;
}

.mb-4 {
  margin-bottom: 24px;
}

.mb-5 {
  margin-bottom: 40px;
}

.mt-2 {
  margin-top: 12px;
}

.mt-3 {
  margin-top: 16px;
}

.mt-4 {
  margin-top: 24px;
}

.mt-6 {
  margin-top: 60px;
}

.gap-xs {
  gap: 4px;
}

.gap-sm {
  gap: 8px;
}

.gap-md {
  gap: 16px;
}

.gap-lg {
  gap: 24px;
}

.flex {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-center-y {
  display: flex;
  align-items: center;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.block {
  display: block;
}

.text-center {
  text-align: center;
}

.text-main {
  color: var(--text-main);
}

.text-muted {
  color: var(--text-muted);
}

.text-primary {
  color: var(--primary);
}

.text-accent {
  color: var(--accent);
}

.text-success {
  color: var(--success);
}

.text-warning {
  color: var(--warning);
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-md {
  font-size: 1.125rem;
}

.text-lg {
  font-size: 1.25rem;
}

.text-xl {
  font-size: 1.5rem;
}

.text-2xl {
  font-size: 1.8rem;
}

.text-3xl {
  font-size: 2.25rem;
}

.text-4xl {
  font-size: 3rem;
}

.font-bold {
  font-weight: 700;
}

.tracking-tight {
  letter-spacing: -0.02em;
}

.line-h-lg {
  line-height: 1.7;
}

.opacity-50 {
  opacity: var(--quote-opacity);
}

.max-w-sm {
  max-width: 384px;
}

.max-w-md {
  max-width: 448px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.bg-base {
  background: var(--base);
}

.bg-surface {
  background: var(--surface);
}

.bg-primary {
  background: var(--primary);
}

.bg-accent {
  background: var(--accent);
}

.bg-success {
  background: var(--success);
}

.bg-success-light {
  background: rgba(16, 185, 129, 0.15);
}

.border-light {
  border: 1px solid var(--surface-border);
}

.border-y-light {
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}

.border-t-light {
  border-top: 1px solid var(--surface-border);
}

.border-primary {
  border: 1px solid var(--primary-glow);
}

.border-accent {
  border: 1px solid var(--accent-glow);
}

.border-success {
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Gradients & Glows (The Magic) */
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-text {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.glow-success-text {
  text-shadow: 0 0 20px var(--accent-glow);
}

.glow-primary {
  box-shadow: 0 0 20px var(--primary-glow);
}

.glow-success {
  box-shadow: 0 0 20px var(--accent-glow);
}

/* Glassmorphism System */
.glass-panel {
  background: var(--surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px var(--shadow-color);
}

.glass-panel-inner {
  background: var(--surface-light);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: 12px;
}

/* Animations Core */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

/*====== GLOBALS & ELEMENTS ======*/
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button,
.btn {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #6366f1);
  color: white;
  border: 1px solid var(--btn-primary-border);
}

.btn-primary.btn-glow {
  box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px var(--primary-glow);
  filter: brightness(1.1);
}

.btn-secondary {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: var(--surface-light);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.hover-scale:hover {
  transform: scale(1.05);
}

.btn-micro {
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-micro:hover {
  transform: scale(1.05);
}

/* Badges */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
}

.badge-sm {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2s infinite;
}

.live-dot-sm {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Background Glowing Orbs */
.glow-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  animation: float 15s infinite ease-in-out alternate;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: #1e3a8a;
  top: -100px;
  left: -100px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: #064e3b;
  top: 30%;
  right: -100px;
  animation-delay: -5s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: #4c1d95;
  bottom: -50px;
  left: 40%;
  animation-delay: -10s;
  opacity: 0.3;
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, -50px);
  }
}

/*====== HEADER & NAV ======*/
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 24px;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  padding: 12px 24px;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--surface-border);
  box-shadow: 0 10px 30px var(--shadow-color);
}

.logo-container {
  gap: 12px;
}

.logo-img {
  width: 36px;
  height: auto;
  border-radius: 8px;
}

.brand h1 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand p {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: -2px;
}

.desktop-nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
}

.nav-link:hover {
  color: var(--nav-link-hover);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  font-size: 1.8rem;
  color: var(--text-main);
}

.mobile-nav {
  position: fixed;
  top: 70px;
  left: 16px;
  right: 16px;
  padding: 24px;
  z-index: 99;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-link-mobile {
  font-size: 1.1rem;
  border-bottom: 1px solid var(--surface-border);
  padding-bottom: 16px;
  font-weight: 500;
}

/*====== HERO SECTION ======*/
.hero-section {
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}

.hero-content {
  flex: 1;
  z-index: 10;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 480px;
}

.avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--base);
  margin-left: -12px;
}

.avatars img:first-child {
  margin-left: 0;
}

.avatar-more {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--base);
  background: var(--surface-light);
  margin-left: -12px;
  font-size: 0.8rem;
  font-weight: bold;
}

/* Hero Mockup (App Clone Visual) */
.hero-mockup {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  perspective: 1200px;
  z-index: 10;
}

.floating {
  animation: float-subtle 6s infinite ease-in-out alternate;
}

@keyframes float-subtle {
  0% {
    transform: translateY(0) rotateY(-15deg) rotateX(5deg);
  }

  100% {
    transform: translateY(-15px) rotateY(-15deg) rotateX(10deg);
  }
}

.phone-frame {
  width: 320px;
  height: 650px;
  border-radius: 40px;
  padding: 12px;
  position: relative;
  background: var(--phone-bg);
  box-shadow: var(--phone-shadow);
  transform: rotateY(-15deg) rotateX(5deg);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.phone-frame:hover {
  transform: rotateY(0) rotateX(0);
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 25px;
  background: #000;
  border-radius: 0 0 16px 16px;
  z-index: 5;
}

.phone-screen {
  border-radius: 28px;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 50px 20px 20px;
  overflow: hidden;
  border: 1px solid var(--surface-border);
  box-shadow: var(--phone-screen-shadow);
}

/* Dentro del App Mockup */
.profile-pic {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: url('https://i.pravatar.cc/100?img=60') center/cover;
}

.app-search {
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.search-pulse {
  position: absolute;
  right: 10px;
  width: 6px;
  height: 6px;
  background: var(--text-main);
  border-radius: 50%;
  animation: blink 1s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.typing-anim {
  border-right: 2px solid var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  animation: typing 3s steps(20, end) infinite;
}

@keyframes typing {
  0% {
    width: 0;
  }

  50% {
    width: 110px;
  }

  100% {
    width: 110px;
    opacity: 0;
  }
}

.app-radar {
  position: relative;
  height: 220px;
}

.user-center {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  z-index: 3;
  position: relative;
}

.radar-ring {
  position: absolute;
  border: 1px solid var(--primary-glow);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: radarRing 3s infinite linear;
}

.rr-1 {
  animation-delay: 0s;
}

.rr-2 {
  animation-delay: 1s;
}

.rr-3 {
  animation-delay: 2s;
}

@keyframes radarRing {
  0% {
    width: 40px;
    height: 40px;
    opacity: 1;
  }

  100% {
    width: 250px;
    height: 250px;
    opacity: 0;
  }
}

.provider-pin {
  position: absolute;
  width: 36px;
  height: 36px;
  background: var(--surface-light);
  border: 1px solid var(--surface-border);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  opacity: 0;
  animation: popIn 0.5s ease-out forwards;
}

.pin-1 {
  top: 30px;
  right: 30px;
  animation-delay: 3s;
  color: var(--warning);
  box-shadow: 0 0 15px var(--warning);
}

.pin-2 {
  bottom: 40px;
  left: 20px;
  animation-delay: 3.5s;
  color: var(--primary);
}

@keyframes popIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  70% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.app-match {
  position: absolute;
  bottom: 20px;
  left: 16px;
  right: 16px;
  padding: 16px;
  box-shadow: 0 -10px 30px var(--shadow-color);
  transform: translateY(150%);
  z-index: 10;
  opacity: 0;
}

.match-pop {
  animation: slideUpPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes slideUpPop {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.delay-4 {
  animation-delay: 4.5s;
}

.icon-sq {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.divider {
  border: 0;
  height: 1px;
  background: var(--surface-border);
}

.prov-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

/* External Badges */
.floating-badge {
  position: absolute;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  z-index: 20;
  box-shadow: 0 10px 25px var(--shadow-color);
}

.fb-left {
  top: 25%;
  left: -60px;
  animation: floatY 4s infinite ease-in-out alternate;
}

.fb-right {
  bottom: 20%;
  right: -50px;
  animation: floatY 5s infinite ease-in-out alternate-reverse;
}

@keyframes floatY {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-15px);
  }
}

.icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

/*====== SECTIONS ======*/
.section {
  padding: 100px 24px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

.section-bg {
  background: linear-gradient(180deg, var(--base) 0%, var(--section-grad) 100%);
  position: relative;
}

/* Stepper (CÃ³mo Funciona) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 20px;
}

.step-card {
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--step-border);
  background: var(--step-bg-hover);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

/* Bento Grid (Beneficios) */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 24px;
  padding-top: 20px;
}

.bento-item {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border-radius: 32px;
}

.bento-item:hover {
  transform: scale(1.02);
  background: var(--bento-hover);
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--bento-grad);
}

/* Stats */
.stats-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 40px 0;
}

.stat-item {
  text-align: center;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--surface-border);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding-top: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.review-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 24px;
}

/* CTA Banner */
.cta-banner {
  padding: 60px 40px;
  border-radius: 32px;
  border: 1px solid var(--surface-border);
  box-shadow: 0 20px 50px var(--shadow-color);
}

.cta-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.2), transparent 70%);
}

/* Footer */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: var(--transition);
  color: var(--text-muted);
}

.social-icon:hover {
  color: var(--text-main);
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-link {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-link:hover {
  color: var(--primary);
  transform: translateX(5px);
}

/* Floating WA Button */
.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: 100;
  border: 1px solid var(--accent-glow);
  box-shadow: 0 10px 30px var(--shadow-color);
  transition: var(--transition);
  cursor: pointer;
}

.floating-wa:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-5px) scale(1.05);
}

.floating-wa:hover i {
  color: white;
}

.wa-ripple {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0;
  animation: ripple 2s infinite cubic-bezier(0.1, 0.8, 0.3, 1);
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.tooltip-text {
  position: absolute;
  right: 80px;
  padding: 6px 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: var(--transition);
  white-space: nowrap;
}

.floating-wa:hover .tooltip-text {
  opacity: 1;
  transform: translateX(0);
}

/*====== RESPONSIVE ======*/
@media (max-width: 968px) {
  .hero-section {
    flex-direction: column;
    padding-top: 120px;
    text-align: center;
    gap: 60px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    margin: 0 auto;
  }

  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .fb-left,
  .fb-right {
    display: none;
  }

  .steps-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-large {
    grid-column: span 1;
  }

  .stats-container {
    flex-direction: column;
    gap: 40px;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .max-w-sm {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .phone-frame {
    width: 100%;
    max-width: 340px;
  }

  .section {
    padding: 60px 16px;
  }
}

