/* ==========================================================================
   WC REPASSE - DESIGN SYSTEM & STYLESHEET
   Brand Colors: Electric Blue (#0055FF / #0066FF), Dark Slate (#0A0D14), White (#FFFFFF)
   ========================================================================== */

:root {
  /* Color Tokens */
  --color-bg-dark: #07090e;
  --color-bg-card: #101420;
  --color-bg-card-hover: #161c2e;
  --color-bg-elevated: #1a2238;
  
  --color-primary: #0055FF;
  --color-primary-hover: #0044CC;
  --color-primary-light: rgba(0, 85, 255, 0.15);
  --color-primary-glow: rgba(0, 85, 255, 0.4);
  
  --color-accent-green: #25D366; /* WhatsApp Green */
  --color-accent-green-glow: rgba(37, 211, 102, 0.4);
  
  --color-text-main: #F0F4FD;
  --color-text-muted: #8E9BAE;
  --color-text-dark: #07090e;
  
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-bright: rgba(0, 85, 255, 0.3);
  
  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Shadows & Glows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.7);
  --glow-blue: 0 0 30px rgba(0, 85, 255, 0.35);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

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

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

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

ul {
  list-style: none;
}

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

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

.text-blue { color: var(--color-primary); }
.gradient-text {
  background: linear-gradient(135deg, #FFFFFF 30%, #4D8BFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.center { text-align: center; }

/* Grid Helpers */
.grid {
  display: grid;
  gap: 24px;
}
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* Section Header */
.section {
  padding: 90px 0;
  position: relative;
}

.section-header {
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--color-primary-light);
  border: 1px solid var(--color-border-bright);
  color: #6699FF;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto;
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #0066FF 0%, #0044CC 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.6);
  background: linear-gradient(135deg, #1A75FF 0%, #0052CC 100%);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #28E06C 0%, #1B9B4B 100%);
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-border-bright);
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

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

.btn-full { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 0.9rem; }

/* ==========================================================================
   OFFICIAL WC REPASSE BRAND LOGO STYLING (MATCHING ATTACHED DESIGN)
   ========================================================================== */

.brand-logo-link {
  display: inline-block;
}

.wc-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  user-select: none;
}

.wc-logo-top {
  width: 170px;
  height: 28px;
  margin-bottom: -3px;
}

.car-silhouette {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 4px rgba(0, 85, 255, 0.4));
}

.wc-logo-main {
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
}

.text-wc {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 900;
  color: #0055FF;
  letter-spacing: -1px;
  text-shadow: 0 0 15px rgba(0, 85, 255, 0.6);
  background: linear-gradient(180deg, #3377FF 0%, #0044CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-repasse {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.wc-logo-banner {
  background: #0055FF;
  border-radius: 4px;
  padding: 3px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
  box-shadow: 0 2px 8px rgba(0, 85, 255, 0.4);
}

.checkered-flag {
  display: grid;
  grid-template-columns: repeat(4, 3px);
  grid-template-rows: repeat(2, 3px);
  gap: 1px;
  background: #FFFFFF;
  padding: 1px;
  border-radius: 1px;
}

.checkered-flag span {
  width: 3px;
  height: 3px;
  background: #0055FF;
}

.checkered-flag span:nth-child(2),
.checkered-flag span:nth-child(4),
.checkered-flag span:nth-child(5),
.checkered-flag span:nth-child(7) {
  background: #07090e;
}

.banner-text {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */

.top-announcement {
  background: linear-gradient(90deg, #091224 0%, #003399 50%, #091224 100%);
  border-bottom: 1px solid rgba(0, 85, 255, 0.3);
  padding: 8px 0;
  font-size: 0.85rem;
}

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

.announcement-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 10px #25D366;
  animation: pulse-green 1.8s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.announcement-text {
  font-weight: 600;
  color: #E0E8FF;
}

.announcement-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
}

.timer-digits {
  font-family: var(--font-heading);
  font-weight: 800;
  color: #00D0FF;
  background: rgba(0, 0, 0, 0.4);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 1px;
}

/* ==========================================================================
   SITE HEADER & NAVIGATION
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 9, 14, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  padding: 12px 0;
  transition: var(--transition-normal);
}

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

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: #FFFFFF;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--color-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  color: #FFFFFF;
  font-size: 1.2rem;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
}

/* Mobile Drawer Overlay & Content */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--color-bg-card);
  z-index: 2000;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
  transition: right 0.3s ease;
  border-left: 1px solid var(--color-border);
}

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

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-border);
}

.drawer-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}

.drawer-close {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 1.4rem;
  cursor: pointer;
}

.drawer-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-main);
}

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

.hero-section {
  padding: 90px 0 70px 0;
  position: relative;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 85, 255, 0.25) 0%, rgba(7, 9, 14, 0) 70%);
  pointer-events: none;
  filter: blur(60px);
}

.hero-content {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 85, 255, 0.1);
  border: 1px solid rgba(0, 85, 255, 0.3);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #6699FF;
  margin-bottom: 24px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 8px #25D366;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  max-width: 760px;
  margin: 0 auto 40px auto;
}

/* 4 Mandatory Pillars Grid in Hero */
.hero-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 45px;
}

.pillar-card {
  background: rgba(16, 20, 32, 0.7);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
  padding: 18px 14px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  transition: var(--transition-normal);
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-bright);
  background: var(--color-bg-elevated);
}

.pillar-card.highlight-glow {
  border-color: rgba(0, 85, 255, 0.5);
  box-shadow: 0 0 20px rgba(0, 85, 255, 0.2);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-primary-light);
  color: #3377FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

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

.pillar-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: #FFFFFF;
  line-height: 1.2;
}

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

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.btn-hero {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   DIFFERENTIALS (4 CORE PILLARS SECTION)
   ========================================================================== */

.differentials-section {
  background: linear-gradient(180deg, var(--color-bg-dark) 0%, #0c101a 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

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

.diff-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-border-bright);
  box-shadow: var(--shadow-md), var(--glow-blue);
}

.diff-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
}

.diff-icon-box {
  width: 56px;
  height: 56px;
  background: var(--color-primary-light);
  border: 1px solid var(--color-border-bright);
  border-radius: 16px;
  color: #3377FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.diff-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.diff-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.diff-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #00D0FF;
  background: rgba(0, 208, 255, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
}

/* ==========================================================================
   INTERACTIVE FIPE CALCULATOR
   ========================================================================== */

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

.calculator-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.calc-left h2 {
  font-size: 2.3rem;
}

.calc-features-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.calc-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--color-text-main);
}

.calc-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-bright);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 85, 255, 0.15);
}

.calc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.calc-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #FFFFFF;
}

.calc-badge {
  background: var(--color-primary);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
}

.calc-group {
  margin-bottom: 24px;
}

.calc-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.type-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.type-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.type-btn.active {
  background: var(--color-primary-light);
  border-color: var(--color-primary);
  color: #FFFFFF;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.fipe-val-display {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #00D0FF;
}

input[type="range"] {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--color-bg-elevated);
  outline: none;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 6px;
}

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

.chip-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  padding: 10px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.chip-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #FFFFFF;
  box-shadow: 0 0 12px rgba(0, 85, 255, 0.4);
}

.calc-result-box {
  background: rgba(7, 9, 14, 0.6);
  border: 1px dashed var(--color-border-bright);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
}

.result-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.result-divider {
  height: 1px;
  background: var(--color-border);
  margin: 12px 0;
}

.result-total {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.total-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #25D366;
  font-weight: 700;
}

.total-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: #25D366;
  line-height: 1.1;
  text-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
}

/* ==========================================================================
   VEHICLE CATALOG SHOWCASE
   ========================================================================== */

.catalog-section {
  background: #090c14;
}

.catalog-filters {
  display: flex;
  align-items: center;
  gap: 12px;
}

.filter-btn {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  padding: 10px 20px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(0, 85, 255, 0.3);
}

.vehicle-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.vehicle-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-border-bright);
  box-shadow: var(--shadow-md);
}

.card-image-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #07090e;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vehicle-card:hover .card-image-wrap img {
  transform: scale(1.08);
}

.badge-discount {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #FF3366 0%, #CC0033 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(255, 51, 102, 0.4);
}

.card-status-badges {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
}

.status-badge {
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-category {
  font-size: 0.75rem;
  font-weight: 800;
  color: #3377FF;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 16px;
}

.card-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.card-specs span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-pricing {
  margin-bottom: 20px;
}

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

.price-repasse {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 4px 0;
}

.label-repasse {
  font-size: 0.85rem;
  font-weight: 800;
  color: #00D0FF;
}

.val-repasse {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: #FFFFFF;
}

.savings-note {
  font-size: 0.8rem;
  font-weight: 700;
  color: #25D366;
}

.card-btn {
  margin-top: auto;
  width: 100%;
}

.catalog-cta-box {
  margin-top: 50px;
  background: linear-gradient(135deg, #0f182e 0%, #091224 100%);
  border: 1px solid var(--color-border-bright);
  border-radius: 20px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-box-content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.cta-box-content p {
  color: var(--color-text-muted);
}

/* ==========================================================================
   HOW IT WORKS (STEPS SECTION)
   ========================================================================== */

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

.step-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  transition: var(--transition-normal);
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
}

.step-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: var(--color-bg-elevated);
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.testimonials-section {
  background: #090c14;
}

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

.stars {
  color: #FFB800;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.testimonial-text {
  font-style: italic;
  color: #D0D8EA;
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

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

.author-avatar {
  width: 46px;
  height: 46px;
  background: var(--color-primary-light);
  border-radius: 50%;
  color: #3377FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #FFFFFF;
  font-size: 0.95rem;
}

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

/* ==========================================================================
   FAQ ACCORDION SECTION
   ========================================================================== */

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

.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.faq-item.active {
  border-color: var(--color-border-bright);
}

.faq-question {
  width: 100%;
  padding: 22px 26px;
  background: none;
  border: none;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-icon {
  color: #3377FF;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 26px;
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 26px 22px 26px;
}

/* ==========================================================================
   REQUEST FORM / LEAD CAPTURE
   ========================================================================== */

.request-section {
  background: #090c14;
}

.request-box {
  background: linear-gradient(135deg, #101524 0%, #0a0e18 100%);
  border: 1px solid var(--color-border-bright);
  border-radius: 28px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  box-shadow: var(--shadow-lg);
}

.request-info h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-top: 10px;
  margin-bottom: 16px;
}

.request-info p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.request-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
}

.request-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-muted);
}

.form-group input, .form-group select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 14px 16px;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus {
  border-color: var(--color-primary);
  background: rgba(0, 85, 255, 0.08);
}

.form-group select option {
  background: var(--color-bg-card);
  color: #FFFFFF;
}

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

.site-footer {
  background: #05070a;
  border-top: 1px solid var(--color-border);
  padding: 70px 0 0 0;
}

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

.footer-logo {
  margin-bottom: 16px;
}

.footer-desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

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

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

.social-links a:hover {
  background: var(--color-primary);
  color: #FFFFFF;
  border-color: var(--color-primary);
}

.footer-links-col h4, .footer-contact-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 20px;
}

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

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

.footer-links-col a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.footer-contact-col p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mt-15 { margin-top: 15px; }

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 24px 0;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.disclaimer {
  max-width: 500px;
  text-align: right;
  font-size: 0.75rem;
  opacity: 0.7;
}

/* ==========================================================================
   FLOATING STICKY WHATSAPP BUTTON
   ========================================================================== */

.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  transition: var(--transition-normal);
}

.floating-whatsapp:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.pulse-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  border: 2px solid #25D366;
  animation: pulse-ring 2s infinite;
  pointer-events: none;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* ==========================================================================
   TOAST NOTIFICATIONS
   ========================================================================== */

.toast-container {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: rgba(16, 20, 32, 0.95);
  border: 1px solid var(--color-border-bright);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  padding: 14px 20px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  animation: slide-in 0.4s ease forwards;
}

@keyframes slide-in {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

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

@media (max-width: 1024px) {
  .hero-pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .calculator-wrapper { grid-template-columns: 1fr; }
  .request-box { grid-template-columns: 1fr; padding: 35px; }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .catalog-cta-box { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-toggle { display: block; }
  .header-btn span { display: none; }
  
  .wc-logo-top { width: 140px; height: 22px; }
  .text-wc, .text-repasse { font-size: 1.8rem; }
  .banner-text { font-size: 0.52rem; }

  .top-announcement { font-size: 0.78rem; }
  .announcement-content { flex-direction: column; gap: 4px; text-align: center; }

  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 0.98rem; }
  .hero-pillars-grid { grid-template-columns: 1fr; }

  .hero-actions { flex-direction: column; width: 100%; }
  .btn-hero { width: 100%; }
  .hero-trust { flex-direction: column; gap: 10px; }

  .section-title { font-size: 1.8rem; }
  
  .catalog-filters {
    overflow-x: auto;
    padding-bottom: 10px;
    width: 100%;
    white-space: nowrap;
  }

  .footer-container { grid-template-columns: 1fr; }
  .footer-bottom-content { flex-direction: column; text-align: center; }
  .disclaimer { text-align: center; }
  
  .floating-label { display: none; }
  .floating-whatsapp { padding: 16px; border-radius: 50%; }
}
