/* -------------------------------------------------------------
 * ESTILOS GERAIS E DESIGN SYSTEM
 * ------------------------------------------------------------- */

 :root {
  /* Colors */
  --primary: #0055ff;
  --primary-hover: #0044cc;
  --primary-glow: rgba(0, 85, 255, 0.35);
  --primary-glow-light: rgba(0, 85, 255, 0.15);
  --accent-blue-light: #00a8ff;
  --bg-dark: #0f111a;
  --bg-darker: #08090d;
  --bg-card: rgba(26, 29, 46, 0.45);
  --bg-card-hover: rgba(26, 29, 46, 0.8);
  --border-card: rgba(255, 255, 255, 0.06);
  --border-card-hover: rgba(0, 85, 255, 0.4);
  --text-white: #ffffff;
  --text-gray: #9ba4b4;
  --text-light-gray: #e1e6f0;
  --success: #10b981;
  --danger: #ef4444;
  
  /* Fonts */
  --font-title: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout */
  --container-width: 1200px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

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

/* Typography base */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--text-white);
  font-weight: 700;
  line-height: 1.25;
}

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

ul {
  list-style: none;
}

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

/* Utility Containers */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.bg-darker {
  background-color: var(--bg-darker);
}

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

.accent-blue {
  color: var(--primary);
}

.highlight-blue {
  position: relative;
  color: var(--text-white);
  z-index: 1;
}

.highlight-blue::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 8px;
  background-color: var(--primary);
  z-index: -1;
  opacity: 0.5;
  border-radius: 4px;
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

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

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

/* Custom Text Gradient */
.gradient-text {
  background: linear-gradient(135deg, #ffffff 30%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section Headers */
.section-header {
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--primary-glow-light);
  border: 1px solid rgba(0, 85, 255, 0.2);
  color: #8bb2ff;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-gray);
  max-width: 650px;
  margin: 0 auto;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 13px;
  color: var(--text-light-gray);
  font-weight: 500;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary);
  animation: pulse-glow 2s infinite;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 14px;
}

.btn-large {
  padding: 16px 36px;
  font-size: 17px;
  border-radius: var(--radius-md);
}

.btn-full {
  width: 100%;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-white);
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 85, 255, 0.5);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Animations */
@keyframes pulse-glow {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 0 14px var(--primary);
  }
  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
}

.pulse-animation {
  animation: pulse-cta 3s infinite;
}

@keyframes pulse-cta {
  0% {
    box-shadow: 0 4px 20px var(--primary-glow);
  }
  50% {
    box-shadow: 0 4px 30px rgba(0, 85, 255, 0.7);
  }
  100% {
    box-shadow: 0 4px 20px var(--primary-glow);
  }
}

/* Scroll Animation classes */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  animation: fadeInLeft 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  animation: fadeInRight 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* -------------------------------------------------------------
 * NAVBAR
 * ------------------------------------------------------------- */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: var(--transition-normal);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background-color: rgba(15, 17, 26, 0.85);
  backdrop-filter: blur(15px);
  height: 70px;
  border-bottom: 1px solid var(--border-card);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.logo-text {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--text-white);
}

.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-gray);
  position: relative;
  padding: 6px 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

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

.menu-toggle .bar {
  width: 24px;
  height: 2px;
  background-color: var(--text-white);
  transition: var(--transition-fast);
}


/* -------------------------------------------------------------
 * HERO SECTION
 * ------------------------------------------------------------- */

.hero-section {
  position: relative;
  padding-top: 180px;
  padding-bottom: 120px;
  overflow: hidden;
}

.hero-bg-gradients {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.blur-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.15;
}

.glow-1 {
  top: -10%;
  right: 10%;
  width: 450px;
  height: 450px;
  background: var(--primary);
}

.glow-2 {
  bottom: 10%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: var(--accent-blue-light);
}

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

.hero-title {
  font-size: 54px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 19px;
  color: var(--text-gray);
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-stars {
  color: #ffd700;
  display: flex;
  gap: 4px;
  font-size: 14px;
}

.trust-text {
  font-size: 14px;
  color: var(--text-gray);
}

/* Interactive Mockup styling */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.mockup-frame {
  width: 100%;
  max-width: 480px;
  height: 380px;
  background-color: var(--bg-darker);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mockup-header {
  height: 36px;
  background-color: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 20px;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot.red { background-color: #ff5f56; }
.dot.yellow { background-color: #ffbd2e; }
.dot.green { background-color: #27c93f; }

.mockup-search-bar {
  flex-grow: 1;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  height: 20px;
  font-size: 10px;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  padding-left: 10px;
  opacity: 0.8;
}

.mockup-body {
  flex-grow: 1;
  padding: 24px;
  position: relative;
}

.mockup-hero {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-line {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.mockup-line.title {
  width: 70%;
  height: 18px;
  background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
}

.mockup-line.title.short {
  width: 45%;
  height: 18px;
  margin-bottom: 8px;
}

.mockup-line.text {
  width: 90%;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.04);
}

.mockup-cta {
  width: 120px;
  height: 32px;
  background-color: var(--primary);
  border-radius: 6px;
  margin-top: 16px;
  box-shadow: 0 4px 10px rgba(0, 85, 255, 0.4);
}

/* Floating Mockup Cards */
.floating-card {
  position: absolute;
  background-color: rgba(26, 29, 46, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  animation: float-animation 6s ease-in-out infinite;
}

.sales-card {
  top: 15%;
  right: -20px;
  border-left: 3px solid var(--success);
}

.speed-card {
  bottom: 20%;
  left: -30px;
  animation-delay: 1.5s;
  border-left: 3px solid var(--primary);
}

.visitors-card {
  bottom: 10%;
  right: -10px;
  animation-delay: 3s;
}

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

.card-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--primary-glow-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.sales-card .card-icon {
  background-color: rgba(16, 185, 129, 0.15);
  color: var(--success);
}

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

.card-label {
  font-size: 10px;
  color: var(--text-gray);
}

.card-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--bg-dark);
  margin-left: -8px;
  background-color: var(--primary-glow);
  background-size: cover;
}

.avatar:first-child {
  margin-left: 0;
}

.av-1 { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="50" fill="%230055ff"/><text x="50" y="55" font-size="30" fill="%23fff" text-anchor="middle" font-family="sans-serif">M</text></svg>'); }
.av-2 { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="50" fill="%2310b981"/><text x="50" y="55" font-size="30" fill="%23fff" text-anchor="middle" font-family="sans-serif">J</text></svg>'); }
.av-3 { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="50" fill="%23ff9f00"/><text x="50" y="55" font-size="30" fill="%23fff" text-anchor="middle" font-family="sans-serif">P</text></svg>'); }


/* -------------------------------------------------------------
 * STATS SECTION
 * ------------------------------------------------------------- */

.stats-section {
  background-color: var(--bg-darker);
  border-y: 1px solid var(--border-card);
  padding: 40px 0;
}

.stats-container {
  align-items: center;
}

.stat-item {
  text-align: center;
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-title);
  font-size: 44px;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffffff, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-desc {
  font-size: 13px;
  color: var(--text-gray);
}


/* -------------------------------------------------------------
 * COMPARISON SECTION (PROBLEM VS SOLUTION)
 * ------------------------------------------------------------- */

.comparison-grid {
  gap: 32px;
  margin-top: 20px;
}

.comparison-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 40px;
  transition: var(--transition-normal);
}

.comparison-card:hover {
  transform: translateY(-5px);
  background-color: var(--bg-card-hover);
}

.comparison-card.bad {
  border-top: 4px solid var(--danger);
}

.comparison-card.good {
  border-top: 4px solid var(--primary);
  background-color: rgba(0, 85, 255, 0.03);
  box-shadow: 0 10px 40px var(--primary-glow-light);
}

.card-header-bad, .card-header-good {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.card-header-bad i {
  font-size: 32px;
  color: var(--danger);
}

.card-header-good i {
  font-size: 32px;
  color: var(--primary);
}

.card-header-bad h3, .card-header-good h3 {
  font-size: 22px;
  font-weight: 700;
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-light-gray);
}

.comparison-list li i {
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.comparison-list li i.fa-minus-circle {
  color: var(--danger);
  opacity: 0.7;
}

.comparison-list li i.fa-check {
  color: var(--success);
}


/* -------------------------------------------------------------
 * BENEFITS SECTION
 * ------------------------------------------------------------- */

.benefits-grid {
  margin-top: 20px;
}

.benefit-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(0, 85, 255, 0.08), transparent 50%);
  opacity: 0;
  transition: var(--transition-normal);
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-card-hover);
  background-color: var(--bg-card-hover);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px var(--primary-glow-light);
}

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

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: var(--primary-glow-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 24px;
  transition: var(--transition-normal);
}

.benefit-card:hover .benefit-icon {
  background-color: var(--primary);
  color: var(--text-white);
  box-shadow: 0 0 15px var(--primary);
  transform: scale(1.05);
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
  font-weight: 600;
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}


/* -------------------------------------------------------------
 * PORTFOLIO SECTION
 * ------------------------------------------------------------- */

.portfolio-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
}

.portfolio-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-card-hover);
  background-color: var(--bg-card-hover);
}

.portfolio-img-container {
  height: 200px;
  background-color: var(--bg-darker);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-card);
}

.portfolio-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 17, 26, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-normal);
}

.portfolio-card:hover .portfolio-hover {
  opacity: 1;
}

/* Representational layout styling for cards */
.mini-layout {
  width: 80%;
  height: 80%;
  background-color: #161824;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.05);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.mini-nav {
  height: 8px;
  background-color: rgba(255,255,255,0.05);
  border-radius: 2px;
}

.mini-hero {
  flex-grow: 1;
  background-color: rgba(255,255,255,0.02);
  border-radius: 4px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mini-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--primary);
}

.mini-bar {
  width: 70%;
  height: 6px;
  background-color: rgba(255,255,255,0.08);
  border-radius: 2px;
}

.mini-bar-sm {
  width: 40%;
  height: 4px;
  background-color: rgba(255,255,255,0.05);
  border-radius: 2px;
}

.mini-content {
  display: flex;
  gap: 4px;
}

.mini-box {
  flex: 1;
  height: 24px;
  background-color: rgba(255,255,255,0.03);
  border-radius: 2px;
}

.lp-infoproduct .mini-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--accent-blue-light);
  margin-bottom: 4px;
}

.lp-infoproduct .mini-btn-red {
  width: 50px;
  height: 8px;
  background-color: var(--danger);
  border-radius: 2px;
  margin-top: 4px;
}

.lp-local .mini-grid {
  display: flex;
  gap: 6px;
  width: 100%;
}

.mini-grid-item {
  flex: 1;
  height: 35px;
  background-color: rgba(255,255,255,0.04);
  border-radius: 2px;
}

.mini-content-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.mini-bar-ctr {
  width: 50%;
  height: 6px;
  background-color: rgba(255,255,255,0.05);
}

.mini-btn-green {
  width: 60px;
  height: 10px;
  background-color: var(--success);
  border-radius: 2px;
}

.portfolio-info {
  padding: 24px;
}

.portfolio-category {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 8px;
}

.portfolio-info h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.portfolio-info p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.5;
}


/* -------------------------------------------------------------
 * PROCESS / TIMELINE SECTION
 * ------------------------------------------------------------- */

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 32px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15px;
  width: 2px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.05);
}

.process-step {
  position: relative;
  margin-bottom: 48px;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  position: absolute;
  top: 0;
  left: -32px;
  width: 32px;
  height: 32px;
  background-color: var(--bg-darker);
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  z-index: 1;
  transition: var(--transition-normal);
}

.process-step:hover .step-number {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 10px var(--primary-glow);
}

.step-content {
  background-color: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: var(--transition-normal);
}

.process-step:hover .step-content {
  border-color: var(--border-card-hover);
  background-color: var(--bg-card-hover);
  transform: translateX(5px);
}

.step-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 14px;
  color: var(--text-gray);
}


/* -------------------------------------------------------------
 * TESTIMONIALS SECTION
 * ------------------------------------------------------------- */

.testimonials-grid {
  margin-top: 20px;
}

.testimonial-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-card-hover);
  background-color: var(--bg-card-hover);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.stars {
  color: #ffd700;
  margin-bottom: 20px;
  display: flex;
  gap: 4px;
  font-size: 12px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text-light-gray);
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-glow);
  background-size: cover;
}

.author-info h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.author-info span {
  font-size: 12px;
  color: var(--text-gray);
}

.av-t1 { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="50" fill="%230055ff"/><text x="50" y="55" font-size="30" fill="%23fff" text-anchor="middle" font-family="sans-serif">G</text></svg>'); }
.av-t2 { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="50" fill="%2310b981"/><text x="50" y="55" font-size="30" fill="%23fff" text-anchor="middle" font-family="sans-serif">A</text></svg>'); }
.av-t3 { background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="50" fill="%23ff9f00"/><text x="50" y="55" font-size="30" fill="%23fff" text-anchor="middle" font-family="sans-serif">F</text></svg>'); }


/* -------------------------------------------------------------
 * PRICING SECTION
 * ------------------------------------------------------------- */

.pricing-grid {
  margin-top: 30px;
  align-items: stretch;
}

.pricing-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-card-hover);
  background-color: var(--bg-card-hover);
}

.pricing-card.popular {
  border: 2px solid var(--primary);
  background-color: rgba(0, 85, 255, 0.02);
  box-shadow: 0 15px 45px rgba(0, 85, 255, 0.15);
}

.pricing-card.popular:hover {
  box-shadow: 0 15px 45px rgba(0, 85, 255, 0.25);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--primary);
  color: var(--text-white);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-header h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.pricing-header p {
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 28px;
  line-height: 1.5;
}

.price {
  display: flex;
  flex-direction: column;
  margin-bottom: 36px;
}

.price .currency {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-gray);
}

.price .amount {
  font-family: var(--font-title);
  font-size: 48px;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1;
  margin: 4px 0;
}

.price .period {
  font-size: 11px;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-features {
  margin-bottom: 36px;
}

.pricing-features ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-light-gray);
}

.pricing-features li i.fa-check {
  color: var(--success);
  font-size: 12px;
  background-color: rgba(16, 185, 129, 0.15);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-features li.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.pricing-features li.disabled i.fa-times {
  color: var(--danger);
  font-size: 10px;
  background-color: rgba(239, 68, 68, 0.1);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}


/* -------------------------------------------------------------
 * FAQ SECTION
 * ------------------------------------------------------------- */

.faq-container {
  max-width: 800px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-white);
  transition: var(--transition-fast);
}

.faq-question i {
  font-size: 14px;
  color: var(--text-gray);
  transition: transform var(--transition-normal);
}

.faq-item.active {
  border-color: var(--border-card-hover);
  background-color: var(--bg-card-hover);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
  animation: faqFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer p {
  padding: 0 30px 24px 30px;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}


/* -------------------------------------------------------------
 * FAQ v2 SECTION — estilo chapadahost
 * ------------------------------------------------------------- */

.faq2-section {
  background-color: var(--bg-dark);
}

.faq2-container {
  max-width: 820px;
}

.faq2-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq2-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq2-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-normal);
}

.faq2-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.faq2-item.active {
  border-color: var(--border-card-hover);
  background-color: var(--bg-card-hover);
}

.faq2-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}

.faq2-text {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.4;
  transition: color var(--transition-fast);
}

.faq2-item.active .faq2-text {
  color: var(--text-white);
}

.faq2-chevron {
  font-size: 13px;
  color: var(--text-gray);
  flex-shrink: 0;
  transition: transform var(--transition-normal), color var(--transition-fast);
}

.faq2-item.active .faq2-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq2-answer {
  display: none;
}

.faq2-item.active .faq2-answer {
  display: block;
  animation: faqFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.faq2-answer p {
  padding: 0 24px 22px 24px;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  border-top: 1px solid var(--border-card);
  padding-top: 18px;
}

@media (max-width: 768px) {
  .faq2-question {
    padding: 18px 20px;
  }

  .faq2-text {
    font-size: 15px;
  }

  .faq2-answer p {
    padding: 16px 20px 18px 20px;
  }
}

/* -------------------------------------------------------------
 * FINAL CTA SECTION
 * ------------------------------------------------------------- */

.cta-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(0, 85, 255, 0.12) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.cta-box-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.cta-box-content h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-box-content p {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 40px;
}

.cta-box-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.cta-box-footer-note {
  font-size: 12px;
  color: var(--text-gray);
}


/* -------------------------------------------------------------
 * FOOTER
 * ------------------------------------------------------------- */

.footer {
  background-color: var(--bg-darker);
  border-top: 1px solid var(--border-card);
  padding: 80px 0 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .brand-desc {
  font-size: 14px;
  color: var(--text-gray);
  margin: 20px 0 24px 0;
  max-width: 320px;
}

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

.social-links a {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-links a:hover {
  background-color: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--primary-glow);
}

.footer-links h4, .footer-contact h4 {
  font-size: 16px;
  margin-bottom: 24px;
  font-weight: 600;
  position: relative;
}

.footer-links h4::after, .footer-contact h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
}

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

.footer-links a {
  font-size: 14px;
  color: var(--text-gray);
}

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

.footer-contact p {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 30px 0;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-gray);
}

.footer-author-link {
  color: var(--primary);
  font-weight: 500;
}

.footer-author-link:hover {
  color: var(--text-white);
  text-decoration: underline;
}

.text-blue {
  color: var(--primary);
}


/* -------------------------------------------------------------
 * RESPONSIVIDADE (MEDIA QUERIES)
 * ------------------------------------------------------------- */

@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .hero-title {
    font-size: 44px;
  }
  .footer-container {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .navbar {
    height: 70px;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  /* Mobile Menu */
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--bg-dark);
    flex-direction: column;
    align-items: center;
    padding: 60px 24px;
    gap: 30px;
    transition: var(--transition-normal);
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  #cta-nav {
    display: none; /* Hide WhatsApp button in navbar on small screens to save space */
  }
  
  .hero-section {
    padding-top: 130px;
    padding-bottom: 60px;
  }
  
  .hero-content {
    text-align: center;
    align-items: center;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  
  .hero-ctas .btn {
    width: 100%;
  }
  
  .hero-trust {
    justify-content: center;
  }
  
  .hero-visual {
    margin-top: 20px;
  }
  
  .mockup-frame {
    height: 320px;
  }
  
  .floating-card {
    scale: 0.95;
  }
  
  .sales-card {
    right: -10px;
  }
  
  .speed-card {
    left: -15px;
  }
  
  .cta-box {
    padding: 50px 24px;
  }
  
  .cta-box-content h2 {
    font-size: 28px;
  }
  
  .cta-box-actions {
    flex-direction: column;
    gap: 12px;
  }
  
  .cta-box-actions .btn {
    width: 100%;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-brand .brand-desc {
    max-width: 100%;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
  }
  
  .stat-item:last-child {
    border-bottom: none;
  }
  
  .hero-title {
    font-size: 34px;
  }
  
  .floating-card {
    display: none; /* Hide floating cards on extremely small mobile screens to prevent clutter */
  }
  
  .faq-question {
    padding: 20px;
    font-size: 15px;
  }
  
  .faq-answer p {
    padding: 0 20px 20px 20px;
  }
}
