/* ============================================
   ÁGUAS BONANZA — Premium Design System v2
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@500&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --color-primary: #0062cc;
  --color-primary-dark: #004a99;
  --color-primary-deeper: #003370;
  --color-primary-light: #3d8fe8;
  --color-primary-pale: #e8f2ff;
  --color-accent: #00c9a7;
  --color-accent-dark: #00a88a;
  --color-accent-light: #33ffd6;
  --color-secondary: #f0f7ff;
  --color-dark: #06111f;
  --color-dark-soft: #0c1e35;
  --color-dark-card: #0f2440;
  --color-text: #1a2b42;
  --color-text-muted: #5a6f87;
  --color-white: #ffffff;
  --color-surface: #f6f9fd;
  --color-border: rgba(0, 98, 204, 0.08);
  --color-border-light: rgba(0, 98, 204, 0.04);
  --color-whatsapp: #25D366;
  --color-whatsapp-dark: #1da851;
  --color-gold: #f5a623;
  --color-danger: #ef4444;

  --gradient-primary: linear-gradient(135deg, #0062cc 0%, #00c9a7 100%);
  --gradient-hero: linear-gradient(165deg, #03091a 0%, #061b38 25%, #0a4080 55%, #0062cc 80%, #00a88a 100%);
  --gradient-card: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(246,249,253,1) 100%);
  --gradient-cta: linear-gradient(135deg, #25D366 0%, #1da851 100%);
  --gradient-dark: linear-gradient(165deg, #03091a 0%, #061b38 40%, #0a4080 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  --gradient-shimmer: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);

  --shadow-xs: 0 1px 3px rgba(0, 30, 80, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 30, 80, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 30, 80, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 30, 80, 0.12);
  --shadow-xl: 0 32px 80px rgba(0, 30, 80, 0.16);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,30,80,0.06);
  --shadow-card-hover: 0 4px 8px rgba(0,0,0,0.04), 0 20px 50px rgba(0,30,80,0.12);
  --shadow-glow-blue: 0 0 60px rgba(0, 98, 204, 0.2);
  --shadow-glow-green: 0 0 40px rgba(0, 201, 167, 0.25);
  --shadow-whatsapp: 0 8px 30px rgba(37, 211, 102, 0.35);

  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* --- Global Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul { list-style: none; }

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

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(1deg); }
  66% { transform: translateY(-6px) rotate(-1deg); }
}

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

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

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-70px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(70px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes waveMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 201, 167, 0.2); }
  50% { box-shadow: 0 0 40px rgba(0, 201, 167, 0.4); }
}

@keyframes shimmerBg {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.05); }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* --- Top Bar (CNPJ) --- */
.top-bar {
  background: var(--color-dark);
  padding: 8px 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1001;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item .icon {
  font-size: 0.85rem;
}

.cnpj-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 12px;
  background: rgba(0, 201, 167, 0.12);
  border: 1px solid rgba(0, 201, 167, 0.25);
  border-radius: var(--radius-full);
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.3px;
}

.cnpj-badge .cnpj-label {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-right a {
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-bar-right a:hover {
  color: var(--color-accent);
}

/* --- Header / Navbar --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
  transition: all var(--transition-normal);
  background: transparent;
}

.header.scrolled {
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), var(--shadow-md);
  padding: 10px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-white);
  transition: var(--transition-normal);
  letter-spacing: -0.02em;
}

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

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.logo-icon::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  animation: shimmerBg 3s ease-in-out infinite;
}

.logo-text-sub {
  font-size: 0.62rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-top: -2px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.header.scrolled .logo-text-sub {
  color: var(--color-text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-fast);
  position: relative;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
}

.header.scrolled .nav-links a {
  color: var(--color-text-muted);
}

.nav-links a:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
}

.header.scrolled .nav-links a:hover {
  color: var(--color-primary);
  background: var(--color-primary-pale);
}

.nav-cta {
  padding: 10px 24px !important;
  background: var(--color-whatsapp) !important;
  color: white !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: all var(--transition-normal) !important;
  box-shadow: var(--shadow-whatsapp);
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45) !important;
  background: var(--color-whatsapp-dark) !important;
}

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

.mobile-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--color-white);
  border-radius: 3px;
  transition: var(--transition-normal);
}

.header.scrolled .mobile-toggle span {
  background: var(--color-dark);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: 80px;
}

/* Water wave decoration at bottom */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 200%;
  height: 100px;
  z-index: 4;
  animation: waveMove 12s linear infinite;
}

.hero-wave svg {
  width: 100%;
  height: 100%;
}

/* Floating particles */
.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 201, 167, 0.06);
  border: 1px solid rgba(0, 201, 167, 0.1);
  animation: float 8s ease-in-out infinite;
}

.particle:nth-child(1) { width: 100px; height: 100px; top: 15%; left: 3%; animation-delay: 0s; animation-duration: 9s; }
.particle:nth-child(2) { width: 160px; height: 160px; top: 55%; left: 10%; animation-delay: 1.2s; animation-duration: 11s; }
.particle:nth-child(3) { width: 70px; height: 70px; top: 25%; right: 8%; animation-delay: 2.4s; animation-duration: 8s; }
.particle:nth-child(4) { width: 120px; height: 120px; top: 65%; right: 15%; animation-delay: 0.8s; animation-duration: 10s; }
.particle:nth-child(5) { width: 50px; height: 50px; top: 10%; left: 35%; animation-delay: 3.2s; animation-duration: 7s; }
.particle:nth-child(6) { width: 90px; height: 90px; top: 75%; left: 55%; animation-delay: 1.8s; animation-duration: 12s; }
.particle:nth-child(7) { width: 40px; height: 40px; top: 40%; left: 70%; animation-delay: 4s; animation-duration: 6s; }

/* Grid pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(0, 201, 167, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 98, 204, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero-text {
  animation: slideInLeft 0.9s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px 8px 10px;
  background: rgba(0, 201, 167, 0.1);
  border: 1px solid rgba(0, 201, 167, 0.2);
  border-radius: var(--radius-full);
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 28px;
  backdrop-filter: blur(12px);
  animation: glowPulse 3s ease infinite;
}

.hero-badge .pulse-dot {
  width: 24px;
  height: 24px;
  background: rgba(0, 201, 167, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-badge .pulse-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.hero h1 {
  font-size: 3.6rem;
  color: var(--color-white);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}

.hero h1 .highlight {
  position: relative;
  display: inline;
  background: linear-gradient(135deg, var(--color-accent) 0%, #7dd3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}

/* Hero trust bar */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  width: fit-content;
}

.hero-trust .stars {
  color: var(--color-gold);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.hero-trust .trust-text {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

.hero-trust .trust-text strong {
  color: rgba(255, 255, 255, 0.8);
}

/* Hero image + CTA group */
.hero-image-cta {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: slideInRight 0.9s ease;
}

.hero-image-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-hero-main {
  padding: 18px 36px !important;
  font-size: 1rem !important;
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.4) !important;
}

.btn-hero-main:hover {
  box-shadow: 0 16px 45px rgba(37, 211, 102, 0.5) !important;
}

/* Hero image */
.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: calc(var(--radius-xl) + 8px);
  background: var(--gradient-primary);
  opacity: 0.2;
  z-index: -1;
  filter: blur(30px);
}

/* Floating badge on image */
.hero-image .floating-badge {
  position: absolute;
  bottom: -16px;
  left: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: bounceIn 1s ease 0.5s both;
  border: 1px solid rgba(0, 98, 204, 0.08);
}

.floating-badge .badge-icon {
  width: 44px;
  height: 44px;
  background: var(--color-primary-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.floating-badge .badge-text {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.floating-badge .badge-text strong {
  display: block;
  font-size: 0.92rem;
  color: var(--color-dark);
  font-weight: 700;
}

/* Stats bar */
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 48px;
}

.hero-stat {
  text-align: left;
  padding: 0 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat:first-child {
  border-left: none;
  padding-left: 0;
}

.hero-stat .stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-accent) 0%, #7dd3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.hero-stat .stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
  font-weight: 500;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  letter-spacing: -0.01em;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition-fast);
}

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

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

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.45);
  background: var(--color-whatsapp-dark);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

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

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 6px 25px rgba(0, 98, 204, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0, 98, 204, 0.35);
}

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

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-icon {
  font-size: 1.15rem;
  flex-shrink: 0;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* WhatsApp SVG icon in buttons */
.btn-wa-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.nav-wa-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

/* --- CNPJ Verified Banner --- */
.cnpj-banner {
  background: var(--color-white);
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  z-index: 3;
}

.cnpj-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cnpj-banner-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.cnpj-banner-icon {
  width: 36px;
  height: 36px;
  background: var(--color-primary-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.cnpj-banner-item strong {
  color: var(--color-dark);
  font-weight: 700;
}

.cnpj-banner-item .cnpj-number {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--color-primary);
  font-size: 0.88rem;
  background: var(--color-primary-pale);
  padding: 4px 12px;
  border-radius: var(--radius-xs);
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  background: linear-gradient(135deg, rgba(0, 201, 167, 0.1) 0%, rgba(0, 98, 204, 0.1) 100%);
  border: 1px solid rgba(0, 201, 167, 0.2);
  border-radius: var(--radius-full);
  color: var(--color-accent-dark);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Section Styling --- */
.section {
  padding: 110px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 72px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: var(--color-primary-pale);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
  border: 1px solid rgba(0, 98, 204, 0.08);
}

.section-title {
  font-size: 2.8rem;
  color: var(--color-dark);
  margin-bottom: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-title .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.section-divider {
  width: 48px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 3px;
  margin: 20px auto 0;
}

/* --- Features / Why Choose Us --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-smooth);
  transform-origin: left;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--color-primary-pale) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition-smooth);
  transform: translate(30%, -30%);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(0, 98, 204, 0.12);
}

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

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  background: var(--color-primary-pale);
  transition: all var(--transition-normal);
  position: relative;
}

.feature-card:hover .feature-icon {
  background: var(--gradient-primary);
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 98, 204, 0.2);
}

.feature-card h3 {
  font-size: 1.2rem;
  color: var(--color-dark);
  margin-bottom: 10px;
  font-weight: 700;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* --- Fleet Section --- */
.fleet-section {
  background: var(--color-surface);
  overflow: hidden;
}

.fleet-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.fleet-image-wrapper {
  position: relative;
}

.fleet-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 98, 204, 0.06);
}

.fleet-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.fleet-image:hover img {
  transform: scale(1.04);
}

/* Decorative dots */
.fleet-dots {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(var(--color-primary-light) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.3;
  z-index: -1;
}

.fleet-info .section-tag {
  margin-bottom: 14px;
}

.fleet-info h2 {
  font-size: 2.5rem;
  color: var(--color-dark);
  margin-bottom: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.fleet-info h2 .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fleet-info > p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: 32px;
}

.fleet-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.fleet-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.93rem;
  color: var(--color-text);
  padding: 8px 0;
  font-weight: 500;
}

.fleet-feature-check {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.7rem;
  flex-shrink: 0;
  font-weight: 700;
}

/* --- Services Section --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition-smooth);
}

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

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

.service-card:hover .service-icon,
.service-card:hover h3,
.service-card:hover p {
  position: relative;
  z-index: 2;
}

.service-card:hover .service-icon {
  transform: scale(1.2);
}

.service-card:hover h3 {
  color: var(--color-white);
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.8);
}

.service-icon {
  font-size: 2.6rem;
  margin-bottom: 18px;
  display: block;
  transition: var(--transition-normal);
}

.service-card h3 {
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 8px;
  font-weight: 700;
  transition: var(--transition-normal);
}

.service-card p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  transition: var(--transition-normal);
}

/* --- Coverage Section --- */
.coverage-section {
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.coverage-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 85%, rgba(0, 201, 167, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 15%, rgba(0, 98, 204, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.coverage-section .section-title {
  color: var(--color-white);
}

.coverage-section .section-subtitle {
  color: rgba(255, 255, 255, 0.55);
}

.coverage-section .section-tag {
  background: rgba(0, 201, 167, 0.1);
  color: var(--color-accent);
  border-color: rgba(0, 201, 167, 0.2);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.coverage-card {
  background: var(--gradient-glass);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  backdrop-filter: blur(16px);
  transition: all var(--transition-smooth);
}

.coverage-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 201, 167, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.coverage-card h3 {
  font-size: 1.05rem;
  color: var(--color-accent);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.coverage-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.coverage-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.coverage-card li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
  opacity: 0.6;
}

.coverage-cta {
  text-align: center;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.coverage-cta p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  margin-bottom: 22px;
}

/* --- CTA Final Section --- */
.cta-section {
  background: var(--color-surface);
  position: relative;
}

.cta-card {
  background: var(--gradient-hero);
  border-radius: var(--radius-2xl);
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(0, 201, 167, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 98, 204, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Subtle grid pattern */
.cta-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-card h2 {
  font-size: 2.8rem;
  color: var(--color-white);
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.cta-card h2 .highlight {
  background: linear-gradient(135deg, var(--color-accent) 0%, #7dd3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-card p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  margin: 0 auto 20px;
  line-height: 1.8;
}

.cta-cnpj {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  margin-bottom: 32px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-mono);
}

.cta-cnpj strong {
  color: var(--color-accent);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.55);
  padding: 72px 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gradient-primary);
  opacity: 0.3;
}

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

.footer-brand .logo {
  color: var(--color-white);
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 16px;
}

.footer-cnpj-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-top: 8px;
}

.footer-cnpj-box .company-name {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin-bottom: 6px;
}

.footer-cnpj-box .cnpj-display {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--color-accent);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.footer-cnpj-box .cnpj-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 0.88rem;
  margin-bottom: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 7px 0;
  transition: all var(--transition-fast);
}

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

.footer-bottom {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom .footer-cnpj-inline {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  transition: all var(--transition-normal);
}

.whatsapp-float-btn {
  width: 64px;
  height: 64px;
  background: var(--color-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: var(--shadow-whatsapp);
  transition: all var(--transition-normal);
  position: relative;
}

.whatsapp-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 45px rgba(37, 211, 102, 0.5);
}

.whatsapp-float-btn::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.25);
  animation: ripple 2.5s ease infinite;
}

.whatsapp-float-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-white);
  color: var(--color-dark);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
}

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

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

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.6rem; }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  /* Image + WhatsApp button appears FIRST on mobile/tablet */
  .hero-image-cta {
    order: -1;
    max-width: 520px;
    margin: 0 auto;
  }

  .hero-description { margin: 0 auto 24px; }
  .hero-image-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-trust { margin: 16px auto 0; }
  .hero-image .floating-badge { left: 50%; transform: translateX(-50%); }

  /* Hide floating particles on mobile */
  .hero-particles { display: none; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-content { grid-template-columns: 1fr; gap: 40px; }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 2.2rem; }
  .cnpj-banner .container { gap: 20px; }
}

@media (max-width: 768px) {
  .top-bar .container {
    justify-content: center;
    text-align: center;
  }

  .top-bar-left { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .top-bar-right { display: none; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(6, 17, 31, 0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 998;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85) !important;
  }

  .mobile-toggle {
    display: flex;
    z-index: 999;
  }

  .hero {
    min-height: auto;
    padding: 90px 0 80px;
  }

  .hero-content {
    gap: 28px;
  }

  /* Image + button appears FIRST on mobile */
  .hero-image-cta {
    order: -1;
  }

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

  .hero-stats {
    flex-wrap: wrap;
    gap: 0;
  }

  .hero-stat { padding: 8px 20px; }
  .hero-stat .stat-number { font-size: 1.6rem; }

  .features-grid,
  .coverage-grid { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 72px 0; }
  .section-title { font-size: 1.9rem; }

  .cta-card {
    padding: 56px 24px;
    border-radius: var(--radius-xl);
  }

  .cta-card h2 { font-size: 1.9rem; }

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

  .footer-bottom { justify-content: center; text-align: center; }
  .fleet-image img { height: 280px; }

  .cnpj-banner .container { gap: 16px; }
  .cnpj-banner-item { font-size: 0.8rem; }

  .btn-hero-main {
    padding: 16px 28px !important;
    font-size: 0.95rem !important;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.7rem; }

  .hero-image-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }

  .hero-stats {
    flex-direction: column;
    align-items: center;
  }

  .hero-stat {
    border-left: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 12px 0;
    text-align: center;
  }

  .hero-stat:last-child { border-bottom: none; }
  .cnpj-banner .container { flex-direction: column; gap: 12px; }
}
