/* DesignerGo Landing Page — style.css */

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

:root {
  --purple: #6C3BFF;
  --pink: #FF4DA6;
  --orange: #FF8A00;
  --navy: #071122;
  --gradient: linear-gradient(135deg, #6C3BFF, #FF4DA6 55%, #FF8A00);
  --bg: #F8F9FA;
  --white: #FFFFFF;
  --text: #111827;
  --muted: #6B7280;
  --border: #E5E7EB;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: white;
  background: var(--gradient);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--purple);
  background: transparent;
  border: 1.5px solid #EDE9FE;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-outline:hover { background: #F5F3FF; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.btn-ghost:hover { color: white; }

.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: white;
  background: var(--gradient);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-gradient:hover { opacity: 0.9; }

.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 12px; }
.w-full { width: 100%; }

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
.header.scrolled {
  background: rgba(7, 17, 34, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: #1B1430;
}
.logo-text.white { color: rgba(255,255,255,0.9); }
.logo-go { color: #7C3AED; }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.nav a:hover { color: white; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: rgba(7, 17, 34, 0.97);
  backdrop-filter: blur(12px);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

/* HERO */
.hero {
  position: relative;
  background: var(--navy);
  padding: 140px 0 80px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(108,59,255,0.3) 0%, transparent 70%),
              radial-gradient(ellipse 60% 40% at 80% 50%, rgba(255,77,166,0.15) 0%, transparent 60%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(108,59,255,0.2);
  border: 1px solid rgba(108,59,255,0.4);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.1;
  color: white;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.65);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 60px;
}

/* MOCKUP */
.hero-mockup { max-width: 800px; margin: 0 auto; }
.mockup-window {
  background: #0D1526;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: #0A0F1E;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #FF5F57; }
.dot.yellow { background: #FEBC2E; }
.dot.green { background: #28C840; }
.mockup-url {
  margin: 0 auto;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}
.mockup-content { display: flex; height: 240px; }
.mockup-sidebar {
  width: 56px;
  background: #071122;
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.mockup-logo-sm {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--gradient);
  margin-bottom: 8px;
}
.mockup-nav-item {
  height: 28px; border-radius: 6px;
  background: rgba(255,255,255,0.06);
}
.mockup-nav-item.active {
  background: linear-gradient(135deg, rgba(108,59,255,0.4), rgba(255,77,166,0.3));
}
.mockup-main { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.mockup-header-row { display: flex; justify-content: space-between; align-items: center; }
.mockup-title-block { width: 120px; height: 16px; border-radius: 4px; background: rgba(255,255,255,0.1); }
.mockup-btn-sm { width: 80px; height: 26px; border-radius: 6px; background: var(--gradient); opacity: 0.7; }
.mockup-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.mockup-kpi { height: 48px; border-radius: 8px; }
.mockup-kpi.purple { background: rgba(108,59,255,0.3); }
.mockup-kpi.pink { background: rgba(255,77,166,0.3); }
.mockup-kpi.orange { background: rgba(255,138,0,0.3); }
.mockup-kpi.blue { background: rgba(59,130,246,0.2); }
.mockup-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; flex: 1; }
.mockup-card { border-radius: 8px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.06); }

/* SECTIONS COMMONS */
.section-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple);
  margin-bottom: 12px;
}
.section-label.light { color: rgba(255,255,255,0.5); }
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 48px;
  max-width: 600px;
}
.section-title.light { color: white; }

/* DORES */
.dores {
  padding: 100px 0;
  background: var(--bg);
  text-align: center;
}
.dores .section-title { margin-left: auto; margin-right: auto; }
.dores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.dor-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  transition: box-shadow 0.2s;
}
.dor-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.dor-icon { font-size: 24px; flex-shrink: 0; }
.dor-card p { font-size: 14px; font-weight: 500; color: var(--text); line-height: 1.5; }
.dores-solucao {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* FEATURES */
.features {
  padding: 100px 0;
  background: white;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover { box-shadow: 0 8px 32px rgba(108,59,255,0.12); transform: translateY(-2px); }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 8px;
}
.feature-card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* HOW IT WORKS */
.how-it-works {
  padding: 100px 0;
  background: var(--navy);
  text-align: center;
}
.how-it-works .section-label { margin-left: auto; margin-right: auto; }
.how-it-works .section-title { margin-left: auto; margin-right: auto; }
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  padding: 24px 16px;
}
.step-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: white;
  margin-bottom: 8px;
}
.step p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.step-arrow {
  font-size: 24px;
  color: rgba(255,255,255,0.2);
  align-self: center;
  padding: 0 8px;
}

/* PRICING */
.pricing {
  padding: 100px 0;
  background: var(--bg);
  text-align: center;
}
.pricing .section-title { margin-left: auto; margin-right: auto; }
.billing-toggle {
  display: inline-flex;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 48px;
  gap: 4px;
}
.toggle-btn {
  padding: 8px 20px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--muted);
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.toggle-btn.active { background: var(--purple); color: white; }
.badge-save {
  font-size: 11px;
  background: #D1FAE5;
  color: #065F46;
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 700;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  text-align: left;
  position: relative;
}
.pricing-card.recommended {
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
              var(--gradient) border-box;
  transform: scale(1.03);
}
.plan-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(108,59,255,0.1);
  color: var(--purple);
  margin-bottom: 12px;
}
.plan-badge.gradient {
  background: var(--gradient);
  color: white;
}
.plan-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 8px;
}
.plan-price {
  margin-bottom: 4px;
}
.price-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  color: var(--text);
}
.price-value small { font-size: 20px; }
.price-period { font-size: 14px; color: var(--muted); margin-left: 4px; }
.annual-saving {
  font-size: 12px;
  color: #065F46;
  background: #D1FAE5;
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 600;
}
.hidden { display: none !important; }
.plan-features {
  list-style: none;
  margin: 20px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-features li { font-size: 13.5px; color: var(--text); }
.plan-features li.muted { color: var(--muted); }
.plan-btn { width: 100%; }

/* TESTIMONIALS */
.testimonials {
  padding: 100px 0;
  background: white;
  text-align: center;
}
.testimonials .section-title { margin-left: auto; margin-right: auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  text-align: left;
}
.stars { color: #F59E0B; font-size: 16px; margin-bottom: 16px; }
.testimonial-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: white;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 14px; color: var(--text); }
.author-role { font-size: 12px; color: var(--muted); }

/* FAQ */
.faq {
  padding: 100px 0;
  background: var(--bg);
}
.faq-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.faq-list { text-align: left; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq-icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--purple);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  padding-bottom: 20px;
  display: none;
}
.faq-item.open .faq-answer { display: block; }

/* CTA FINAL */
.cta-final {
  padding: 100px 0;
  background: var(--gradient);
  text-align: center;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 4vw, 42px);
  color: white;
  margin-bottom: 16px;
}
.cta-inner p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}
.cta-final .btn-primary {
  background: white;
  color: var(--purple);
}
.cta-final .btn-primary:hover { opacity: 0.95; }

/* FOOTER */
.footer {
  background: var(--navy);
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav, .header-actions { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-proof { gap: 12px; }

  .dores-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); padding: 0; }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.recommended { transform: scale(1); }

  .testimonials-grid { grid-template-columns: 1fr; }

  .mockup-kpis { grid-template-columns: repeat(2, 1fr); }
  .mockup-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .dores-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn-primary, .hero-ctas .btn-ghost { width: 100%; justify-content: center; }
}

/* MOCKUP REAL */
.mockup-sidebar {
  width: 130px;
  background: #071122;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-right: 1px solid rgba(255,255,255,0.05);
  flex-shrink: 0;
}
.mockup-logo-area {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 6px;
}
.mockup-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  color: white;
}
.mockup-nav-real {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 8px;
  border-radius: 6px;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  cursor: default;
}
.mockup-nav-real.active {
  background: linear-gradient(135deg, rgba(108,59,255,0.3), rgba(255,77,166,0.2));
  color: white;
}
.nav-label { font-size: 10px; }
.nav-badge {
  margin-left: auto;
  background: var(--pink);
  color: white;
  font-size: 8px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 100px;
}
.mockup-main {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.mockup-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.greeting-title {
  font-size: 11px;
  font-weight: 700;
  color: white;
}
.greeting-sub {
  font-size: 9px;
  color: rgba(255,255,255,0.4);
}
.mockup-avatar-sm {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: white;
}
.mockup-kpis-real {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.mockup-kpi-real {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 8px 6px;
}
.kpi-label { font-size: 8px; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.kpi-value { font-family: var(--font-display); font-size: 13px; font-weight: 800; }
.kpi-value.purple { color: #A855F7; }
.kpi-value.pink { color: #EC4899; }
.kpi-value.orange { color: #F97316; }
.kpi-value.blue { color: #60A5FA; }
.mockup-section-title {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mockup-projects { display: flex; flex-direction: column; gap: 6px; }
.mockup-project-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 8px 10px;
}
.proj-cover { width: 28px; height: 28px; border-radius: 6px; flex-shrink: 0; }
.proj-info { flex: 1; min-width: 0; }
.proj-name { font-size: 9px; font-weight: 600; color: white; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.proj-bar { height: 3px; background: rgba(255,255,255,0.1); border-radius: 2px; }
.proj-progress { height: 100%; background: linear-gradient(135deg,#6C3BFF,#FF4DA6); border-radius: 2px; }
.proj-badge { font-size: 8px; font-weight: 700; padding: 2px 7px; border-radius: 100px; flex-shrink: 0; }
.proj-badge.green { background: #D1FAE5; color: #065F46; }
.proj-badge.yellow { background: #FEF3C7; color: #92400E; }
