/* ── NAV ─────────────────────────────────────────────────── */
nav {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100% - 1200px) / 2));
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--gray-200);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.nav-brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 8px;
  transition: all var(--transition);
}

.nav-link:hover {
  color: var(--text);
  background: var(--gray-100);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 8px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all var(--transition);
}

.nav-dropdown-btn:hover {
  color: var(--text);
  background: var(--gray-100);
}

.nav-dropdown-btn svg {
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-btn svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 6px;
  min-width: 210px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s;
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 9px 12px;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.15s;
}

.nav-dropdown-menu a:hover {
  background: var(--gray-100);
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99;
  padding: 80px 24px 40px;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 8px;
  margin-bottom: 4px;
  margin-top: 20px;
}

.mobile-nav a {
  display: block;
  padding: 10px 8px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.15s;
}

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

.mobile-nav-actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-actions .btn-ghost {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }
}

@media (max-width: 540px) {
  .nav-actions .btn-primary.btn-sm {
    display: none;
  }
}

/* ── SECTIONS BASE ─────────────────────────────────────────── */
section {
  padding: clamp(60px, 8vw, 60px) max(24px, calc((100% - 1200px) / 2));
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 12px;
  color: var(--text);
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 500px;
}

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

.section-header .section-sub {
  margin: 0 auto;
}

/* ── HERO ──────────────────────────────────────────────────── */
.seg-hero {
  background: linear-gradient(160deg, var(--gray-50) 0%, #fdf5e6 60%, var(--gray-50) 100%);
  padding: clamp(60px, 10vw, 120px) max(24px, calc((100% - 1200px) / 2)) clamp(80px, 10vw, 120px);
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.seg-hero h1 {
  max-width: 900px;
  margin: 0 auto 20px;
  color: var(--text);
}

.seg-hero h1 em {
  color: var(--primary);
  font-style: normal;
}

.seg-hero .hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
}

.seg-hero .hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FEATURES ──────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width:900px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212, 146, 42, 0.1);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: #f6f4ee;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text);
}

.feature-card p {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ── BENEFITS LIST ─────────────────────────────────────────── */
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.benefit-item::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: #f6f4ee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 800;
  margin-top: 1px;
}

/* ── SPLIT SECTION ─────────────────────────────────────────── */
.split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width:768px) {
  .split-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .split-grid.reverse .split-visual {
    order: -1;
  }
}

.split-visual {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border: 1px solid var(--gray-200);
}

/* ── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials-section {
  background: var(--dark);
}

.testimonials-section .section-title {
  color: var(--white);
}

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

@media (max-width:900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.stars {
  color: var(--primary);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.925rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.775rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ── CTA ───────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #e8a83e 100%);
  text-align: center;
  padding: clamp(60px, 8vw, 100px) max(24px, calc((100% - 800px) / 2));
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

/* ── FOOTER ────────────────────────────────────────────────── */
footer {
  background: #252525;
  padding: 32px max(24px, calc((100% - 1200px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand-name {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.1rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   SEÇÃO: SOBRE A PROFISSÃO
============================================================ */
.prof-section {
  background: var(--gray-50);
}

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

@media (max-width: 768px) {
  .prof-grid { grid-template-columns: 1fr; gap: 40px; }
}

.prof-intro-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 28px;
}

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

.pain-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.pain-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-pale, #f7eede);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pain-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.pain-item p {
  font-size: 0.845rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

.solution-panel {
  background: var(--white);
  border: 1.5px solid var(--primary, #c38822);
  border-radius: var(--radius-lg, 20px);
  padding: 36px;
  position: sticky;
  top: 88px;
}

.solution-panel .section-label {
  margin-bottom: 8px;
}

.solution-panel h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: var(--text);
}

.solution-panel > p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.solution-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.solution-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text);
}

.solution-item::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.solution-cta {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.solution-cta p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.stat-row {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}

.stat-box {
  text-align: center;
}

.stat-box strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-box span {
  font-size: 0.75rem;
  color: var(--text-muted);
}
