/* =============================================
   TMJ – TamoJunto | Main Stylesheet
   Cores: Preto #0a0a0a | Laranja #ff6b2b
============================================= */

:root {
  --orange: #ff6b2b;
  --orange-light: #ff8a54;
  --orange-dark: #e05520;
  --orange-glow: rgba(255, 107, 43, 0.15);
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --dark-4: #2a2a2a;
  --gray: #888888;
  --gray-light: #bbbbbb;
  --white: #ffffff;
  --white-10: rgba(255, 255, 255, 0.07);
  --white-20: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.08);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-orange: 0 8px 32px rgba(255, 107, 43, 0.25);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ===================== TYPEWRITER ===================== */
.typewriter-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.typewriter {
  color: var(--orange);
  font-weight: 900;
  min-width: 4px; /* evita colapso quando vazio */
}

.typewriter-cursor {
  display: inline-block;
  color: var(--orange);
  font-weight: 300;
  font-size: 0.85em;
  margin-left: 2px;
  animation: cursorBlink 0.75s step-end infinite;
  line-height: 1;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 4px; }

/* ===================== UTILITIES ===================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.highlight { color: var(--orange); }

.section-tag {
  display: inline-block;
  background: var(--orange-glow);
  color: var(--orange);
  border: 1px solid rgba(255, 107, 43, 0.3);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-light);
  line-height: 1.7;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--border);
}
.btn-outline:hover {
  background: var(--white-10);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}
.btn-whatsapp:hover {
  background: #1fb057;
  border-color: #1fb057;
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 34px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-color: var(--border);
  padding: 12px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  flex-shrink: 0;
}

.logo-text {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--white);
  line-height: 1;
}

.logo-dot {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-light);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,107,43,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,43,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero-bg-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(255,107,43,0.08) 0%, transparent 70%);
}

.hero-container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-glow);
  border: 1px solid rgba(255, 107, 43, 0.3);
  color: var(--orange);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 32px;
  animation: fadeInDown 0.6s ease forwards;
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease 0.1s both;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-title-line {
  line-height: 1.12;
}

.hero-title-typewriter {
  height: 1.15em;
  min-height: 1.15em;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* quebra de linha visível só no mobile */
.hero-br-mobile { display: none; }
.hero-br-mobile br { display: none; }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray-light);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.4s both;
}

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

.stat strong {
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -1px;
}

.stat span {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-scroll span {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease infinite;
}

/* ===================== IA DEMO ===================== */
.ia-demo {
  padding: 100px 0;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ia-demo-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 72px;
}

.ia-demo-text {
  flex: 1;
  min-width: 0;
}

.ia-demo-text .section-tag {
  display: inline-block;
  margin-bottom: 16px;
}

.ia-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ia-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-light);
}

.ia-feature-list li i {
  color: var(--orange);
  font-size: 16px;
  flex-shrink: 0;
}

/* ---- Phone ---- */
.ia-demo-phone {
  flex-shrink: 0;
  position: relative;
  width: 270px;
}

.phone-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle at center, rgba(255,107,43,0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}

.phone-frame {
  position: relative;
  z-index: 1;
  width: 270px;
  background: #111;
  border-radius: 44px;
  padding: 14px 10px 10px;
  box-shadow:
    0 0 0 2px #333,
    0 0 0 6px #111,
    0 40px 80px rgba(0,0,0,0.8),
    0 0 80px rgba(255,107,43,0.1);
}

.phone-notch {
  width: 80px;
  height: 20px;
  background: #111;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 8px;
}

.phone-screen {
  background: #141414;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 440px;
}

/* ---- Chat Header ---- */
.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #1c1c1c;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.chat-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,107,43,0.15);
  border: 1px solid rgba(255,107,43,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 15px;
  flex-shrink: 0;
}

.chat-header-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.chat-header-info strong {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.chat-online {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: #4ade80;
}

.online-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 5px rgba(74,222,128,0.9);
  display: inline-block;
  flex-shrink: 0;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ---- Chat Messages ---- */
.chat-messages {
  flex: 1;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  scrollbar-width: none;
}
.chat-messages::-webkit-scrollbar { display: none; }

.chat-bubble {
  max-width: 84%;
  padding: 9px 12px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.5;
  color: #fff;
  word-break: break-word;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.chat-bubble.visible {
  opacity: 1;
  transform: translateY(0);
}

.chat-bubble.bot {
  background: #252525;
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom-left-radius: 3px;
  align-self: flex-start;
}

.chat-bubble.user {
  background: var(--orange);
  border-bottom-right-radius: 3px;
  align-self: flex-end;
  box-shadow: 0 4px 14px rgba(255,107,43,0.4);
}

.chat-bubble .success-icon {
  color: #4ade80;
  margin-right: 3px;
}

/* ---- Typing ---- */
.chat-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 13px;
  background: #252525;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  border-bottom-left-radius: 3px;
  align-self: flex-start;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 52px;
}

.chat-typing.visible {
  opacity: 1;
  transform: translateY(0);
}

.typing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #888;
  flex-shrink: 0;
}
.typing-dot:nth-child(1) { animation: typingBounce 1.2s ease infinite 0s; }
.typing-dot:nth-child(2) { animation: typingBounce 1.2s ease infinite 0.2s; }
.typing-dot:nth-child(3) { animation: typingBounce 1.2s ease infinite 0.4s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-5px); opacity: 1; }
}

/* ---- Bottom bar ---- */
.chat-input-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  background: #1c1c1c;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 11px;
  color: #888;
  font-weight: 500;
  flex-shrink: 0;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .ia-demo-inner {
    flex-direction: column;
    gap: 48px;
    align-items: center;
  }
  .ia-demo-text { text-align: left; }
  .ia-demo-phone { order: -1; }
}

@media (max-width: 480px) {
  .ia-demo-phone { width: 250px; }
  .phone-frame { width: 250px; border-radius: 38px; }
  .phone-screen { height: 400px; }
}

/* ===================== PARTNERS ===================== */
.partners {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--dark);
  overflow: hidden;
}

.partners-label {
  text-align: center;
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.partners-track {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-scroll {
  display: flex;
  gap: 0;
  animation: partnerScroll 25s linear infinite;
  width: max-content;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 40px;
  opacity: 0.5;
  transition: opacity 0.3s;
  flex-shrink: 0;
}

.partner-item:hover { opacity: 1; }

.partner-svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.partner-item span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-light);
}

/* ===================== SERVICES ===================== */
.services {
  padding: 100px 0;
}

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

.service-card {
  position: relative;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(255, 107, 43, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,107,43,0.1);
}

.service-card:hover::before {
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
}

.service-card.featured {
  background: linear-gradient(145deg, var(--dark-2), #1f1008);
  border-color: rgba(255, 107, 43, 0.3);
}

.service-card.featured::before {
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
}

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

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-glow);
  border: 1px solid rgba(255, 107, 43, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: var(--orange);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-light);
}

.service-list li i {
  color: var(--orange);
  font-size: 12px;
  flex-shrink: 0;
}

/* ===================== HOW IT WORKS ===================== */
.how-it-works {
  padding: 100px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-container {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.step {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--orange-glow);
  border: 2px solid rgba(255, 107, 43, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--orange);
  flex-shrink: 0;
  position: relative;
}

.step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 13px;
  color: var(--gray-light);
  line-height: 1.7;
}

.step-arrow {
  display: flex;
  align-items: center;
  color: var(--orange);
  font-size: 20px;
  margin-top: 28px;
  flex-shrink: 0;
  opacity: 0.5;
}

/* ===================== NICHES ===================== */
.niches {
  padding: 100px 0;
}

.niches-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.niche-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.niche-card:hover {
  background: var(--dark-3);
  border-color: rgba(255, 107, 43, 0.4);
  transform: translateY(-4px);
}

.niche-card i {
  font-size: 28px;
  color: var(--orange);
}

.niche-card span {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.niche-plus {
  border-style: dashed;
  border-color: rgba(255, 107, 43, 0.3);
}

.niche-plus i, .niche-plus span { color: var(--orange); }

/* ===================== N8N TEXT LOGO ===================== */
.partner-n8n {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: currentColor;
  letter-spacing: -1px;
  line-height: 1;
  height: 32px;
  display: flex;
  align-items: center;
}

/* ===================== WHAT INCLUDED GRID ===================== */
.what-included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}

.wi-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}

.wi-card:hover {
  border-color: rgba(255,107,43,0.3);
  background: var(--dark-3);
  transform: translateY(-3px);
}

.wi-icon {
  width: 44px;
  height: 44px;
  background: var(--orange-glow);
  border: 1px solid rgba(255,107,43,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--orange);
  flex-shrink: 0;
  transition: var(--transition);
}

.wi-card:hover .wi-icon {
  background: var(--orange);
  color: var(--white);
}

.wi-text h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}

.wi-text p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* ===================== INVESTMENT BOX ===================== */
.investment-box {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: linear-gradient(135deg, #160900, #1a1008, #161616);
  border: 1px solid rgba(255,107,43,0.25);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.investment-box::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,107,43,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.investment-tag {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  background: var(--orange-glow);
  border: 1px solid rgba(255,107,43,0.3);
  color: var(--orange);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.investment-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.investment-left h3 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.investment-left p {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.7;
  margin: 0;
}

.investment-range {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  box-sizing: border-box;
  width: 100%;
}

.range-entre {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
  text-align: center;
  margin-bottom: 10px;
}

.range-labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 6px;
  flex-wrap: nowrap;
  width: 100%;
  min-width: 0;
}

.range-label-item {
  display: flex;
  align-items: baseline;
  gap: 3px;
  flex-shrink: 0;
}

.range-value {
  font-size: clamp(0.95rem, 3.5vw, 1.4rem);
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.range-label-item small {
  font-size: 11px;
  color: var(--gray);
  font-weight: 500;
  white-space: nowrap;
}

.range-dots {
  display: flex;
  gap: 5px;
  align-items: center;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.range-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.3;
  flex-shrink: 0;
}
.range-dots span:nth-child(3) { opacity: 0.7; width: 7px; height: 7px; }
.range-dots span:nth-child(2), .range-dots span:nth-child(4) { opacity: 0.5; }

.range-desc {
  font-size: 11px;
  color: var(--gray);
  text-align: center;
  line-height: 1.5;
  margin-top: 2px;
}

.investment-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ih-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-light);
}

.ih-item i {
  color: var(--orange);
  font-size: 16px;
  flex-shrink: 0;
}

/* ===================== PLANS ===================== */
.plans {
  padding: 100px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
  overflow-x: hidden;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 32px;
}

.plan-card {
  position: relative;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: var(--transition);
}

.plan-card:hover {
  border-color: rgba(255, 107, 43, 0.3);
  transform: translateY(-4px);
}

.plan-card.featured {
  background: linear-gradient(145deg, #1a0d00, #1f1008, #1a1a1a);
  border-color: var(--orange);
  box-shadow: 0 0 0 1px rgba(255,107,43,0.2), var(--shadow-orange);
  transform: scale(1.03);
}

.plan-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.plan-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 20px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

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

.plan-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-glow);
  border: 1px solid rgba(255, 107, 43, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--orange);
}

.plan-name {
  font-size: 1.4rem;
  font-weight: 800;
}

.plan-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

.plan-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.plan-from {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
}

.plan-value {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -2px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.plan-currency {
  font-size: 1.4rem;
  font-weight: 700;
}

.plan-period {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

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

.plan-features li i {
  font-size: 16px;
  flex-shrink: 0;
}

.plan-features li:not(.disabled) i { color: var(--orange); }
.plan-features li.disabled { opacity: 0.35; }
.plan-features li.disabled i { color: var(--gray); }

.plans-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.plans-note i { color: var(--orange); }

/* ===================== CTA STRIP ===================== */
.cta-strip {
  padding: 80px 0;
  background: linear-gradient(135deg, #150800 0%, #1a0e00 50%, #111 100%);
  border-top: 1px solid rgba(255,107,43,0.2);
  border-bottom: 1px solid rgba(255,107,43,0.2);
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(255,107,43,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-strip-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.cta-strip-text p {
  color: var(--gray-light);
  font-size: 15px;
}

.cta-strip-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ===================== CONTACT ===================== */
.contact {
  padding: 100px 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 120px;
}

.contact-info .section-title {
  text-align: left;
  margin-top: 12px;
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 36px;
  font-size: 15px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--gray-light);
}

.contact-item i {
  width: 40px;
  height: 40px;
  background: var(--orange-glow);
  border: 1px solid rgba(255,107,43,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 16px;
  flex-shrink: 0;
}

/* FORM */
.contact-form-wrapper {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-light);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--white);
  font-size: 14px;
  font-family: var(--font);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='%23888'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: var(--dark-3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: rgba(255,107,43,0.05);
  box-shadow: 0 0 0 3px rgba(255,107,43,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  font-size: 12px;
  color: #ff4444;
  display: none;
}

.form-error.show { display: block; }

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(39, 174, 96, 0.1);
  border: 1px solid rgba(39, 174, 96, 0.3);
  border-radius: 8px;
  padding: 16px;
  font-size: 14px;
  color: #27ae60;
}

.form-success.show { display: flex; }

.form-success i { font-size: 20px; }

/* ===================== FOOTER ===================== */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

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

.footer-brand .logo-text {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  max-width: 320px;
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--white-10);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gray-light);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

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

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

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-col a,
.footer-col span {
  font-size: 13px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--orange); }

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

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

.footer-bottom p {
  font-size: 13px;
  color: var(--gray);
}

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: waPulse 3s ease infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

@keyframes partnerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 40px rgba(37, 211, 102, 0.7); }
}

/* ===================== SCROLL ANIMATIONS ===================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .niches-grid { grid-template-columns: repeat(4, 1fr); }
  .what-included-grid { grid-template-columns: repeat(2, 1fr); }
  .investment-box { padding: 32px; gap: 24px; }
  .investment-body { grid-template-columns: 1fr; gap: 24px; }
  .contact-container { grid-template-columns: 1fr; gap: 48px; }
  .contact-info { position: static; }
  .footer-container { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    z-index: 999;
    align-items: center;
    justify-content: center;
    gap: 40px;
    font-size: 1.3rem;
  }

  .nav-links.open a { font-size: 1.3rem; color: var(--white); }

  .hero { padding: 120px 0 60px; }
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
    letter-spacing: -1px;
  }
  .hero-title-typewriter { height: 1.15em; min-height: 1.15em; }
  .hero-br-mobile { display: inline; }
  .hero-br-mobile br { display: inline; }
  .hero-badge { font-size: 12px; padding: 6px 14px; }

  .services-grid { grid-template-columns: 1fr; }
  .niches-grid { grid-template-columns: repeat(3, 1fr); }
  .what-included-grid { grid-template-columns: 1fr; }
  .investment-box { padding: 24px; gap: 20px; }
  .investment-body { grid-template-columns: 1fr; gap: 16px; }
  .investment-tag { font-size: 10px; padding: 5px 12px; }
  .range-labels { gap: 4px; }
  .range-dots { gap: 3px; }
  .range-dots span { width: 4px; height: 4px; }
  .range-dots span:nth-child(3) { width: 5px; height: 5px; }

  .steps-container { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin-top: 0; }

  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-strip-actions { justify-content: center; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 24px; }

  .footer-links { grid-template-columns: repeat(2, 1fr); }

  .stat-divider { display: none; }
  .hero-stats { gap: 24px; }

  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 24px; }
}

@media (max-width: 480px) {
  .niches-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-links { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .hero-title {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
    letter-spacing: -0.5px;
  }
  .hero-title-typewriter { height: 1.15em; min-height: 1.15em; }
  .hero-sub { font-size: 0.95rem; }
  .hero-badge { font-size: 11px; padding: 5px 12px; }
}
