/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  /* Colors */
  --bg-primary: #09090b;
  --bg-secondary: #111115;
  --bg-tertiary: #18181f;
  --brand-red: #e50914;
  --brand-red-hover: #ff1f27;
  --brand-red-glow: rgba(229, 9, 20, 0.45);
  --brand-red-soft: rgba(229, 9, 20, 0.15);
  
  --text-main: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-dark: #18181b;
  --white: #ffffff;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(229, 9, 20, 0.25);
  
  /* Fonts */
  --font-headings: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout & Transitions */
  --header-height: 80px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

.text-gradient {
  background: linear-gradient(135deg, var(--white) 30%, var(--brand-red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-red {
  color: var(--brand-red);
}

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

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-headings);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* ==========================================================================
   BUTTONS & CTAs
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-headings);
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

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

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

.btn-primary:hover {
  background-color: var(--brand-red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--brand-red-glow);
}

.btn-gradient {
  background: linear-gradient(135deg, var(--brand-red) 0%, #a8000b 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}

.btn-gradient:hover {
  background: linear-gradient(135deg, var(--brand-red-hover) 0%, var(--brand-red) 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px var(--brand-red-glow);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-main);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

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

.btn-block {
  width: 100%;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  background-color: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-color);
  height: 70px;
}

.header-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Rounded White Logo Badge Box */
.logo-badge {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-badge:hover {
  transform: scale(1.03);
  box-shadow: none;
}

.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.logo-badge,
.logo-badge img, 
header img[alt*="logo"], 
footer img[alt*="logo"] {
  background-color: transparent !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.nav-menu {
  display: none; /* Mobile first */
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  z-index: 1001;
}

.menu-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Active hamburger icon */
.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--bg-secondary);
  z-index: 999;
  padding: 100px 30px 40px;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
  border-left: 1px solid var(--border-color);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mobile-nav-item {
  font-family: var(--font-headings);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-main);
  display: block;
}

.mobile-nav-item:hover {
  color: var(--brand-red);
  padding-left: 5px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg-primary);
}

.hero-glow {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.12) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.badge-tagline {
  align-self: flex-start;
  background-color: var(--brand-red-soft);
  color: var(--brand-red-hover);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(229, 9, 20, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-title {
  font-size: 2.3rem;
  line-height: 1.1;
  margin-bottom: 20px;
  font-family: var(--font-headings);
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 35px;
  font-weight: 400;
  max-width: 580px;
}

.hero-actions-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  border-top: 1px solid var(--border-color);
  padding-top: 25px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-red);
}

.stat-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
}

/* Hero Image & Visual Badges */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.visual-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 40px var(--brand-red-soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.visual-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(229, 9, 20, 0.2) 100%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.visual-wrapper:hover .hero-img {
  transform: scale(1.05);
}

.floating-badge {
  position: absolute;
  background: rgba(24, 24, 31, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  padding: 12px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  z-index: 5;
}

.floating-badge i {
  color: var(--brand-red-hover);
  font-size: 1.1rem;
}

.badge-top {
  top: 20px;
  left: 20px;
  animation: float 4s ease-in-out infinite;
}

.badge-bottom {
  bottom: 20px;
  right: 20px;
  animation: float 4s ease-in-out infinite 2s;
}

/* ==========================================================================
   POR QUE NOS ESCOLHER? / DIFFERENTIALS SPLIT
   ========================================================================== */
.features-section {
  padding: 80px 0;
  background-color: var(--bg-secondary);
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.features-content-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
}

.features-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sla-highlight-box {
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
  border-left: 4px solid var(--brand-red);
  padding: 24px;
  border-radius: 0 16px 16px 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.sla-icon-badge {
  width: 46px;
  height: 46px;
  background-color: var(--brand-red);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(229, 9, 20, 0.4);
}

.sla-highlight-text {
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 500;
  color: var(--text-main);
}

.benefits-bullets {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bullet-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.bullet-icon {
  color: var(--brand-red-hover);
  font-size: 1.3rem;
  margin-top: 2px;
}

.bullet-body h4 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 5px;
}

.bullet-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.image-showcase-wrapper {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-color);
}

.showcase-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.image-showcase-wrapper:hover .showcase-img {
  transform: scale(1.03);
}

.image-overlay-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 9, 11, 0.4) 0%, transparent 50%);
  pointer-events: none;
}

/* ==========================================================================
   SEÇÃO DE INTEGRAÇÕES & MARKETPLACES
   ========================================================================== */
.integrations-section {
  padding: 80px 0;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
}

.integrations-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
}

.integrations-grids {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.integration-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.group-title {
  font-size: 1.25rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.integration-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.integration-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: 12px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.integration-card .card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.integration-card .card-header h4 {
  font-size: 1.15rem;
  color: var(--white);
}

.icon-brand {
  width: 38px;
  height: 38px;
  background-color: var(--bg-tertiary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-red-hover);
  font-size: 1.1rem;
}

.integration-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 15px;
}

.badge-status {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-red-hover);
  background-color: var(--brand-red-soft);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(229, 9, 20, 0.2);
}

.highlight-card {
  border-color: rgba(229, 9, 20, 0.4);
  box-shadow: 0 5px 20px rgba(229, 9, 20, 0.08);
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--brand-red);
}

.other-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.other-badges span {
  font-size: 0.75rem;
  font-weight: 600;
  background-color: var(--bg-tertiary);
  color: var(--text-main);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}

.integration-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-red);
  box-shadow: 0 10px 25px rgba(229, 9, 20, 0.15);
}

/* ==========================================================================
   COBERTURA / COVERAGE
   ========================================================================== */
.coverage-section {
  padding: 80px 0;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.coverage-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

.coverage-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.coverage-highlight {
  font-size: 1.15rem;
  line-height: 1.6;
  font-weight: 500;
  color: var(--white);
  border-left: 3px solid var(--brand-red);
  padding-left: 20px;
}

.coverage-cities-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 10px 0 25px 0;
}

.coverage-cities-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.coverage-cities-list li i {
  color: var(--brand-red);
  font-size: 1.1rem;
}

.map-visual-container {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-color);
}

.coverage-map-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.map-visual-container:hover .coverage-map-img {
  transform: scale(1.02);
}

/* Radar scan effect */
.radar-scan {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(229, 9, 20, 0.15) 50%, transparent 100%);
  animation: radar-scan 4s linear infinite;
  pointer-events: none;
}

@keyframes radar-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Pulsing radar point targets */
.map-pulse-point {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: var(--brand-red-hover);
  border-radius: 50%;
  z-index: 10;
  box-shadow: 0 0 10px var(--brand-red);
}

.map-pulse-point::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--brand-red-hover);
  animation: pulse-radar 2s ease-out infinite;
}

.pt1 { top: 35%; left: 45%; }
.pt2 { top: 55%; left: 52%; animation-delay: 0.6s; }
.pt3 { top: 48%; left: 62%; animation-delay: 1.2s; }

@keyframes pulse-radar {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(3); opacity: 0; }
}

/* ==========================================================================
   CARROSSEL DE RASTREIO INTEGRADO / SMARTPHONE MOCKUP
   ========================================================================== */
.tracking-section {
  padding: 80px 0;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
}

.tracking-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
}

.tracking-text-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.tracking-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.t-feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.t-icon {
  width: 50px;
  height: 50px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--brand-red-hover);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.t-body h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}

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

.tracking-cta-container {
  margin-top: 10px;
}

/* Phone Mockup Frame */
.phone-mockup-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.phone-case {
  width: 320px;
  height: 640px;
  background-color: #1e1e24;
  border: 12px solid #000000;
  border-radius: 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(229, 9, 20, 0.15);
  position: relative;
  overflow: hidden;
  transform: rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.phone-case:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.phone-header {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 25px;
  background-color: #000000;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.phone-speaker {
  width: 40px;
  height: 4px;
  background-color: #333333;
  border-radius: 2px;
}

.phone-camera {
  width: 8px;
  height: 8px;
  background-color: #111111;
  border-radius: 50%;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background-color: #0a0a0c;
  display: flex;
  flex-direction: column;
  padding-top: 25px;
  position: relative;
}

.phone-app-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none; /* Hide scrollbar Firefox */
}

.phone-app-content::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}

.app-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-headings);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.app-tracking-card {
  background-color: #16161c;
  margin: 15px;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.package-id {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.package-status-badge {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ff1f27;
  text-shadow: 0 0 10px rgba(229, 9, 20, 0.3);
}

.app-map-container {
  height: 160px;
  position: relative;
  margin: 0 15px 15px 15px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.app-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.courier-marker {
  position: absolute;
  top: 45%;
  left: 55%;
  background-color: var(--brand-red);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 0 15px var(--brand-red);
  animation: marker-pulse 2s infinite;
}

@keyframes marker-pulse {
  0% { transform: scale(1); box-shadow: 0 0 5px var(--brand-red); }
  50% { transform: scale(1.1); box-shadow: 0 0 18px var(--brand-red-hover); }
  100% { transform: scale(1); box-shadow: 0 0 5px var(--brand-red); }
}

.app-timeline {
  display: flex;
  flex-direction: column;
  padding: 0 20px 20px 20px;
  position: relative;
}

.app-timeline::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 29px;
  width: 2px;
  height: calc(100% - 40px);
  background-color: rgba(255, 255, 255, 0.08);
}

.timeline-step {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
}

.timeline-step .step-dot {
  width: 20px;
  height: 20px;
  background-color: #222226;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: transparent;
  transition: all 0.5s ease;
  margin-top: 4px;
}

.timeline-step.active .step-dot {
  background-color: #22c55e;
  border-color: #22c55e;
  color: var(--white);
}

.timeline-step.active-live .step-dot {
  background-color: var(--brand-red);
  border-color: var(--brand-red-hover);
  color: var(--white);
  box-shadow: 0 0 10px var(--brand-red);
  animation: pulse-live 1.5s infinite;
}

@keyframes pulse-live {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.timeline-step .step-details {
  display: flex;
  flex-direction: column;
}

.timeline-step .step-time {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.timeline-step .step-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.timeline-step.active .step-title,
.timeline-step.active-live .step-title {
  color: var(--white);
}

.timeline-step .step-desc {
  font-size: 0.75rem;
  color: #71717a;
  margin-top: 1px;
}

.timeline-step.active .step-desc,
.timeline-step.active-live .step-desc {
  color: var(--text-muted);
}

/* ==========================================================================
   PROVA SOCIAL / TESTIMONIALS
   ========================================================================== */
.testimonials-section {
  padding: 80px 0;
  background-color: var(--bg-primary);
}

.testimonials-header {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}

.google-rating-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 20px 25px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  align-self: flex-start;
}

.rating-info {
  display: flex;
  flex-direction: column;
}

.rating-number {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
}

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

.rating-stars {
  color: #ffb500;
  font-size: 0.9rem;
  margin: 2px 0;
}

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

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

.testimonial-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.testimonial-header-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.user-avatar {
  font-size: 2.2rem;
  color: var(--text-muted);
  margin-right: 15px;
}

.user-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.user-name {
  font-family: var(--font-headings);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

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

.stars-review {
  color: #ffb500;
  font-size: 0.8rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.5;
}

.testimonial-card:hover {
  transform: scale(1.02);
  border-color: var(--brand-red-glow);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(229, 9, 20, 0.08);
}

/* ==========================================================================
   CONTATO & MAPS
   ========================================================================== */
.contact-section {
  padding: 80px 0;
  background-color: var(--bg-secondary);
}

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

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-desc {
  color: var(--text-muted);
  margin-bottom: 35px;
  font-size: 1rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.method-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.method-icon {
  width: 48px;
  height: 48px;
  background-color: var(--bg-tertiary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--brand-red-hover);
  border: 1px solid var(--border-color);
}

.method-details {
  display: flex;
  flex-direction: column;
}

.method-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.method-value {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  margin-top: 2px;
}

.hover-red:hover {
  color: var(--brand-red-hover);
}

.contact-actions-footer {
  margin-top: 10px;
}

/* Map Frame */
.contact-map-panel {
  height: 350px;
  width: 100%;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.map-overlay-info {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  background-color: rgba(24, 24, 31, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  padding: 12px 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.map-overlay-info i {
  color: var(--brand-red-hover);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding-top: 60px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.logo-footer {
  align-self: flex-start;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 320px;
}

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

.social-icon-link {
  width: 36px;
  height: 36px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.social-icon-link:hover {
  background-color: var(--brand-red);
  color: var(--white);
  border-color: var(--brand-red);
  transform: translateY(-3px);
}

.footer-links-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--brand-red-hover);
  padding-left: 4px;
}

.footer-badge-side {
  display: flex;
  align-items: center;
}

.region-badge {
  background-color: var(--bg-secondary);
  border: 1.5px dashed var(--brand-red);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.region-badge i {
  font-size: 1.8rem;
  color: var(--brand-red-hover);
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
}

.badge-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 30px 0;
}

.footer-bottom-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.devops-credit {
  font-size: 0.75rem;
  color: #52525b;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Intersection Observer Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================================================== */

/* Small devices (tablets, 576px and up) */
@media (min-width: 576px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-actions-group {
    flex-direction: row;
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .section-title {
    font-size: 2.4rem;
  }
  
  .features-content-split {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .integrations-split {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
  }
  
  .integration-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .coverage-split {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .tracking-split {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1.2fr 1fr;
  }
  
  .contact-map-panel {
    height: 100%;
  }
  
  .footer-container {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  
  .footer-bottom-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .nav-menu {
    display: block;
  }
  
  .nav-list {
    display: flex;
    gap: 30px;
  }
  
  .nav-item {
    font-family: var(--font-headings);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
  }
  
  .nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-red-hover);
    transition: var(--transition-fast);
  }
  
  .nav-item:hover {
    color: var(--white);
  }
  
  .nav-item:hover::after {
    width: 100%;
  }
  
  .menu-toggle {
    display: none;
  }
  
  .hero-container {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    padding-top: 40px;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .features-content-split {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
  }
  
  .integrations-split {
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
  }
  
  .coverage-split {
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
  }
  
  .tracking-split {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
  }
  
  .footer-container {
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
  }
}
