/* =========================================
   GOTOGETHER MARKETING – MAIN STYLESHEET
   Brand Colors:
   - Primary Blue: #2B7DBB
   - Primary Teal: #25C6C8
   - Gradient: linear-gradient(135deg, #2B7DBB 0%, #25C6C8 100%)
   - Dark BG: #0D1117
   - Dark Alt: #161B22
   - Text: #1a1a2e
========================================= */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #2B7DBB;
  --teal: #25C6C8;
  --gradient: linear-gradient(135deg, #2B7DBB 0%, #25C6C8 100%);
  --gradient-rev: linear-gradient(135deg, #25C6C8 0%, #2B7DBB 100%);
  --dark: #0D1117;
  --dark-alt: #161B22;
  --dark-card: #1C2333;
  --text: #1a1a2e;
  --text-light: #6b7280;
  --text-muted: #9ca3af;
  --white: #ffffff;
  --off-white: #f8fafc;
  --border: rgba(255,255,255,0.08);
  --border-light: #e5e7eb;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --nav-height: 72px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--white); overflow-x: hidden; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-dark { background: var(--dark); color: var(--white); }
.section-gradient { background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdf4 100%); }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
input, select, button, textarea { font-family: var(--font); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--gradient); border-radius: 3px; }

/* ===== UTILITIES ===== */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; color: var(--text-light); max-width: 640px; margin: 0 auto; line-height: 1.7; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.7); }

.section-badge {
  display: inline-block;
  background: rgba(43, 125, 187, 0.1);
  color: var(--primary);
  border: 1px solid rgba(43, 125, 187, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-dark .section-badge,
.section-header.light .section-badge {
  background: rgba(37, 198, 200, 0.15);
  color: var(--teal);
  border-color: rgba(37, 198, 200, 0.3);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(43, 125, 187, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(43, 125, 187, 0.5); color: var(--white); }
.btn-primary.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); color: var(--white); }
.btn-ghost.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

.btn-nav {
  background: var(--gradient);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(43, 125, 187, 0.3);
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(43, 125, 187, 0.5); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: transparent;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(13, 17, 23, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Nav logo: icon + text side by side */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon-nav {
  height: 40px;
  width: 40px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}
.nav-brand-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links li a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links li a:hover { color: var(--teal); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--nav-height) 24px 0;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(43, 125, 187, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(37, 198, 200, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(43, 125, 187, 0.08) 0%, transparent 40%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gradient);
  border-radius: 50%;
  opacity: 0.4;
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  from { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.4; }
  to { transform: translateY(-100px) translateX(80px); opacity: 0; }
}

/* Hero layout: simple 2-col flex */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
}
.hero-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-right {
  flex: 0 0 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 420px;
}
/* Individual left items keep their margins */
.hero-badge { /* inline */ }
.hero-title { margin-top: 16px; }
.hero-subtitle { margin-top: 20px; }
.hero-stats { margin-top: 32px; }
.hero-cta { margin-top: 32px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 198, 200, 0.12);
  border: 1px solid rgba(37, 198, 200, 0.3);
  color: var(--teal);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: fit-content;
  animation: fadeInUp 0.6s ease both;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  animation: fadeInUp 0.6s ease 0.1s both;
  margin-top: 16px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  animation: fadeInUp 0.6s ease 0.2s both;
  margin-top: 20px;
}
.hero-subtitle strong { color: var(--teal); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeInUp 0.6s ease 0.3s both;
  margin-top: 32px;
}
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.4s both;
  margin-top: 32px;
}

/* Hero visual (right side) */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 0.8s ease 0.2s both;
  width: 100%;
  height: 100%;
  min-height: 420px;
}
.hero-logo-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 80px rgba(37, 198, 200, 0.3), 0 0 40px rgba(43, 125, 187, 0.4);
  animation: pulse-glow 3s ease-in-out infinite;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.hero-logo-img { width: 140px; height: 140px; object-fit: contain; }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 80px rgba(37, 198, 200, 0.3), 0 0 40px rgba(43, 125, 187, 0.4); }
  50% { box-shadow: 0 0 120px rgba(37, 198, 200, 0.5), 0 0 60px rgba(43, 125, 187, 0.6); }
}

.hero-card-float {
  position: absolute;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}
.hero-card-float i { font-size: 1.1rem; color: var(--teal); }
.card-1 { top: 5%; left: -5%; animation: float-card 6s ease-in-out infinite; }
.card-2 { top: 40%; right: -8%; animation: float-card 6s ease-in-out 2s infinite; }
.card-3 { bottom: 5%; left: 0%; animation: float-card 6s ease-in-out 4s infinite; }
@keyframes float-card { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 1s both;
}
.scroll-arrow { animation: bounce 2s ease-in-out infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: #0d1b2a;
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.trust-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 28px;
}
.partners-logos-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: nowrap;  /* nunca quebra linha */
  overflow-x: auto;   /* scroll horizontal se necessário */
  padding: 0 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  color: #fff;
}
.partners-logos-bar::-webkit-scrollbar { display: none; }
.partner-logo-item {
  opacity: 0.65;
  transition: opacity 0.3s, transform 0.3s;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  flex-shrink: 0; /* nunca encolhe */
  white-space: nowrap;
}
.partner-logo-item:hover { opacity: 1; transform: scale(1.05); }
/* Logo image in trust bar */
.trust-logo-img {
  height: 20px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
/* Brand name text in trust bar */
.trust-brand-name {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1;
  white-space: nowrap;
}
.partner-logo { height: 28px; width: auto; object-fit: contain; filter: grayscale(100%); transition: filter 0.3s; }
.partner-logo-item:hover .partner-logo { filter: grayscale(0%); }
.partner-svg { filter: grayscale(60%) opacity(0.75); transition: filter 0.3s; display: block; color: inherit; }
.partner-logo-item:hover .partner-svg { filter: grayscale(0%) opacity(1); }
/* Real image logos in trust bar */
.partner-logo-img-real {
  height: 26px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(100%) opacity(0.65);
  transition: filter 0.35s;
}
.partner-logo-item:hover .partner-logo-img-real { filter: grayscale(0%) opacity(1); }
.meta-logo { height: 22px; }
.openai-logo { height: 22px; }

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.step-card {
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}
.step-card:hover {
  transform: translateY(-8px);
  border-color: var(--teal);
  box-shadow: 0 20px 50px rgba(37, 198, 200, 0.15);
}
.step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 100px;
}
.step-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(43, 125, 187, 0.1), rgba(37, 198, 200, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--primary);
  transition: all 0.3s;
}
.step-card:hover .step-icon { background: var(--gradient); color: var(--white); }
.step-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.step-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

.step-arrow {
  font-size: 1.5rem;
  color: var(--teal);
  opacity: 0.5;
  padding: 0 8px;
}

/* ===== DIFFERENTIALS ===== */
.differentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.diff-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}
.diff-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.diff-card:hover::before { transform: scaleX(1); }
.diff-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 198, 200, 0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.diff-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 20px;
}
.diff-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.diff-card p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
.diff-highlight {
  display: inline-block;
  margin-top: 16px;
  background: rgba(37, 198, 200, 0.15);
  color: var(--teal);
  border: 1px solid rgba(37, 198, 200, 0.3);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.testimonial-card {
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}
.testimonial-card.featured {
  background: var(--dark);
  border: 2px solid rgba(37, 198, 200, 0.3);
  transform: scale(1.04);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.testimonial-card:hover:not(.featured) {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-card.featured p { color: rgba(255,255,255,0.8); }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
}
.testimonial-card.featured .testimonial-author strong { color: var(--white); }
.testimonial-author span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* ===== PARTNERS ===== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.partner-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.partner-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 198, 200, 0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.partner-card-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 20px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.3s;
}
.partner-card:hover .partner-card-logo { opacity: 1; }
.meta-logo { height: 26px; }
.openai-logo-card { height: 24px; }
.partner-card h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.partner-card p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; }
.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 198, 200, 0.12);
  color: var(--teal);
  border: 1px solid rgba(37, 198, 200, 0.25);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== PRICING ===== */
/* ===== PRICING SECTION ===== */
.pricing { background: var(--white); }
.pricing .section-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -0.5px;
}

/* ===== PRICING GRID ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

/* Card base */
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
/* Featured (right) card — dark */
.pricing-card.featured {
  background: var(--dark);
  border: 2px solid rgba(37, 198, 200, 0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.plan-popular {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Plan icon circle */
.plan-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  margin: 0 0 24px;
}
.plan-icon-blue { background: var(--gradient); box-shadow: 0 4px 16px rgba(43,125,187,0.4); }
.plan-icon-purple { background: linear-gradient(135deg, #5c2a7e, #9b59b6); box-shadow: 0 4px 16px rgba(92,42,126,0.4); }

/* Plan name */
.plan-name {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.2px;
  text-transform: none;
}
.pricing-card.featured .plan-name { color: var(--white); }

/* Price block */
.plan-price-block { margin-bottom: 28px; }
.plan-period-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.pricing-card.featured .plan-period-label { color: rgba(255,255,255,0.45); }
.price-original {
  display: block;
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 6px;
  font-weight: 500;
}
.pricing-card.featured .price-original { color: rgba(255,255,255,0.4); }
.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 3px;
}
.price-currency {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-top: 8px;
}
.pricing-card.featured .price-currency { color: var(--white); }
.price-value {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text);
}
.pricing-card.featured .price-value { color: var(--white); }

/* Divider after price block */
.plan-price-block {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 0;
}
.pricing-card.featured .plan-price-block { border-color: rgba(255,255,255,0.1); }

/* Features list */
.plan-features {
  margin: 20px 0 32px;
  flex: 1;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
  font-weight: 500;
}
.plan-features li:last-child { border-bottom: none; }
.pricing-card.featured .plan-features li { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.06); }
.plan-features li i.fa-check { color: var(--teal); font-size: 0.8rem; flex-shrink: 0; }
.pricing-card.featured .plan-features li i.fa-check { color: var(--teal); }
/* No disabled items in new plans */
.plan-features-boxed { /* kept for compatibility */ }

/* Buttons */
.btn-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--off-white);
  color: var(--text);
  border: 2px solid var(--border-light);
  padding: 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: auto;
}
.btn-plan:hover {
  background: var(--gradient);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(43,125,187,0.35);
}
.btn-plan-white {
  background: var(--gradient);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(37,198,200,0.3);
}
.btn-plan-white:hover {
  box-shadow: 0 8px 30px rgba(37,198,200,0.5);
  transform: translateY(-2px);
}
.btn-plan-featured {
  background: var(--gradient);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(37,198,200,0.3);
}
.btn-plan-featured:hover {
  box-shadow: 0 8px 30px rgba(37,198,200,0.5);
}

/* ===== CUSTOM PLAN CARD ===== */
.pricing-card.plan-custom {
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
  border: 2px dashed rgba(37, 198, 200, 0.45);
  position: relative;
  overflow: hidden;
}
.pricing-card.plan-custom::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(37,198,200,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.pricing-card.plan-custom:hover {
  border-color: var(--teal);
  box-shadow: 0 20px 50px rgba(37,198,200,0.2);
}
.plan-icon-custom {
  background: linear-gradient(135deg, #0ea5e9, #25C6C8);
  box-shadow: 0 4px 16px rgba(14,165,233,0.4);
}
.pricing-card.plan-custom .plan-name { color: var(--white); }
.pricing-card.plan-custom .plan-period-label { color: rgba(255,255,255,0.45); }
.pricing-card.plan-custom .price-currency,
.pricing-card.plan-custom .price-value { color: var(--white); }
.pricing-card.plan-custom .plan-price-block { border-color: rgba(255,255,255,0.1); }
.pricing-card.plan-custom .plan-features li { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.06); }
.pricing-card.plan-custom .plan-features li i.fa-check { color: var(--teal); }

.btn-plan-custom {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  box-shadow: none;
}
.btn-plan-custom:hover {
  background: var(--teal);
  color: var(--dark);
  box-shadow: 0 6px 24px rgba(37,198,200,0.4);
  border-color: var(--teal);
}

.plan-custom-note {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-top: 16px;
  font-style: italic;
  padding: 0 8px;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: center;
}
/* About visual: logo circle + two stat cards stacked cleanly */
.about-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 0;
}
.about-logo-wrapper {
  width: 160px;
  height: 160px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 50px rgba(37, 198, 200, 0.3);
  flex-shrink: 0;
}
.about-logo { width: 100px; height: 100px; object-fit: contain; }
.about-stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 32px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-light);
  text-align: center;
  width: 100%;
  max-width: 280px;
  position: static;
}
.about-stat-card.card-right { position: static; }
.big-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-stat-card span:last-child { font-size: 0.78rem; color: var(--text-light); font-weight: 600; }

.about-content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.2; margin: 16px 0 24px; }
.about-content p { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.about-content strong { color: var(--text); }
.about-values {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(43, 125, 187, 0.08);
  border: 1px solid rgba(43, 125, 187, 0.15);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--gradient);
  padding: 80px 0;
}
.cta-band-content {
  text-align: center;
  color: var(--white);
}
.cta-band-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--white);
}
.cta-band-content .gradient-text {
  background: rgba(255,255,255,0.9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-band-content p { font-size: 1.05rem; opacity: 0.9; margin-bottom: 36px; }
.cta-band .btn-primary {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.cta-band .btn-primary:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.3); }

/* ===== CONTACT ===== */
.contact { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.2; margin: 16px 0 20px; }
.contact-info > p { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; margin-bottom: 32px; }
.contact-details { margin-bottom: 32px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 2px; }
.contact-item span { font-size: 0.9rem; color: var(--text-light); }
.contact-promise {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(37, 198, 200, 0.08);
  border: 1px solid rgba(37, 198, 200, 0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.88rem;
  color: var(--text-light);
}
.contact-promise i { color: var(--teal); font-size: 1.2rem; }
.contact-promise strong { color: var(--text); }

/* Form */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}
.form-header { margin-bottom: 32px; }
.form-header h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.form-header p { font-size: 0.9rem; color: var(--text-light); }

.contact-form .form-group { margin-bottom: 20px; }
.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.required { color: var(--teal); }
.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.input-wrapper i {
  position: absolute;
  left: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
  pointer-events: none;
  transition: color 0.3s;
}
.input-wrapper input,
.input-wrapper select {
  width: 100%;
  padding: 14px 16px 14px 44px;
  border: 2px solid var(--border-light);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: all 0.3s ease;
  outline: none;
  -webkit-appearance: none;
}
.input-wrapper input:focus,
.input-wrapper select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(37, 198, 200, 0.12);
}
.input-wrapper input:focus ~ i,
.input-wrapper:focus-within i { color: var(--teal); }
.input-wrapper select { cursor: pointer; }

.form-submit { margin-top: 28px; }
.btn-submit {
  width: 100%;
  padding: 18px;
  background: var(--gradient);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(43, 125, 187, 0.35);
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(43, 125, 187, 0.5);
}
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.form-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.form-disclaimer i { color: var(--teal); }

/* Form Success */
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon {
  font-size: 4rem;
  color: var(--teal);
  margin-bottom: 20px;
  animation: pop 0.5s ease;
}
@keyframes pop { 0% { transform: scale(0); } 80% { transform: scale(1.2); } 100% { transform: scale(1); } }
.form-success h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.form-success p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; margin-bottom: 8px; }

/* Input validation states */
.input-wrapper input.error,
.input-wrapper select.error {
  border-color: #ef4444;
}
.error-message {
  color: #ef4444;
  font-size: 0.78rem;
  margin-top: 4px;
  display: block;
}

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: var(--white); padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
/* Footer logo: icon + text */
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo-icon {
  height: 42px;
  width: 42px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}
.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
}
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 320px; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: all 0.3s;
}
.social-links a:hover {
  background: var(--gradient);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-3px);
}
.footer-links h4,
.footer-contact h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; color: var(--teal); }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color 0.3s; }
.footer-links ul li a:hover { color: var(--teal); }
.footer-contact ul { }
.footer-contact ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}
.footer-contact ul li i { color: var(--teal); width: 16px; }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: all 0.3s ease;
  animation: whatsapp-pulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--white);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
  animation: none;
}
.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--dark);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { flex-direction: column; gap: 48px; padding: 60px 0; }
  .hero-right { flex: none; width: 100%; min-height: 340px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
  .pricing-card.plan-custom { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; width: 100%; }
  .hero-left { width: 100%; }
  .differentials-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links { 
    display: none; 
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(13, 17, 23, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    flex-direction: column;
    gap: 8px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links li a { padding: 12px 16px; display: block; border-radius: 8px; }
  .nav-links li a:hover { background: rgba(255,255,255,0.05); }
  .btn-nav { display: block; text-align: center; }
  .hamburger { display: flex; }
  
  .steps-grid { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
  .step-card { max-width: 100%; width: 100%; }
  
  .differentials-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card.featured { transform: none; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card.plan-custom { grid-column: 1; max-width: 100%; }
  
  /* Hide right side visual on mobile */
  .hero-card-float { display: none; }
  .hero-right { display: none; }
  .hero-content { padding: 40px 0; gap: 0; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  
  .form-card { padding: 32px 24px; }
  .partners-logos-bar { gap: 28px; padding: 0 20px; }
  .partner-logo { height: 20px; }
  .trust-logo-img { height: 18px; }
  
  .about-stat-card, .about-stat-card.card-right { display: block; }
}

@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; justify-content: center; }
  .stat-divider { display: none; }
  .hero-cta { flex-direction: column; }
  .btn-primary.btn-lg, .btn-ghost.btn-lg { width: 100%; justify-content: center; }
  .partners-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 36px 24px; }
  .about-values { flex-direction: column; }
}
