:root {
  --brand-1: #0EA5E9;
  --brand-2: #22C55E;
  --ink-1: #0F172A;
  --ink-2: #334155;
  --bg-1: #0B1020;
  --bg-elev: #111827;
  --muted: #94A3B8;
  --white: #FFFFFF;
  --gradient-1: linear-gradient(135deg, var(--brand-1) 0%, var(--brand-2) 100%);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-1);
  background-image: url('public/Horizontal_colorido.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 60%;
  background-attachment: fixed;
  color: var(--ink-2);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', 'Inter', sans-serif;
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-1);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--brand-1);
  border-color: var(--brand-1);
}

.btn-outline:hover {
  background: var(--brand-1);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: none;
  padding: 8px 16px;
}

.btn-ghost:hover {
  color: var(--white);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
}

.section-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  text-align: center;
  color: var(--muted);
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(11, 16, 32, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(11, 16, 32, 0.95);
  box-shadow: var(--shadow-lg);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.nav-logo .logo-text {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 800;
  color: var(--white);
}

.nav-logo .logo-accent {
  color: var(--brand-1);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 24px;
}

.nav-link {
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s;
}

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

.nav-actions {
  display: flex;
  gap: 12px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  position: relative;
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

/* Hero */
.hero {
  padding: clamp(120px, 20vw, 160px) 0 clamp(60px, 10vw, 100px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 100px;
  color: var(--brand-1);
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 600;
  margin-bottom: 32px;
}

.hero-badge svg {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

.hero-title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: clamp(24px, 5vw, 48px);
  justify-content: center;
  flex-wrap: wrap;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.stat {
  text-align: center;
  min-width: 120px;
}

.stat-value {
  display: block;
  font-size: clamp(36px, 6vw, 48px);
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.stat-label {
  font-size: clamp(12px, 2vw, 14px);
  color: var(--muted);
}

.hero-disclaimer {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

/* How it Works */
.how-it-works {
  padding: clamp(60px, 12vw, 100px) 0;
  background: var(--bg-elev);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(24px, 4vw, 48px);
}

.step {
  text-align: center;
  padding: 32px 24px;
  background: rgba(14, 165, 233, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(14, 165, 233, 0.1);
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-8px);
  border-color: var(--brand-1);
  box-shadow: var(--shadow-xl);
}

.step-number {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-1);
  margin-bottom: 16px;
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-1);
  border-radius: 16px;
  color: var(--white);
}

.step-title {
  font-size: clamp(18px, 3vw, 24px);
  margin-bottom: 12px;
}

.step-description {
  color: var(--muted);
  line-height: 1.6;
  font-size: clamp(14px, 2vw, 16px);
}

/* Metodologia */
.metodologia {
  padding: clamp(60px, 12vw, 100px) 0;
}

.tabs {
  max-width: 1000px;
  margin: 0 auto;
}

.tabs-nav {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px clamp(16px, 3vw, 32px);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: clamp(13px, 2vw, 15px);
}

.tab-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.tab-btn.active {
  background: var(--gradient-1);
  border-color: transparent;
  color: var(--white);
}

.tab-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-panel.active {
  display: block;
}

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

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

.methodology-text h3 {
  font-size: clamp(24px, 4vw, 32px);
  margin-bottom: 12px;
}

.methodology-text .lead {
  font-size: clamp(16px, 2.5vw, 18px);
  color: var(--muted);
  margin-bottom: 32px;
}

.feature-list {
  list-style: none;
  margin-bottom: 32px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: clamp(14px, 2vw, 15px);
}

.feature-list svg {
  flex-shrink: 0;
  color: var(--brand-2);
  margin-top: 2px;
}

.methodology-visual {
  display: none;
}

/* Ferramentas */
.ferramentas {
  padding: clamp(60px, 12vw, 100px) 0;
  background: var(--bg-1);
}

.tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.tool-card {
  background: var(--bg-elev);
  border-radius: 20px;
  padding: clamp(24px, 5vw, 40px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.tool-card:hover {
  border-color: var(--brand-1);
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.featured-tool {
  border-color: var(--brand-1);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
}

.tool-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-1);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.tool-header {
  text-align: center;
  margin-bottom: 32px;
}

.tool-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-1);
  border-radius: 20px;
  color: var(--white);
}

.tool-icon.secondary {
  background: rgba(14, 165, 233, 0.15);
  border: 2px solid var(--brand-1);
  color: var(--brand-1);
}

.tool-header h3 {
  font-size: clamp(24px, 4vw, 32px);
  margin-bottom: 8px;
}

.tool-tagline {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--brand-1);
  font-weight: 600;
}

.tool-description {
  margin-bottom: 32px;
}

.tool-description p {
  color: var(--muted);
  line-height: 1.7;
  font-size: clamp(14px, 2vw, 16px);
  text-align: center;
}

.tool-features {
  margin-bottom: 32px;
}

.tool-features h4 {
  font-size: clamp(16px, 2.5vw, 18px);
  margin-bottom: 20px;
  color: var(--white);
}

.tool-features ul {
  list-style: none;
}

.tool-features li {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(14, 165, 233, 0.05);
  border-radius: 12px;
  border-left: 3px solid var(--brand-1);
  align-items: flex-start;
}

.tool-features li svg {
  flex-shrink: 0;
  color: var(--brand-2);
  margin-top: 2px;
}

.tool-features li div {
  flex: 1;
}

.tool-features li strong {
  display: block;
  color: var(--white);
  margin-bottom: 4px;
  font-size: clamp(14px, 2vw, 15px);
}

.tool-features li span {
  color: var(--muted);
  font-size: clamp(13px, 1.8vw, 14px);
  line-height: 1.6;
}

.tool-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 12px;
  border: 2px solid var(--brand-2);
}

.tool-highlight svg {
  flex-shrink: 0;
  color: var(--brand-2);
}

.tool-highlight p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
  font-size: clamp(13px, 2vw, 15px);
}

.tool-highlight strong {
  color: var(--brand-2);
}

.tool-simple-features {
  list-style: none;
  margin-top: 24px;
}

.tool-simple-features li {
  padding: 12px 0;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: clamp(14px, 2vw, 15px);
}

.tool-simple-features li:last-child {
  border-bottom: none;
}

.tool-simple-features li::before {
  content: '→';
  color: var(--brand-1);
  font-weight: bold;
  margin-right: 12px;
}

/* Precisão */
.precision-section {
  padding: clamp(60px, 12vw, 100px) 0;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, rgba(34, 197, 94, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.precision-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.precision-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(14, 165, 233, 0.15);
  border: 2px solid var(--brand-1);
  border-radius: 100px;
  color: var(--brand-1);
  font-size: clamp(11px, 2vw, 13px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.precision-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
}

.precision-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--muted);
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.precision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(20px, 3vw, 32px);
  margin-bottom: 60px;
}

.precision-card {
  background: var(--bg-elev);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 32px) clamp(16px, 3vw, 24px);
  border: 2px solid rgba(14, 165, 233, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.precision-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand-1);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
}

.precision-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-1);
  border-radius: 50%;
  color: var(--white);
}

.precision-card h3 {
  font-size: clamp(16px, 2.5vw, 20px);
  margin-bottom: 12px;
  color: var(--white);
}

.precision-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: clamp(13px, 2vw, 15px);
}

.precision-cta {
  margin-bottom: 24px;
}

.precision-disclaimer {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* Sala */
.sala {
  padding: clamp(60px, 12vw, 100px) 0;
  background: var(--bg-elev);
}

.sala-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.agenda-card,
.recursos-card,
.regras-card {
  background: var(--bg-1);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.agenda-card h3,
.recursos-card h3,
.regras-card h3 {
  font-size: clamp(18px, 3vw, 20px);
  margin-bottom: 24px;
}

.agenda-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.agenda-item:last-child {
  border-bottom: none;
}

.agenda-time {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-1);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: clamp(14px, 2vw, 15px);
}

.agenda-desc {
  color: var(--muted);
  padding-left: 28px;
  font-size: clamp(14px, 2vw, 15px);
}

.recursos-list {
  list-style: none;
}

.recursos-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: clamp(14px, 2vw, 15px);
}

.recursos-list svg {
  flex-shrink: 0;
  color: var(--brand-1);
  margin-top: 2px;
}

.sala-pricing {
  margin-top: 40px;
}

.pricing-cards {
  display: flex;
  justify-content: center;
}

.pricing-card {
  background: var(--bg-1);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 32px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: all 0.3s ease;
  max-width: 500px;
  width: 100%;
}

.pricing-card:hover {
  border-color: var(--brand-1);
  transform: scale(1.02);
}

.pricing-card.featured {
  border-color: var(--brand-1);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-1);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
}

.pricing-header {
  text-align: center;
  margin-bottom: 24px;
}

.pricing-header h4 {
  font-size: clamp(16px, 2.5vw, 18px);
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
}

.pricing-price .currency {
  font-size: clamp(20px, 3vw, 24px);
  color: var(--muted);
  margin-top: 8px;
}

.pricing-price .amount {
  font-size: clamp(40px, 6vw, 48px);
  font-weight: 800;
  color: var(--white);
}

.pricing-price .period {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--muted);
  align-self: flex-end;
  margin-bottom: 12px;
}

.pricing-features {
  list-style: none;
  margin: 24px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.pricing-features li {
  color: var(--muted);
  padding: 8px 0;
  font-size: clamp(14px, 2vw, 15px);
  line-height: 1.5;
}

.pricing-features li::before {
  content: '✓';
  color: var(--brand-2);
  font-weight: bold;
  margin-right: 8px;
}

/* Treinamentos */
.treinamentos {
  padding: clamp(60px, 12vw, 100px) 0;
}

.coming-soon-container {
  max-width: 800px;
  margin: 0 auto;
}

.coming-soon-card {
  background: var(--bg-elev);
  border-radius: 20px;
  padding: clamp(40px, 6vw, 60px) clamp(24px, 5vw, 40px);
  border: 2px dashed rgba(14, 165, 233, 0.3);
  text-align: center;
}

.coming-soon-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 165, 233, 0.1);
  border-radius: 50%;
  color: var(--brand-1);
}

.coming-soon-card h3 {
  font-size: clamp(24px, 4vw, 32px);
  margin-bottom: 20px;
}

.coming-soon-text {
  font-size: clamp(16px, 2.5vw, 18px);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.coming-soon-features {
  text-align: left;
  margin-bottom: 40px;
  padding: clamp(20px, 4vw, 32px);
  background: rgba(14, 165, 233, 0.05);
  border-radius: 16px;
}

.coming-soon-features h4 {
  font-size: clamp(16px, 2.5vw, 18px);
  margin-bottom: 20px;
  text-align: center;
}

.coming-soon-features ul {
  list-style: none;
}

.coming-soon-features li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--muted);
  align-items: flex-start;
  font-size: clamp(14px, 2vw, 15px);
}

.coming-soon-features li svg {
  flex-shrink: 0;
  color: var(--brand-2);
  margin-top: 2px;
}

.coming-soon-note {
  font-size: clamp(13px, 2vw, 14px);
  color: var(--muted);
  font-style: italic;
}

.coming-soon-note a {
  color: var(--brand-1);
  text-decoration: underline;
}

/* Resultados */
.resultados {
  padding: clamp(60px, 12vw, 100px) 0;
  background: var(--bg-elev);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(20px, 3vw, 32px);
}

.testimonial-card {
  background: var(--bg-1);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--brand-1);
  transform: translateY(-4px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  color: var(--white);
  font-size: clamp(15px, 2vw, 16px);
}

.testimonial-role {
  font-size: clamp(13px, 2vw, 14px);
  color: var(--muted);
}

.testimonial-text {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  font-size: clamp(14px, 2vw, 15px);
}

.testimonial-result {
  padding: 12px 20px;
  background: rgba(34, 197, 94, 0.1);
  border-left: 3px solid var(--brand-2);
  color: var(--brand-2);
  font-weight: 600;
  font-size: clamp(13px, 2vw, 14px);
  border-radius: 4px;
}

/* FAQ */
.faq {
  padding: clamp(60px, 12vw, 100px) 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-elev);
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--brand-1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(16px, 3vw, 24px);
  background: transparent;
  border: none;
  color: var(--white);
  font-weight: 600;
  font-size: clamp(14px, 2.5vw, 16px);
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-question svg {
  flex-shrink: 0;
  color: var(--brand-1);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 clamp(16px, 3vw, 24px) clamp(16px, 3vw, 24px);
  color: var(--muted);
  line-height: 1.7;
  font-size: clamp(14px, 2vw, 15px);
}

/* Contato */
.contato {
  padding: clamp(60px, 12vw, 100px) 0;
  background: var(--bg-elev);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-info h3 {
  font-size: clamp(20px, 3vw, 24px);
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--bg-1);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item svg {
  color: var(--brand-1);
  flex-shrink: 0;
}

.contact-label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  font-weight: 600;
}

.contact-item a {
  color: var(--white);
  font-weight: 500;
  font-size: clamp(14px, 2vw, 15px);
}

.contact-form {
  background: var(--bg-1);
  padding: clamp(24px, 5vw, 40px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-elev);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--white);
  font-size: 15px;
  font-family: inherit;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-1);
}

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

/* Footer */
.footer {
  background: var(--bg-elev);
  padding: clamp(60px, 10vw, 80px) 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: 60px;
}

.footer-logo .logo-text {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 800;
  color: var(--white);
}

.footer-logo .logo-accent {
  color: var(--brand-1);
}

.footer-desc {
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.7;
  font-size: clamp(13px, 2vw, 14px);
}

.footer-title {
  font-size: clamp(14px, 2.5vw, 16px);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--muted);
  font-size: clamp(13px, 2vw, 14px);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--brand-1);
}

.footer-disclaimer {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
  padding: 20px;
  background: rgba(239, 68, 68, 0.05);
  border-left: 3px solid #EF4444;
  border-radius: 4px;
}

.footer-copy {
  text-align: center;
  font-size: clamp(13px, 2vw, 14px);
  color: var(--muted);
}

/* Mobile Menu */
@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 72px);
    background: rgba(11, 16, 32, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 24px;
    gap: 24px;
    transition: left 0.3s ease;
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .nav-link {
    font-size: 16px;
    padding: 8px 0;
  }

  .nav-actions {
    flex-direction: column;
    width: 100%;
  }

  .nav-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 640px) {
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .tool-features li {
    flex-direction: column;
    gap: 12px;
  }
}

/* Logo Images */
.nav-logo .logo-image {
  height: clamp(50px, 8vw, 70px);
  width: auto;
  max-width: 280px;
  display: block;
  transition: transform 0.3s ease;
}

.nav-logo .logo-image:hover {
  transform: scale(1.05);
}

.footer-logo-image {
  height: clamp(60px, 10vw, 90px);
  width: auto;
  max-width: 320px;
  display: block;
  margin-bottom: 16px;
}

@media (max-width: 640px) {
  .nav-logo .logo-image {
    height: 40px;
    max-width: 180px;
  }

  .footer-logo-image {
    height: 50px;
    max-width: 220px;
  }
}
