:root {
  --bg-primary: #FFFFFF;
  --text-primary: #0D0D0D;
  --text-secondary: #4A4A4A;
  --text-tertiary: #767676;
  --accent-primary: #E8001D;
  --accent-hover: #C0001A;
  --surface-card: #F7F7F7;
  --border-soft: #E5E5E5;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

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

body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(36px, 5vw, 68px); letter-spacing: -0.02em; }
h2 { font-size: clamp(32px, 4vw, 40px); letter-spacing: -0.01em; }
h3 { font-size: clamp(24px, 3vw, 28px); }
p { font-size: 16px; color: var(--text-secondary); }
.small { font-size: 14px; color: var(--text-tertiary); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--accent-primary);
  color: #FFF;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 0, 29, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-soft);
}

.btn-outline:hover {
  border-color: var(--text-primary);
  transform: translateY(-2px);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
  pointer-events: none;
}

/* Skip Navigation Link (Accessibility) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 9999;
  padding: 8px 24px;
  background: var(--accent-primary);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 0 0 8px 0;
  text-decoration: none;
  transition: none;
}
.skip-link:focus {
  position: fixed;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  overflow: visible;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* Header */
.main-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 16px 0;
  border: 1px solid transparent;
  border-radius: 0px;
  background-color: transparent;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0);
}

.main-header.scrolled {
  top: 12px;
  width: calc(100% - 48px);
  max-width: 1200px;
  padding: 8px 0;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

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

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

/* Logo Image Styles */
.logo-img {
  height: auto;
  max-height: 80px;
  width: auto;
  object-fit: contain;
}

/* Footer logo specifically */
.main-footer .logo-img {
  max-height: 120px;
  width: 100%;
  max-width: 320px;
  object-position: left center;
}

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

.main-nav a {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-secondary);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent-primary);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: var(--text-primary);
}

.main-nav > ul > li:not(.has-dropdown) > a:hover::after {
  width: 100%;
}

/* Dropdown Menu */
.has-dropdown {
  position: relative;
}

.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 5px;
  margin-bottom: 2px;
  position: static;
  background: none;
  transition: transform 0.3s ease;
}

.has-dropdown:hover > a::after {
  transform: rotate(-135deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 12px 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
  z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu a::after {
  display: none !important;
}

.dropdown-menu a:hover {
  background: rgba(232, 0, 29, 0.04);
  color: var(--accent-primary);
}

.has-dropdown > a:hover::after {
  width: 5px;
}

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

.header-icon-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  opacity: 0.6;
  transition: all 0.2s;
  text-decoration: none;
}

.header-icon-btn:hover {
  opacity: 1;
  color: var(--accent-primary);
}

.header-icon-btn svg {
  width: 100%;
  height: 100%;
}

.lang-selector {
  display: flex;
  gap: 8px;
}

.lang-flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  opacity: 0.6;
}

.lang-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lang-flag:hover {
  opacity: 1;
}

.lang-flag.active {
  opacity: 1;
  border-color: var(--accent-primary);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 12px 7px;
  position: relative;
  z-index: 10000;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  flex-shrink: 0;
}

.hamburger span {
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: var(--text-primary);
  left: 7px;
  transition: all 0.3s;
}

.hamburger span:nth-child(1) { top: 12px; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 12px; }

.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* Gate Overlay */
.gate-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.gate-card {
  background: #FFF;
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 480px;
  text-align: center;
  border: 1px solid var(--border-soft);
}

.gate-card .logo {
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
}

.gate-card h2 {
  font-size: 24px;
  margin-bottom: 32px;
}

.gate-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gate-input {
  padding: 16px;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}

.gate-input:focus {
  border-color: var(--accent-primary);
}

.gate-input.error {
  border-color: var(--accent-primary);
  animation: shake 0.3s;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

/* Gate Logo Image */
.gate-logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.gate-logo-img {
  max-width: 320px;
  max-height: 80px;
  height: auto;
  object-fit: contain;
}

/* Gate Helper Text */
.gate-helper-text {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: -8px;
  text-align: left;
  font-weight: 500;
}

/* Phone Country Selector */
.gate-phone-group {
  display: flex;
  gap: 0;
  position: relative;
}

.phone-country-selector {
  position: relative;
  flex-shrink: 0;
}

.phone-country-selected {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 12px;
  border: 1px solid var(--border-soft);
  border-right: none;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  background: #fff;
  height: 100%;
  transition: border-color 0.3s;
  user-select: none;
}

.phone-country-selected:hover {
  border-color: var(--accent-primary);
}

.phone-flag-img {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}

.phone-country-code {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

.phone-chevron {
  opacity: 0.5;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.phone-country-selector.open .phone-chevron {
  transform: rotate(180deg);
}

.gate-phone-input {
  border-radius: 0 8px 8px 0 !important;
  flex: 1;
  min-width: 0;
}

/* Phone Country Dropdown */
.phone-country-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  z-index: 100;
  max-height: 280px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.phone-country-selector.open .phone-country-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.phone-country-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.15s ease;
  font-size: 14px;
  color: var(--text-secondary);
}

.phone-country-option:first-child {
  border-radius: 12px 12px 0 0;
}

.phone-country-option:last-child {
  border-radius: 0 0 12px 12px;
}

.phone-country-option:hover {
  background: rgba(232, 0, 29, 0.04);
  color: var(--accent-primary);
}

.phone-country-option img {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}

.phone-country-option span {
  font-weight: 500;
}

/* Scrollbar for dropdown */
.phone-country-dropdown::-webkit-scrollbar {
  width: 4px;
}

.phone-country-dropdown::-webkit-scrollbar-track {
  background: transparent;
}

.phone-country-dropdown::-webkit-scrollbar-thumb {
  background: var(--border-soft);
  border-radius: 4px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 80px;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Orbital Icons Animation */
.orbital-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1250px;
  height: 1250px;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 38%, rgba(0,0,0,0) 65%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 38%, rgba(0,0,0,0) 65%);
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232, 0, 29, 0.08);
}

.orbit-ring-outer {
  width: 1200px;
  height: 1200px;
  top: 25px;
  left: 25px;
  animation: orbitSpin 60s linear infinite;
}

.orbit-ring-inner {
  width: 800px;
  height: 800px;
  top: 225px;
  left: 225px;
  animation: orbitSpin 42s linear infinite reverse;
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.orbit-icon {
  position: absolute;
  width: 52px;
  height: 52px;
  margin-left: -26px;
  margin-top: -26px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(232, 0, 29, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.orbit-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(0.3);
}

.orbit-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent-primary);
  opacity: 0.6;
}

.orbit-icon--text span {
  font-size: 14px;
  font-weight: 800;
  color: var(--accent-primary);
  opacity: 0.7;
  letter-spacing: -0.02em;
}

.orbit-icon:nth-child(even) svg,
.orbit-icon:nth-child(even) img {
  opacity: 0.8;
}

.orbital-fade {
  display: none; /* Using CSS mask on container instead */
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--accent-primary);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 24px;
}

.hero h1 {
  text-align: center;
  margin-bottom: 24px;
}

/* ── global overflow guard ── */
html { overflow-x: hidden; }

/* Animated gradient on "Presença Digital" */
.hero-gradient {
  background: linear-gradient(90deg, var(--accent-primary), #ff4d6a, #ff8a3d, var(--accent-primary));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroGradientShift 4s ease-in-out infinite;
}

@keyframes heroGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Green highlight box on "Faturamento Real" */
.hero-highlight {
  position: relative;
  display: inline;
  padding: 2px 12px;
  background: rgba(144, 238, 144, 0.18);
  border-radius: 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero p {
  font-size: clamp(18px, 2vw, 20px);
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
  text-align: left;
  max-width: 100%;
}

.avatars {
  display: flex;
  align-items: center;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #E2E8F0;
  border: 3px solid #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-secondary);
  margin-left: -16px;
  object-fit: cover;
}

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

.proof-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.proof-count {
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  line-height: 1.2;
}

.proof-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.stars {
  color: #F59E0B;
  letter-spacing: 2px;
  font-size: 16px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.stat-item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-primary);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-10px) translateX(-50%); }
  60% { transform: translateY(-5px) translateX(-50%); }
}

/* Sections Global */
section {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* About Evidence Section */
.about-evidence {
  padding: 120px 0;
  background-color: var(--bg-primary);
}

.evidence-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
}

.evidence-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.evidence-left h2 {
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.evidence-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.evidence-right p {
  color: var(--text-tertiary);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.evidence-right p strong {
  color: var(--text-primary);
}

.evidence-link {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(to right, var(--accent-primary), var(--accent-hover)) 1;
  transition: opacity 0.3s;
}

.evidence-link:hover {
  opacity: 0.7;
}

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

.evidence-card {
  border: 1px solid var(--border-soft);
  border-radius: 32px;
  padding: 48px 40px;
  position: relative;
  background: var(--bg-primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.evidence-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}

.card-icon-wrapper {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 48px;
  height: 48px;
  background-color: #F3F4F6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon-wrapper svg {
  width: 24px;
  height: 24px;
  color: var(--accent-primary);
}

.evidence-card h3 {
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  margin-top: 24px;
  color: var(--text-primary);
}

.evidence-card p {
  color: var(--text-tertiary);
  font-size: 15px;
  line-height: 1.6;
}

.evidence-card p strong {
  color: var(--text-primary);
}

@media (max-width: 992px) {
  .evidence-header {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .evidence-cards {
    grid-template-columns: 1fr;
  }
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}

.services-header-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.services-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--text-primary);
  color: #fff;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-dark:hover {
  background: var(--accent-primary);
  transform: translateY(-2px);
}

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

.service-card {
  background-color: var(--surface-card);
  padding: 40px 32px;
  border-radius: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  border-color: var(--border-soft);
}

.service-icon {
  width: 56px;
  height: 56px;
  background-color: #FFF;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent-primary);
}

.service-card h3 {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-card p {
  margin-bottom: 24px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
}

.service-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 2px solid var(--accent-primary);
  padding-bottom: 2px;
  display: inline-block;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: var(--accent-primary);
}

/* Proof Section */
.proof-section {
  padding: 100px 0;
}

.proof-header {
  margin-bottom: 48px;
}

.proof-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.02em;
}

/* Stats Row */
.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.2fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 80px;
}

.stat-circle-item {
  text-align: center;
}

.stat-circle {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
}

.stat-circle svg {
  width: 120px;
  height: 120px;
  transform: rotate(-90deg);
}

.stat-circle-bg {
  fill: none;
  stroke: rgba(232, 0, 29, 0.08);
  stroke-width: 6;
}

.stat-circle-fill {
  fill: none;
  stroke: var(--accent-primary);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 326.73;
  transition: stroke-dashoffset 1.5s ease;
}

/* Stat Arrow Icon */
.stat-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  line-height: 1;
}

.stat-arrow {
  display: block;
  width: 14px !important;
  height: 14px !important;
  flex-shrink: 0;
}

.stat-circle-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Highlight Card */
.stat-highlight-card {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.stat-highlight-card h3 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
}

.stat-highlight-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.stat-highlight-card .btn-dark {
  background: #fff;
  color: var(--text-primary);
}

.stat-highlight-card .btn-dark:hover {
  background: var(--accent-primary);
  color: #fff;
}

/* Dashed Arrow Decoration */
.dashed-arrow-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Avatar Stack */
.avatar-stack-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-stack {
  display: flex;
}

.avatar-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
}

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

.ver-todos-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.ver-todos-link:hover {
  color: var(--accent-primary);
}

/* Reviews Section */
.reviews-section {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: end;
  padding-top: 48px;
  border-top: 1px solid var(--border-soft);
}

.reviews-carousel {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
  min-width: 100%;
  padding: 40px 0;
  display: none;
  flex-direction: column;
  gap: 24px;
}

.review-card.active {
  display: flex;
}

.review-quote svg {
  opacity: 0.6;
}

.review-text {
  font-size: 18px;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-primary);
  max-width: 520px;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-author strong {
  font-size: 16px;
  font-weight: 700;
}

.review-author span {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Review Navigation */
.review-nav {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.review-arrow {
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--accent-primary);
  transition: transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-arrow:hover {
  transform: scale(1.2);
}

/* Reviews Badge */
.reviews-badge {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.reviews-rating {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.stars-row {
  display: flex;
  gap: 2px;
}

.stars-row svg {
  width: 22px;
  height: 22px;
  fill: #FFB800;
}

.reviews-count {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.4;
}

.google-verified {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.google-icon {
  flex-shrink: 0;
}

.google-verified-text {
  display: flex;
  align-items: center;
  gap: 4px;
}

.verified-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.review-btn {
  display: inline-block;
  margin-top: 4px;
  padding: 10px 20px;
  background: var(--accent-primary);
  color: #fff;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.3s ease, transform 0.3s ease;
}

.review-btn:hover {
  background: var(--text-primary);
  transform: translateY(-2px);
}

/* Lead Gen Section */
.lead-gen-section {
  background-color: #0A0A0A; /* Dark background matching image */
  color: #FFF;
  padding: 100px 0;
}

.lead-gen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.lead-gen-content h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.lead-gen-content p {
  color: #A0A0A0;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 500px;
}

.lead-gen-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lead-gen-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: #E5E5E5;
}

.check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.lead-gen-card {
  background-color: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.lead-gen-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.lead-form-subtitle {
  color: #8A8A8A;
  font-size: 14px;
  margin-bottom: 24px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

.lead-form input {
  width: 100%;
  padding: 16px 20px;
  background-color: transparent;
  border: 1px solid #333;
  border-radius: 8px;
  color: #FFF;
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.3s;
}

.lead-form input::placeholder {
  color: #666;
}

.lead-form input:focus {
  outline: none;
  border-color: var(--accent-primary);
}

.lead-form .btn {
  width: 100%;
  margin-top: 8px;
  border-radius: 50px;
  font-weight: 700;
}

.lead-form-security {
  text-align: center;
  color: #666;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.lock-icon {
  font-size: 10px;
}

/* Lead form phone group */
.lead-phone-group {
  display: flex;
  gap: 0;
  width: 100%;
}

.lead-phone-group .phone-country-selector {
  flex-shrink: 0;
}

.lead-phone-group .phone-country-selected {
  background: transparent;
  border-color: #333;
  color: #FFF;
}

.lead-phone-group .phone-country-code {
  color: #FFF;
}

.lead-phone-group .gate-phone-input {
  border-radius: 0 8px 8px 0 !important;
  flex: 1;
}

/* Lead consent checkboxes */
.lead-consent-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.lead-consent-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

.lead-consent-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  accent-color: var(--accent-primary);
  cursor: pointer;
  margin-top: 1px;
  border-radius: 4px;
}

.consent-link {
  color: var(--accent-primary);
  text-decoration: underline;
}

.consent-link:hover {
  color: #fff;
}

/* Footer */
.main-footer {
  background-color: #0A0A0A;
  color: #FFF;
  padding: 60px 0 32px;
  border-top: 1px solid #1A1A1A;
}

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

.brand-col .logo {
  color: #FFF;
  margin-bottom: 24px;
}

.brand-col p {
  color: #8A8A8A;
  font-size: 14px;
  margin-bottom: 32px;
  max-width: 300px;
}

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

.social-box {
  width: 40px;
  height: 40px;
  background-color: #1A1A1A;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.social-box:hover {
  background-color: var(--accent-primary);
}

.footer-col h4 {
  margin-bottom: 24px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FFF;
}

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

.footer-col li, .footer-col a {
  color: #8A8A8A;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #FFF;
}

.footer-bottom {
  border-top: 1px solid #1A1A1A;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #666;
  font-size: 13px;
}

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

.footer-legal a {
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: #FFF;
}

/* Animations */
[data-animate] {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate="fadeInUp"] { transform: translateY(40px); }
[data-animate="fadeInLeft"] { transform: translateX(-40px); }
[data-animate="fadeInRight"] { transform: translateX(40px); }
[data-animate="scaleIn"] { transform: scale(0.95); }

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Media Queries */
@media (max-width: 1024px) {
  .hero-stats { flex-wrap: wrap; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .proof-stats { grid-template-columns: repeat(2, 1fr); }
  .reviews-section { grid-template-columns: 1fr; }
}

/* Close button hidden by default; shown only inside mobile nav overlay */
.nav-close-btn { display: none; }

@media (max-width: 1100px) {
  /* ── Remove transform from header so position:fixed nav uses viewport as containing block ── */
  .main-header {
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    width: 100% !important;
    padding: 12px 16px;
  }
  .main-header.scrolled {
    top: 0;
    width: 100% !important;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }

  .hamburger { display: block; }

  /* ── Full-viewport mobile nav ── */
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background-color: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transform: translateX(100vw);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9998;
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 72px;
    padding-bottom: 40px;
  }
  .main-nav.active { transform: translateX(0); }

  /* ── Top-level list only (not dropdown) ── */
  .main-nav > ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    padding: 0 24px;
    list-style: none;
    margin: auto 0;
  }
  .main-nav > ul > li { width: 100%; text-align: center; margin: 0; padding: 0; }

  /* ── Top-level links — same style for all items including Serviços ── */
  .main-nav > ul > li > a {
    display: block;
    font-size: 22px;
    padding: 14px 20px;
    border-radius: 14px;
    color: var(--text-primary);
    transition: background 0.18s, color 0.18s;
    font-weight: 700;
    text-align: center;
  }
  .main-nav > ul > li > a:active {
    background: var(--accent-primary, #E8001D);
    color: #fff !important;
  }
  @media (hover: hover) {
    .main-nav > ul > li > a:hover {
      background: var(--accent-primary, #E8001D);
      color: #fff !important;
    }
  }

  /* ── Dropdown: JS controls display; CSS just styles when visible ── */
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    backdrop-filter: none !important;
    border-radius: 0 !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    padding: 4px 0 12px !important;
    margin: 0 !important;
    list-style: none !important;
    gap: 2px !important;
    display: none !important;
  }
  .has-dropdown.open .dropdown-menu {
    display: flex !important;
  }
  /* Arrow: ∨ rotates when open */
  .has-dropdown > a::after {
    content: '∨';
    display: inline-block;
    margin-left: 6px;
    font-size: 11px;
    border: none;
    width: auto;
    height: auto;
    transform: none;
    transition: transform 0.25s ease;
    vertical-align: middle;
    opacity: 0.6;
  }
  .has-dropdown.open > a::after {
    transform: rotate(180deg);
  }
  /* Sub-items: centered */
  .dropdown-menu li {
    width: 100%;
    text-align: center;
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
  }
  .dropdown-menu a {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    font-size: 16px !important;
    padding: 8px 20px !important;
    margin: 0 !important;
    border-radius: 10px !important;
    color: var(--text-secondary) !important;
    font-weight: 500 !important;
    transition: background 0.18s, color 0.18s;
  }
  .dropdown-menu a:hover,
  .dropdown-menu a:active {
    background: rgba(232,0,29,0.10) !important;
    color: var(--accent-primary, #E8001D) !important;
  }

  .orbital-container { display: none; }

  /* ── Lead gen: stack form below text ── */
  .lead-gen-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px;
  }
  .lead-gen-grid > * { width: 100% !important; }
  .lead-gen-content p { max-width: 100%; }
  .lead-gen-card { padding: 28px 20px; }
  .lead-gen-section { padding: 80px 0; }

  /* ── Header fit-to-screen fixes ── */
  .header-container {
    padding: 0;
  }
  .logo-img {
    max-width: 130px;
    height: auto;
  }
  .header-actions {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .lang-selector {
    gap: 4px;
  }
  /* Icons already hidden via inline style on mobile */

  /* ── Mobile nav close button (X) — small, top-right ── */
  .nav-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 24px;
    right: 24px;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 9999;
    transition: background 0.2s, color 0.2s;
  }
  .nav-close-btn svg {
    width: 24px;
    height: 24px;
    color: var(--text-primary);
  }
  .nav-close-btn:hover,
  .nav-close-btn:active {
    background: rgba(232,0,29,0.08);
  }
  .nav-close-btn:hover svg,
  .nav-close-btn:active svg {
    color: var(--accent-primary);
  }
}

/* Show header icons only on desktop */
@media (min-width: 1101px) {
  .header-icons-group { display: flex !important; gap: 12px; align-items: center; }
}

/* ============================================
   PRICING PAGE STYLES
   ============================================ */

/* Canvas Background */
#precos-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* Hero */
.precos-hero {
  padding: 160px 24px 80px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.precos-hero .eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-primary, #E8001D);
  margin-bottom: 16px;
}

.precos-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary, #fff);
  margin-bottom: 16px;
}

.precos-hero h1 em {
  font-style: italic;
  color: var(--accent-primary, #E8001D);
}

.precos-hero p {
  font-size: 1.1rem;
  color: var(--text-secondary, #999);
  max-width: 600px;
  margin: 0 auto;
}

/* Section Container */
.precos-section {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 24px;
}

/* Section Label / Divider */
.section-label {
  text-align: center;
  margin-bottom: 48px;
}

.section-label h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary, #fff);
  margin-bottom: 8px;
}

.section-label p {
  font-size: 0.95rem;
  color: var(--text-secondary, #999);
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

.divider-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(232, 0, 29, 0.1);
  color: var(--accent-primary, #E8001D);
  flex-shrink: 0;
}

.divider-icon svg {
  width: 20px;
  height: 20px;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

/* Glass Card */
.glass-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 0, 29, 0.3);
  box-shadow: 0 20px 60px rgba(232, 0, 29, 0.08);
}

.glass-card.popular {
  border-color: var(--accent-primary, #E8001D);
  background: rgba(232, 0, 29, 0.06);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-primary, #E8001D);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 20px;
  white-space: nowrap;
}

.card-plan-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-primary, #E8001D);
  margin-bottom: 4px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary, #fff);
  margin-bottom: 16px;
}

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

.price-currency {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary, #999);
}

.price-value {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-primary, #fff);
  line-height: 1;
}

.price-suffix {
  font-size: 0.85rem;
  color: var(--text-secondary, #999);
  margin-bottom: 16px;
}

.card-separator {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 16px 0;
}

/* Features List */
.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-secondary, #ccc);
  line-height: 1.4;
}

.check-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary, #E8001D);
}

.check-icon svg {
  width: 18px;
  height: 18px;
}

/* Card CTA */
.card-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.card-cta-outline {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary, #fff);
  background: transparent;
}

.card-cta-outline:hover {
  border-color: var(--accent-primary, #E8001D);
  color: var(--accent-primary, #E8001D);
  background: rgba(232, 0, 29, 0.05);
}

.card-cta-solid {
  background: var(--accent-primary, #E8001D);
  color: #fff;
  border: 1px solid transparent;
}

.card-cta-solid:hover {
  background: #c40018;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 0, 29, 0.3);
}

/* Tools Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  justify-items: center;
}

.tool-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
  width: 100%;
}

.tool-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 0, 29, 0.3);
}

.tool-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.tool-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary, #fff);
  margin-bottom: 6px;
}

.tool-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-primary, #E8001D);
}

.tool-price .currency {
  font-size: 0.85rem;
  font-weight: 500;
}

/* Bottom CTA */
.precos-bottom-cta {
  text-align: center;
  padding: 80px 24px;
  max-width: 700px;
  margin: 0 auto;
}

.precos-bottom-cta p {
  font-size: 1.15rem;
  color: var(--text-secondary, #999);
  margin-bottom: 24px;
}

.btn-large {
  display: inline-block;
  padding: 18px 48px;
  background: var(--accent-primary, #E8001D);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-large:hover {
  background: #c40018;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(232, 0, 29, 0.3);
}

/* ============================================
   RESPONSIVE - PRICING
   ============================================ */
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .cards-grid-2 {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .precos-hero { padding: 130px 16px 60px; }
}

/* ============================================
   MOBILE RESPONSIVENESS — DEFINITIVE
   ============================================ */

/* ── Global overflow guard ── */
*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; }
body { overflow-x: hidden; max-width: 100vw; }
img, video, iframe, canvas, svg { max-width: 100%; }
input, button, textarea, select { max-width: 100%; }

/* ── Tablet / large mobile ── */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  section { padding: 64px 0; }

  /* Hero — compact on mobile */
  .hero {
    min-height: 75dvh;
    min-height: 75vh;
    padding-top: 110px;
    padding-bottom: 48px;
  }
  .hero-content { padding: 0 24px; max-width: 100%; }
  .hero h1 { font-size: clamp(26px, 7.5vw, 36px); margin-bottom: 14px; }
  .hero p { font-size: 15px; margin-bottom: 24px; }
  .hero-badge { font-size: 12px; margin-bottom: 14px; }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-social-proof {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
  }

  /* Grids → single column */
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .proof-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .reviews-section { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Phone inputs */
  .gate-phone-group, .lead-phone-group { min-width: 0; }
  .gate-phone-group input, .lead-phone-group input { flex: 1; min-width: 0; }
  .phone-country-dropdown { min-width: 160px; }
}

/* ── Small phones ── */
@media (max-width: 480px) {
  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 40px;
  }
  .hero-social-proof { flex-direction: column; gap: 8px; }
  .lead-gen-card { padding: 24px 16px; }
  .lead-gen-section { padding: 60px 0; }
}
