:root {
  /* Paleta Corporativa & Tons da Marca Handy */
  --primary-50: #faf5ff;
  --primary-100: #f3e8ff;
  --primary-200: #e9d5ff;
  --primary-300: #d8b4fe;
  --primary-400: #c084fc;
  --primary-500: #a855f7;
  --primary-600: #9333ea;
  --primary-700: #7e22ce;
  --primary-800: #6b21a8;
  --primary-900: #581c87;

  /* Neutros Claros */
  --bg-main: #ffffff;
  --bg-subtle: #fbfbfe;
  --bg-surface: #f8fafc;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  --border-focus: #c084fc;

  /* Tipografia & Contrastes */
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  /* Sombras e Elevação */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 25px -5px rgba(126, 34, 206, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 35px -5px rgba(126, 34, 206, 0.12), 0 10px 15px -3px rgba(15, 23, 42, 0.05);
  --shadow-purple-glow: 0 8px 24px -4px rgba(147, 51, 234, 0.3);

  /* Dimensões */
  --header-height: 72px;
  --max-width: 1200px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-main);
  -webkit-font-smoothing: antialiased;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--bg-main);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

/* Utilitários de Layout */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 6.5rem 0;
  }
}

.section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary-700);
  background-color: var(--primary-100);
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
}

.section-desc {
  font-size: 0.98rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin-bottom: 2.25rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
  .section-desc {
    font-size: 1.125rem;
    margin-bottom: 3rem;
  }
}

/* HEADER & NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  z-index: 1000;
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.brand-logo {
  width: 34px;
  height: 34px;
}

@media (min-width: 768px) {
  .brand {
    font-size: 1.25rem;
  }
  .brand-logo {
    width: 38px;
    height: 38px;
  }
}

.brand-text span {
  color: var(--primary-600);
}

.nav-links {
  display: none;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
  }

  .nav-link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-secondary);
  }

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

.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 9px;
}

.mobile-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

@media (min-width: 900px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  text-align: center;
}

.mobile-menu.open {
  display: block;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.mobile-nav-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  display: block;
  padding: 0.4rem 0;
}

/* BOTÕES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  font-family: inherit;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-purple-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(147, 51, 234, 0.4);
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-primary);
  border-color: var(--border-color);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  background: var(--bg-surface);
  border-color: var(--primary-300);
  color: var(--primary-700);
}

.btn-whatsapp {
  background: #22c55e;
  color: #ffffff;
  box-shadow: 0 8px 20px -4px rgba(34, 197, 94, 0.35);
}

.btn-whatsapp:hover {
  background: #16a34a;
  transform: translateY(-2px);
  color: #ffffff;
}

/* HERO SECTION (MOBILE FIRST OTIMIZADO) */
.hero {
  position: relative;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
  background: radial-gradient(circle at 80% 20%, rgba(192, 132, 252, 0.14) 0%, rgba(255, 255, 255, 0) 60%),
              radial-gradient(circle at 10% 80%, rgba(147, 51, 234, 0.07) 0%, rgba(255, 255, 255, 0) 50%),
              var(--bg-main);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }
}

.hero-content {
  text-align: center;
}

@media (min-width: 992px) {
  .hero-content {
    text-align: left;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-800);
  background: rgba(243, 232, 255, 0.85);
  border: 1px solid var(--primary-200);
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary-600);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.3);
}

.hero-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1.15rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 2.85rem;
  }
}

@media (min-width: 992px) {
  .hero-title {
    font-size: 3.15rem;
  }
}

.hero-title .text-gradient {
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-800) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0 auto 1.75rem auto;
  max-width: 580px;
}

@media (min-width: 992px) {
  .hero-description {
    font-size: 1.125rem;
    margin: 0 0 2rem 0;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
  justify-content: center;
}

@media (min-width: 480px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 992px) {
  .hero-actions {
    justify-content: flex-start;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

@media (min-width: 480px) {
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-item .stat-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
}

.stat-item .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* HERO CARD */
.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: linear-gradient(145deg, #ffffff 0%, #faf5ff 100%);
  border: 1px solid var(--primary-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.4rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

@media (min-width: 640px) {
  .hero-card {
    padding: 2.25rem 2rem;
  }
}

.hero-card-logo-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem auto;
  padding: 10px;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--primary-100);
  box-shadow: var(--shadow-md);
}

.hero-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.hero-card-sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.hero-card-pills {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}

.hero-card-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.95rem;
  background: #ffffff;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(226, 232, 240, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.pill-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--primary-100);
  color: var(--primary-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* SOBRE NÓS */
.about-section {
  background-color: var(--bg-subtle);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.about-text {
  text-align: center;
}

@media (min-width: 900px) {
  .about-text {
    text-align: left;
  }
}

.about-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.15rem;
  line-height: 1.65;
}

.origin-highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  background: #ffffff;
  border: 1px solid var(--primary-200);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--primary-800);
  margin-top: 0.5rem;
}

.about-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .about-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.about-feature-card {
  background: #ffffff;
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

@media (min-width: 600px) {
  .about-feature-card {
    text-align: left;
    padding: 1.75rem;
  }
}

.about-feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-300);
}

.feature-icon-box {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--primary-100);
  color: var(--primary-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem auto;
}

@media (min-width: 600px) {
  .feature-icon-box {
    margin: 0 0 1rem 0;
  }
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* PRODUTOS */
.products-section {
  position: relative;
}

.products-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.product-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

@media (min-width: 768px) {
  .product-card {
    padding: 3rem;
  }
}

.product-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  text-align: center;
  align-items: center;
}

@media (min-width: 768px) {
  .product-header {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: center;
  }
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

.badge-auto {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.badge-construct {
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #fed7aa;
}

.product-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 0.4rem;
}

@media (min-width: 768px) {
  .product-title {
    font-size: 2rem;
  }
}

.product-desc {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  text-align: center;
}

@media (min-width: 768px) {
  .product-desc {
    font-size: 1.05rem;
    text-align: left;
    max-width: 750px;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 600px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  text-align: left;
}

.feature-check {
  color: var(--primary-600);
  font-weight: bold;
  flex-shrink: 0;
  font-size: 1.05rem;
}

.feature-item-text h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.feature-item-text p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.audiences-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .audiences-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.audience-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  transition: var(--transition);
  text-align: center;
}

@media (min-width: 768px) {
  .audience-card {
    text-align: left;
    padding: 1.5rem;
  }
}

.audience-card:hover {
  background: #ffffff;
  border-color: var(--primary-300);
}

.audience-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-700);
  margin-bottom: 0.4rem;
}

.audience-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.audience-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ABORDAGEM */
.approach-section {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.approach-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .approach-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .approach-steps {
    grid-template-columns: repeat(5, 1fr);
  }
}

.step-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.15rem;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 1024px) {
  .step-card {
    align-items: flex-start;
    text-align: left;
    padding: 1.75rem 1.25rem;
  }
}

.step-card:hover {
  border-color: var(--primary-400);
  transform: translateY(-3px);
}

.step-num {
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--primary-600);
  background: var(--primary-100);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 0.85rem;
}

.step-title {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.step-desc {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* EXPANSÃO */
.expansion-banner {
  background: linear-gradient(135deg, #2e1065 0%, #581c87 50%, #7e22ce 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .expansion-banner {
    padding: 4.5rem 3.5rem;
  }
}

.expansion-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.expansion-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}

.expansion-title {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.85rem;
}

@media (min-width: 768px) {
  .expansion-title {
    font-size: 2.35rem;
  }
}

.expansion-desc {
  font-size: 0.95rem;
  color: #e9d5ff;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.expansion-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.badge-item {
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
}

/* EQUIPE */
.team-section {
  background: var(--bg-main);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pillar-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  transition: var(--transition);
  text-align: center;
}

@media (min-width: 600px) {
  .pillar-card {
    text-align: left;
    padding: 1.75rem;
  }
}

.pillar-card:hover {
  background: #ffffff;
  border-color: var(--primary-300);
}

.pillar-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  border: 1px solid var(--primary-200);
  color: var(--primary-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}

@media (min-width: 600px) {
  .pillar-icon {
    margin: 0 0 1.25rem 0;
  }
}

.pillar-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.pillar-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* CONTATO */
.contact-section {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 960px) {
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.5rem;
    align-items: flex-start;
  }
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card-box {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-xs);
  text-align: center;
}

@media (min-width: 640px) {
  .contact-card-box {
    text-align: left;
    padding: 1.75rem;
  }
}

.contact-card-box h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.contact-card-box p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.35rem;
}

.contact-channels-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.direct-channel {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-align: left;
}

.direct-channel:hover {
  background: #ffffff;
  border-color: var(--primary-400);
}

.direct-channel-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.direct-channel-icon.mail {
  background: var(--primary-100);
  color: var(--primary-700);
}

.direct-channel-icon.wa {
  background: #dcfce7;
  color: #16a34a;
}

.direct-channel-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-primary);
  word-break: break-word;
}

.direct-channel-text span {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* FORMULÁRIO DE CONTATO */
.contact-form-panel {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 640px) {
  .contact-form-panel {
    padding: 2.75rem 2.25rem;
  }
}

.form-header {
  margin-bottom: 1.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .form-header {
    text-align: left;
  }
}

.form-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.form-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

@media (min-width: 600px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: #ffffff;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: var(--transition);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15);
}

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

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.4rem;
}

@media (min-width: 600px) {
  .form-actions {
    flex-direction: row;
    align-items: center;
  }
}

.form-status {
  padding: 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  display: none;
  text-align: center;
}

.form-status.success {
  display: block;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

/* ==========================================================================
   RODAPÉ DE RESPEITO (CENTRADO NO MOBILE, TIPOGRAFIA EQUILIBRADA, BYLEVIT)
   ========================================================================== */
.footer-respect {
  background: #09090b;
  color: #f4f4f5;
  border-top: 1px solid #27272a;
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
  margin-bottom: 3.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .footer-top-grid {
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 3rem;
  }
}

.footer-col-brand .footer-brand-title {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-col-brand .footer-brand-title span {
  color: var(--primary-400);
}

.footer-bio {
  font-size: 0.9rem;
  color: #a1a1aa;
  line-height: 1.65;
  margin: 0 auto 1.25rem auto;
  max-width: 360px;
}

@media (min-width: 640px) {
  .footer-bio {
    margin: 0 0 1.25rem 0;
  }
}

.footer-location {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #d4d4d8;
}

.footer-col-title {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 1.15rem;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

@media (min-width: 640px) {
  .footer-links-list {
    align-items: flex-start;
  }
}

.footer-links-list a {
  font-size: 0.9rem;
  color: #a1a1aa;
}

.footer-links-list a:hover {
  color: #ffffff;
}

/* Bloco da Marca Parceira ByLevit */
.partner-badge-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #27272a;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin: 0.5rem auto 0 auto;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .partner-badge-box {
    margin: 0.5rem 0 0 0;
    align-items: flex-start;
    text-align: left;
    max-width: none;
  }
}

.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.35rem 0;
  transition: var(--transition);
}

.partner-logo-img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.bylevit-text {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
}

.bylevit-text .by-white {
  color: #ffffff;
}

.bylevit-text .levit-red {
  color: #ff3b3b;
  text-shadow: 0 0 12px rgba(255, 59, 59, 0.45);
}

.partner-desc {
  font-size: 0.8rem;
  color: #71717a;
  margin-top: 0.4rem;
  line-height: 1.45;
}

/* Barra Inferior do Rodapé */
.footer-bottom-bar {
  border-top: 1px solid #27272a;
  padding-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-bar {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: #a1a1aa;
}

.footer-legal-links a:hover {
  color: #ffffff;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #71717a;
}

/* ==========================================================================
   PÁGINA LEGAL (TERMOS E PRIVACIDADE)
   ========================================================================== */
.legal-page-header {
  padding-top: calc(var(--header-height) + 2.5rem);
  padding-bottom: 2.5rem;
  background: linear-gradient(180deg, var(--primary-50) 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

@media (min-width: 768px) {
  .legal-page-header {
    padding-top: calc(var(--header-height) + 3.5rem);
    padding-bottom: 3.5rem;
  }
}

.legal-content-wrap {
  max-width: 850px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 5rem 1.25rem;
}

@media (min-width: 768px) {
  .legal-content-wrap {
    padding: 4rem 1.25rem 6rem 1.25rem;
  }
}

.legal-content-wrap h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 2rem;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .legal-content-wrap h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
  }
}

.legal-content-wrap h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.65rem;
}

.legal-content-wrap p, .legal-content-wrap li {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .legal-content-wrap p, .legal-content-wrap li {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.15rem;
  }
}

.legal-content-wrap ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-highlight-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--primary-600);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.92rem;
}
