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

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f6f8fb;
  --bg-page: #edf0f4;
  --bg-card: #ffffff;
  --border: #e5e9f0;
  --border-hover: #cbd2de;
  --accent: #1b3a6b;
  --accent-light: #2d5ba0;
  --accent-bright: #3b7ddd;
  --accent-glow: rgba(27, 58, 107, 0.06);
  --blue-gradient: linear-gradient(135deg, #1b3a6b 0%, #2d5ba0 100%);
  --cyan: #0ea5e9;
  --green: #10b981;
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-tertiary: #64748b;
  --text-muted: #94a3b8;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --font-mono: "Space Mono", monospace;
  --header-bg: rgba(255, 255, 255, 0.92);
  --topbar-bg: #1b3a6b;
}

[data-theme="dark"] {
  --bg-primary: #202020;
  --bg-secondary: transparent;
  --bg-page: #202020;
  --bg-card: #2a2a2a;
  --border: #333333;
  --border-hover: #444444;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-tertiary: #94a3b8;
  --text-muted: #64748b;
  --accent: #3b7ddd;
  --accent-light: #60a5fa;
  --blue-gradient: linear-gradient(135deg, #202020 0%, #1b3a6b 100%);
  --accent-glow: rgba(59, 125, 221, 0.1);
  --header-bg: rgba(32, 32, 32, 0.92);
  --topbar-bg: #202020;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .btn-calendly {
  background: white !important;
  color: #000000 !important;
}
[data-theme="dark"] .btn-calendly svg {
  stroke: #000000 !important;
}
[data-theme="dark"] .partner-cell {
  background: #ffffff !important;
}
[data-theme="dark"] footer .logo,
[data-theme="dark"] .footer-col h4 {
  color: #000000 !important;
}
[data-theme="dark"] .footer-col a:hover {
  color: #000000 !important;
}
[data-theme="dark"] .pricing-card {
  background: rgba(255, 255, 255, 0.03) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}
[data-theme="dark"] .pricing-card.popular {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: var(--accent) !important;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  touch-action: manipulation;
}
html::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}
body {
  background: var(--bg-page);
  background-image: radial-gradient(rgba(27, 58, 107, 0.06) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  color: var(--text-secondary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: manipulation;
}
body::-webkit-scrollbar {
  display: none;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}
.section {
  padding: 80px 0;
}
.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.section-label::before {
  content: "//";
  color: var(--cyan);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--text-tertiary);
  max-width: 520px;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-primary {
  background: var(--blue-gradient);
  color: white;
  box-shadow: 0 4px 16px rgba(27, 58, 107, 0.25);
}
.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(27, 58, 107, 0.35);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-green {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
}
.btn-green:hover {
  box-shadow: 0 8px 28px rgba(16, 185, 129, 0.35);
  transform: translateY(-2px);
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--topbar-bg);
  padding: 7px 0;
  font-size: 12px;
  color: white;
  transition: background 0.3s;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.topbar a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}
.topbar svg {
  width: 13px;
  height: 13px;
}
.topbar .btn-chamado-top {
  padding: 3px 12px;
  border-radius: 6px;
  background: var(--accent-bright);
  color: white;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid var(--accent-bright);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.topbar .btn-chamado-top:hover {
  background: transparent;
  color: white;
  border-color: white;
  transform: translateY(-1px);
}
.topbar .btn-area-top {
  padding: 3px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 11px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.topbar .btn-area-top:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-1px);
}

/* Theme Toggle */
.theme-toggle {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}
.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  transform: scale(1.05);
}
.theme-toggle svg {
  width: 14px;
  height: 14px;
}
[data-theme="dark"] .theme-toggle .sun-icon {
  display: flex;
}
[data-theme="dark"] .theme-toggle .moon-icon {
  display: none;
}
.theme-toggle .sun-icon {
  display: none;
}
.theme-toggle .moon-icon {
  display: flex;
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: var(--header-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, border-color 0.3s;
}
header .container {
  position: relative;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.logo {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 56px;
  height: 56px;
  background: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}
.logo-icon img {
  width: 108%;
  height: 108%;
  object-fit: cover;
}
.logo-icon .logo-light-img {
  display: block;
}
.logo-icon .logo-dark-img {
  display: none;
}
[data-theme="dark"] .logo-icon .logo-light-img {
  display: none;
}
[data-theme="dark"] .logo-icon .logo-dark-img {
  display: block;
}
nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
@media (max-width: 1200px) {
  nav { gap: 15px; }
  .logo { font-size: 28px; }
  .nav-cta a { padding: 9px 18px; font-size: 13px; }
}
nav a {
  color: var(--text-tertiary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover {
  color: var(--text-primary);
}
.nav-item-dropdown {
  position: static;
  display: inline-block;
  padding: 12px 0;
}
.dropdown-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg-primary);
  backdrop-filter: blur(20px);
  width: 1000px;
  max-width: 1080px;
  box-shadow: var(--shadow-lg);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 24px;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  pointer-events: none;
}
.nav-item-dropdown:hover .dropdown-content {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.dropdown-card {
  padding: 16px;
  border-radius: 12px;
  background: transparent;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
  border: 1px solid transparent;
}
.dropdown-content a.dropdown-card {
  color: initial;
}
.dropdown-card:hover {
  background: var(--bg-secondary);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.dropdown-card h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
}
.dropdown-card p {
  font-size: 11px;
  color: var(--text-tertiary);
  margin-bottom: 12px;
  line-height: 1.4;
}
.dropdown-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 14px;
}
.dropdown-card ul li {
  font-size: 11px;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 6px;
}
.dropdown-card ul li svg {
  color: var(--cyan);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}
.dropdown-card .result {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 6px;
}
.btn-fale {
  padding: 9px 22px;
  border-radius: 10px;
  background: var(--blue-gradient);
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(27, 58, 107, 0.2);
}
.btn-fale:hover {
  box-shadow: 0 4px 16px rgba(27, 58, 107, 0.3);
  transform: translateY(-1px);
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
}

/* ===== CAROUSEL ===== */
.carousel {
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
  transition: background 0.3s;
}
@media (min-width: 768px) {
  .carousel::before,
  .carousel::after {
    display: none;
  }
}
.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.carousel-slide {
  min-width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-slide img {
  width: 100%;
  height: auto;
  max-height: 520px;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  display: block;
  background-color: #ffffff;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-primary);
  opacity: 0.85;
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.carousel-btn:hover {
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
.carousel-btn svg {
  width: 18px;
  height: 18px;
  color: var(--text-primary);
}
.carousel-prev {
  left: 20px;
}
.carousel-next {
  right: 20px;
}
.carousel-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.carousel-dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 5px;
}

/* ===== STATS BAR ===== */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 56px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.stat-item {
  text-align: center;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===== PAIN POINTS ===== */
.pain-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pain-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 48px;
}
.pain-header .section-label {
  justify-content: center;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 20px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.pain-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ef4444, #f59e0b);
  opacity: 0;
  transition: opacity 0.3s;
}
.pain-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.pain-card:hover::before {
  opacity: 1;
}
.pain-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: #fef2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #ef4444;
}
.pain-card h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.35;
}
.pain-card p {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.6;
}
.pain-cta {
  text-align: center;
  margin-top: 40px;
}

/* ===== COMO FUNCIONA ===== */
.how-header {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 48px;
}
.how-header .section-label {
  justify-content: center;
}
.how-subtitle {
  font-size: 16px;
  color: var(--text-tertiary);
  margin-top: 6px;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.how-grid::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 17%;
  right: 17%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--border),
    transparent
  );
}
.how-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  transition: all 0.3s;
}
.how-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.how-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: white;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}
.how-card h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}
.how-card p {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.6;
}

/* ===== ABOUT ===== */
.about-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-text p {
  font-size: 15px;
  color: var(--text-tertiary);
  line-height: 1.75;
  margin-bottom: 12px;
}
.about-text p em {
  font-style: italic;
  color: var(--text-primary);
  font-weight: 500;
}
.about-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-card {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.3s;
}
.about-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.about-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.about-card h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}
.about-card p {
  font-size: 12px;
  color: var(--text-tertiary);
  line-height: 1.5;
}
.about-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}
.about-service-tag {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}
.about-service-tag svg {
  color: var(--accent-bright);
  flex-shrink: 0;
}

/* ===== PARTNERS ===== */
.partners-section {
  text-align: center;
}
.partners-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 40px;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 14px;
  overflow: hidden;
  max-width: 780px;
  margin: 0 auto;
  border: 1px solid var(--border);
}
.partner-cell {
  background: var(--bg-card);
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.partner-cell:hover {
  background: var(--bg-secondary);
}
.partner-logo {
  max-width: 180px;
  max-height: 60px;
  object-fit: contain;
}

/* ===== PRICING ===== */
.pricing-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-header {
  text-align: center;
  max-width: 460px;
  margin: 0 auto 10px;
}
.pricing-header .section-label {
  justify-content: center;
}
.pricing-sub {
  text-align: center;
  font-size: 15px;
  color: var(--text-tertiary);
  margin-bottom: 44px;
}
.marquee-container {
  overflow: hidden;
  padding: 16px 0;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.marquee-track {
  display: flex;
  gap: 40px;
  animation: marquee 20s linear infinite;
  width: max-content;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--border-hover);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pricing-card {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 28px 20px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
}
.pricing-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}
.pricing-card > * {
  position: relative;
  z-index: 1;
}
.pricing-card:hover {
  box-shadow: 0 16px 40px rgba(27, 58, 107, 0.12);
  transform: translateY(-4px);
  border-color: rgba(59, 125, 221, 0.25);
}
.pricing-card:hover::before { opacity: 1; }
.pricing-card.popular {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(27, 58, 107, 0.15);
}
.pricing-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-gradient);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pricing-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 3px;
}
.pricing-price span {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}
.pricing-sla {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
  font-weight: 700;
}
.pricing-features {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--text-tertiary);
  padding: 6px 0;
  border-bottom: 1px solid var(--bg-secondary);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li svg {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pricing-btn-outline {
  border: 2px solid var(--border);
  color: var(--text-secondary);
  background: transparent;
}
.pricing-btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.pricing-btn-fill {
  background: var(--blue-gradient);
  color: white;
  border: 2px solid transparent;
}
.pricing-btn-fill:hover {
  box-shadow: 0 4px 16px rgba(27, 58, 107, 0.25);
}
.pricing-btn-special {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}
.pricing-btn-special:hover { background: var(--accent-glow); }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s;
}
.contact-info-card:hover { box-shadow: var(--shadow-sm); }
.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-info-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1px;
  font-weight: 700;
}
.contact-info-value {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}
.contact-form-wrapper {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.contact-form-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 5px;
  font-weight: 700;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 13px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 13px;
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-bright);
  box-shadow: 0 0 0 3px rgba(59, 125, 221, 0.08);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { min-height: 80px; resize: vertical; }
.form-select { appearance: none; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit {
  width: 100%;
  padding: 13px;
  background: var(--blue-gradient);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(27, 58, 107, 0.2);
}
.form-submit:hover {
  box-shadow: 0 6px 20px rgba(27, 58, 107, 0.3);
  transform: translateY(-1px);
}

/* ===== FOOTER ===== */
footer {
  background: var(--text-primary);
  padding: 48px 0 28px;
  color: #94a3b8;
}
footer .logo { color: white; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p {
  font-size: 13px;
  color: #64748b;
  margin-top: 12px;
  line-height: 1.6;
  max-width: 240px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  color: #64748b;
  text-decoration: none;
  font-size: 13px;
  padding: 2px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #475569;
}
.footer-standards {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 0;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px;
}
.standard-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.standard-label {
  font-size: 11px;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.standard-logo {
  opacity: 0.5;
  transition: opacity 0.3s;
  color: #94a3b8;
}
.standard-item:hover .standard-logo { opacity: 0.8; }

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  z-index: 999;
  text-decoration: none;
  transition: all 0.3s;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}
.whatsapp-fab svg { width: 26px; height: 26px; fill: white; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate { animation: fadeInUp 0.5s ease forwards; opacity: 0; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.cta-banner { text-align: center; max-width: 600px; margin: 0 auto; }
.ck { color: var(--green); flex-shrink: 0; margin-top: 1px; }

.nav-mobile-cta {
  display: none;
}

@media (max-width: 1024px) {
  .pain-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .section { padding: 48px 0; }
  nav, .nav-cta { display: none; }
  .mobile-toggle { display: block; }
  nav.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-primary);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
    gap: 15px;
    z-index: 100;
    align-items: center;
    text-align: center;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    padding-bottom: 40px;
  }
  .nav-mobile-cta {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
  }
  .btn-chamado-mobile,
  .btn-area-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    width: 100%;
  }
  .btn-chamado-mobile {
    background: var(--blue-gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(27, 58, 107, 0.2);
  }
  .btn-area-mobile {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 1px solid var(--border);
  }
  nav.active .nav-item-dropdown > a {
    justify-content: center;
  }
  nav.active .dropdown-content {
    position: static; 
    visibility: visible; 
    opacity: 1; 
    transform: none; 
    min-width: 100%; 
    box-shadow: none; 
    border: none; 
    padding: 10px 0; 
    display: flex !important; 
    flex-direction: column; 
    gap: 15px; 
    pointer-events: auto;
    align-items: center;
  }
  nav.active .nav-item-dropdown > a svg { display: none; }
  nav.active .nav-item-dropdown.open .dropdown-content { display: flex !important; }
  nav.active .nav-item-dropdown.open > a svg { transform: rotate(180deg); }
  nav.active .dropdown-card { padding: 8px 0; }
  nav.active .dropdown-card h4 { font-size: 13px; margin-bottom: 2px; }
  nav.active .dropdown-card p, nav.active .dropdown-card ul, nav.active .dropdown-card .result { display: none; }
  .topbar .container { flex-wrap: nowrap; }
  .topbar-left { flex: 1; display: flex; align-items: center; }
  .topbar-right { display: flex; margin-left: auto; gap: 15px; }
  .topbar-right > *:not(.theme-toggle):not(.phone-link) { display: none; }
  .stats-bar { gap: 24px; flex-wrap: wrap; }
  .pain-grid, .how-grid { grid-template-columns: 1fr; }
  .how-grid::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-standards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .marquee-container { display: none; }
  .carousel-btn { width: 36px; height: 36px; }
  .carousel-prev { left: 12px; }
  .carousel-next { right: 12px; }
  .carousel-slide img { 
    height: auto; 
    min-height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain; 
  }
  .carousel-dots { bottom: 30px; }
}

/* ===== SIDE CONTACT BUTTON ===== */
.side-contact-btn {
  position: fixed; right: 0; top: 50%; transform: rotate(-90deg); transform-origin: bottom right; z-index: 998; background: var(--blue-gradient); color: white; padding: 12px 24px; border-radius: 12px 12px 0 0; display: flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--font-display); font-weight: 700; font-size: 14px; box-shadow: 0 4px 16px rgba(27, 58, 107, 0.25); transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid rgba(255, 255, 255, 0.1); white-space: nowrap;
}
.side-contact-btn:hover { transform: rotate(-90deg); box-shadow: 0 8px 24px rgba(27, 58, 107, 0.35); }
.side-contact-btn svg { transform: rotate(90deg); width: 18px; height: 18px; fill: white; }

/* ===== MODAL CONTACT ===== */
.modal {
  display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(15, 23, 42, 0.6); backdrop-filter: blur(8px); align-items: center; justify-content: center;
}
.modal.active { display: flex; }
.modal-content {
  background: var(--bg-card); padding: 40px; border-radius: 24px; max-width: 450px; width: 95%; box-shadow: var(--shadow-lg); position: relative; animation: modalFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.close-modal { position: absolute; right: 24px; top: 18px; font-size: 28px; cursor: pointer; color: var(--text-muted); transition: color 0.2s; }
.close-modal:hover { color: var(--text-primary); }
.modal-content h2 { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--text-primary); margin-bottom: 24px; line-height: 1.3; }
.modal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.modal-item label { display: block; font-family: var(--font-mono); text-transform: uppercase; font-size: 10px; letter-spacing: 1px; color: var(--accent-bright); font-weight: 700; margin-bottom: 4px; }
.modal-item a, .modal-item span { font-size: 14px; font-weight: 600; color: var(--text-primary); text-decoration: none; display: block; }
.modal-item a:hover { color: var(--accent); }

/* ===== COOKIE CONSENT ===== */
.cookie-banner {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(150%); width: 90%; max-width: 550px; background: var(--bg-card); padding: 24px; border-radius: 16px; box-shadow: var(--shadow-lg); z-index: 3000; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); border: 1px solid var(--border);
}
.cookie-banner.active { transform: translateX(-50%) translateY(0); }
.cookie-container { display: flex; flex-direction: column; gap: 16px; }
.cookie-container p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
.cookie-container a { color: var(--accent); font-weight: 700; text-decoration: none; }
.cookie-buttons { display: flex; gap: 12px; justify-content: flex-end; }
.cookie-btn-fill { background: var(--blue-gradient); color: white; border: none; padding: 9px 20px; border-radius: 8px; font-weight: 700; font-size: 13px; cursor: pointer; transition: all 0.2s; }
.cookie-btn-fill:hover { box-shadow: 0 4px 12px rgba(27, 58, 107, 0.25); transform: translateY(-1px); }
.cookie-btn-outline { background: transparent; color: var(--text-tertiary); border: 1px solid var(--border); padding: 9px 20px; border-radius: 8px; font-weight: 600; font-size: 13px; cursor: pointer; transition: all 0.2s; }
.cookie-btn-outline:hover { background: var(--bg-secondary); color: var(--text-primary); }
.cookie-revisit { position: fixed; bottom: 24px; left: 24px; z-index: 997; display: none; }
.cookie-revisit.active { display: block; }
.cookie-revisit button { width: 42px; height: 42px; background: #0056a7; border: none; border-radius: 10px; cursor: pointer; display: flex; align-items: center; justify-content: center; color: white; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); transition: all 0.3s; }
.cookie-revisit button:hover { transform: scale(1.1); background: var(--accent); }
.cookie-revisit svg { width: 22px; height: 22px; }

/* SECAO EQUIPE */
.equipe-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  margin-top: 24px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid var(--border);
}
.equipe-img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ===== PRIVACY PAGE STYLES ===== */
.content-section {
  padding: 80px 0;
  background: var(--bg-page);
  min-height: 60vh;
  transition: background 0.3s;
}
.btn-back {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 32px;
  transition: transform 0.2s;
}
.btn-back:hover {
  transform: translateX(-5px);
}
.content-header {
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
}
.content-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.5rem);
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}
.content-header p {
  color: var(--text-muted);
  font-size: 14px;
}
.text-content h2 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-primary);
  margin: 40px 0 16px;
}
.text-content p {
  color: var(--text-tertiary);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}
.text-content ul {
  margin-bottom: 24px;
  padding-left: 20px;
}
.text-content li {
  color: var(--text-tertiary);
  margin-bottom: 10px;
  line-height: 1.6;
}
.text-content strong {
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .content-section { padding: 40px 0; }
  .content-header h1 { font-size: 24px; }
}
