/* ===== Variáveis de Cores ===== */
/* :root {
  --primary: #4361ee;
  --primary-dark: #3f37c9;
  --primary-light: #4cc9f0;
  --secondary: #3a0ca3;
  --accent: #f72585;
  --light: #f8f9fa;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --dark: #212529;
} */

body {
  font-family: 'Poppins', sans-serif;
  background: var(--light);
  color: var(--gray-800);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

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

section {
  padding: 5rem 0;
  transition: background 0.7s cubic-bezier(.4,0,.2,1);
  overflow: visible;
}

/* Ajuste específico para a seção desafio */
.challenge {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--gray-700);
  margin-bottom: 3rem;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title-left {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
  text-align: left;
}

/* ===== Seções com fundo alternado e transições ===== */
.challenge, .solution, .benefits, .implementation, .conclusion {
  background: #fff !important;
  position: relative;
  z-index: 1;
}
.solution, .implementation {
  background: linear-gradient(120deg, #f3f0fa 0%, #e9e0fa 100%);
  position: relative;
  z-index: 1;
}
.section-wave {
  display: none;
}
section + section {
  box-shadow: none;
}

@media (max-width: 600px) {
  .challenge, .solution, .benefits, .implementation, .conclusion {
    background: #fff;
  }
  .section-wave {
    height: 30px;
  }
}

/* ===== Navbar (Menu Superior) ===== */
.navbar {
  width: 100%;
  background: linear-gradient(90deg, #3f37c9 0%, #4361ee 100%);
  padding: 2rem 0 1rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 12px 0 rgba(67,97,238,0.12);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #bdbdfc;
  font-size: 0.95rem;
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
  padding: 0.5rem 1.2rem;
  border-radius: 1rem;
}

.navbar-item.active,
.navbar-item:hover {
  color: #fff;
  background: rgba(76,201,240,0.09);
  box-shadow: 0 2px 8px 0 rgba(76,201,240,0.10);
}

.navbar-icon {
  font-size: 2rem;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-label {
  font-weight: 500;
  font-size: 1rem;
  margin-top: 0.1rem;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(120deg, #3f37c9 0%, #4361ee 100%);
  color: #fff;
  position: relative;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 3rem;
  box-shadow: 0 4px 32px 0 rgba(67,97,238,0.18);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-bg-img {
  background: url('imgs/Landing Page - Home.jpg') center/cover no-repeat;
  opacity: 1;
  filter: brightness(0.82) saturate(1.2);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4.5rem 2rem 2.5rem 2rem;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 1.1;
}
.hero-highlight {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 0px;
  display: inline-block;
  background: linear-gradient(90deg, #A16FF2 0%, #6F44EB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  color: #e0e0e0;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-cta {
  display: inline-block;
  background: #a259f7;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px 0 rgba(162,89,247,0.15);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.hero-cta:hover {
  background: #fff;
  color: #a259f7;
}
.hero-cta-outline {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  text-decoration: none;
  border: 1.5px solid #fff;
  transition: background 0.2s, color 0.2s;
}
.hero-cta-outline:hover {
  background: #fff;
  color: #a259f7;
}
.scroll-indicator {
  display: none !important;
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
  z-index: 2;
  font-size: 1rem;
  opacity: 0.9;
}
.scroll-indicator svg {
  width: 32px;
  height: 32px;
  margin-top: 0.3rem;
  stroke: #fff;
}

/* ===== Hero Navbar (Menu Topo) ===== */
.hero-navbar {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background: rgba(30, 20, 60, 0.10); /* Transparente, escuro sutil */
  backdrop-filter: blur(2px);
  box-shadow: none;
}
.hero-navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem 0.7rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-navbar-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}
.logo-placeholder {
  background: rgba(255,255,255,0.18);
  color: #fff;
  padding: 0.4rem 1.2rem;
  border-radius: 0.8rem;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 2px;
}
.logo-img {
  height: 30px;
  width: auto;
  display: block;
}
@media (max-width: 600px) {
  .logo-img {
    height: 21px;
  }
}
.hero-navbar-menu {
  display: flex;
  gap: 2.2rem;
}
.hero-navbar-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0.4rem 0.7rem;
  border-radius: 0.7rem;
  transition: background 0.18s, color 0.18s;
  background: transparent;
}
.hero-navbar-menu a:hover, .hero-navbar-menu a.active {
  background: rgba(162,89,247,0.15);
  color: #b197fc;
}
@media (max-width: 900px) {
  .hero-navbar-container {
    padding: 1.2rem 1rem 0.7rem 1rem;
  }
  .hero-navbar-menu {
    gap: 1.1rem;
  }
}
@media (max-width: 600px) {
  .hero-navbar-logo {
    font-size: 1.1rem;
  }
  .hero-navbar-menu a {
    font-size: 0.98rem;
    padding: 0.3rem 0.5rem;
  }
}

/* ===== Challenge ===== */
.challenge-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.challenge-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px 0 rgba(162,89,247,0.07);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.2s;
  border: 1.5px solid #ece9f5;
}
.challenge-card.future {
  background: linear-gradient(120deg, #f3f0fa 0%, #e9e0fa 100%);
  border: 1.5px solid #a16ff2;
  box-shadow: 0 4px 24px 0 rgba(162,111,242,0.12);
}
.challenge-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.challenge-card ul {
  padding-left: 1.2rem;
}
.challenge-card li {
  margin-bottom: 0.7rem;
  font-size: 1rem;
}
.card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
.challenge-card svg {
  display: block;
}

/* ===== Solution ===== */
.solution {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.solution-image {
  margin: 2rem 0;
  text-align: center;
  overflow: hidden;
  max-height: 400px; /* Aumentado para mostrar mais da imagem */
}

.solution-img {
  max-width: 100%;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  object-fit: cover;
  object-position: top;
  display: block;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.feature-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  width: 100%;
}

.feature-icon {
  margin-bottom: 0;
}

.feature-icon svg {
  color: #a259f7;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: #333;
}

.feature-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.feature-tag {
  display: inline-block;
  background: rgba(162, 89, 247, 0.1);
  color: #a259f7;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.stakeholder {
  background: rgba(162, 89, 247, 0.1);
  color: #a259f7;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 0.3rem;
  display: inline-block;
  padding: 0.22em 0.8em;
  border-radius: 1.1em;
  letter-spacing: 0.01em;
  box-shadow: none;
  line-height: 1.7;
  border: none;
}

/* Responsividade */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .solution-image {
    margin: 1.5rem 0;
  }
}

/* ===== Benefits ===== */
.benefits-main-card {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: #f5f6fa;
  border-radius: 2.2rem;
  box-shadow: 0 1px 6px rgba(80, 77, 100, 0.04);
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
}
.benefits-layout {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 1rem 2.5rem;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .benefits-main-card {
    padding: 0;
  }
  .benefits-layout {
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 2rem;
  }
}
.benefits-left {
  flex: 1.5;
  min-width: 180px;
}
.benefits-right {
  flex: 3;
  min-width: 0;
  max-width: 100%;
}
.benefits-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 4rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.benefit-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0.7rem 0 0.7rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  word-break: break-word;
  overflow-wrap: break-word;
  box-sizing: border-box;
}
.benefit-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.2rem;
}
.benefit-icon {
  font-size: 2.1rem;
  margin: 0;
  color: var(--primary, #a259f7);
  flex-shrink: 0;
  padding: 4px;
  box-sizing: content-box;
}
.benefit-icon svg {
  color: var(--primary, #a259f7);
  stroke: var(--primary, #a259f7);
}
.benefit-card h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-900);
  display: block;
}
.benefit-card p {
  margin: 0 0 0.3rem 0;
  color: var(--gray-700);
  font-size: 1rem;
  display: block;
}
.benefits-watermark {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 180px;
  max-width: 30%;
  opacity: 0.13;
  pointer-events: none;
  z-index: 1;
}
.benefits-logo-watermark {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 220px;
  max-width: 44%;
  opacity: 0.17;
  pointer-events: none;
  z-index: 2;
}

/* ===== Implementation (Timeline) ===== */
.timeline {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.timeline-phase {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 12px 0 rgba(67,97,238,0.08);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  min-width: 220px;
  max-width: 260px;
  flex: 1 1 220px;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}
.timeline-phase h4 {
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
}
.timeline-duration {
  font-size: 0.95rem;
  color: var(--primary-dark);
  font-weight: 600;
}
.timeline-deliver {
  display: block;
  margin-top: 0.7rem;
  color: var(--gray-600);
  font-size: 0.92rem;
}

/* ===== Challenge Evolution ===== */
.challenge-evolution {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.evolution-step {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px 0 rgba(162,89,247,0.07);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  min-width: 260px;
  max-width: 350px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1.5px solid #ece9f5;
  position: relative;
}
.evolution-step.past {
  opacity: 0.85;
  filter: grayscale(0.3);
}
.evolution-step.future {
  border: 1.5px solid #a16ff2;
  box-shadow: 0 4px 24px 0 rgba(162,111,242,0.12);
  background: linear-gradient(120deg, #f3f0fa 0%, #e9e0fa 100%);
  transform: scale(1.04);
  z-index: 2;
}
.evolution-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  max-width: 60px;
  flex: 0 0 60px;
}
@media (max-width: 900px) {
  .challenge-evolution {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  .evolution-arrow {
    transform: rotate(90deg);
    min-width: 40px;
    max-width: 40px;
    margin: 0 auto;
  }
}

/* ===== Challenge Evolution Simple ===== */
.challenge-evolution-simple {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 3rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.evolution-past-simple, .evolution-future-simple {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 220px;
  justify-content: center;
}
.evolution-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: #a16ff2;
  margin-bottom: 0.7rem;
  letter-spacing: 0.5px;
}
.evolution-label-future {
  color: #6f44eb;
}
.evolution-arrow-simple {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  max-width: 60px;
  flex: 0 0 60px;
  height: 100%;
}
.evolution-past-simple ul, .evolution-future-simple ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
}
@media (max-width: 900px) {
  .challenge-evolution-simple {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  .evolution-arrow-simple {
    transform: rotate(90deg);
    min-width: 40px;
    max-width: 40px;
    margin: 0 auto;
    height: 40px;
  }
}

/* ===== Transformation Section ===== */
.transformation-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 2rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.transformation-before, .transformation-after {
  flex: 1;
  min-width: 280px;
  max-width: 450px;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.transformation-before {
  background: #fff;
  border: 1px solid #eaeaea;
}

.transformation-after {
  background: #fff;
  border: 1px solid #d9c9f9;
}

.transformation-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.transformation-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.transformation-icon.old {
  background: #f0f0f0;
  border: 1px solid #e0e0e0;
}

.transformation-icon.new {
  background: #f0e9ff;
  border: 1px solid #d9c9f9;
}

.transformation-header h3 {
  font-size: 1.25rem;
  margin: 0;
  font-weight: 600;
}

.transformation-before h3, .transformation-header h3 {
  color: #111;
}

.transformation-after h3 {
  color: #6F44EB;
}

.transformation-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.transformation-content li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 1rem;
}

.negative, .positive {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 0.75rem;
  flex-shrink: 0;
  font-weight: bold;
}

.negative {
  color: #e74c3c;
  background: rgba(231, 76, 60, 0.1);
}

.positive {
  color: #6F44EB;
  background: rgba(111, 68, 235, 0.1);
}

.transformation-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  flex: 0 0 80px;
}

.transformation-cta {
  text-align: center;
  margin-top: 2rem;
}

.btn-learn-more {
  display: inline-block;
  background: #a259f7;
  color: #fff;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(162, 89, 247, 0.2);
}

.btn-learn-more:hover {
  background: #6F44EB;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(162, 89, 247, 0.3);
}

@media (max-width: 900px) {
  .transformation-container {
    flex-direction: column;
    align-items: center;
  }
  
  .transformation-before, .transformation-after {
    max-width: 100%;
    width: 100%;
  }
  
  .transformation-after {
    transform: translateY(0);
  }
  
  .transformation-arrow {
    transform: rotate(90deg);
    margin: 1rem 0;
    height: 60px;
  }
}

/* ===== Conclusion & Contato ===== */
.contact-info {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 1.1rem;
  color: var(--primary-dark);
}

/* ===== Formulário de Contato ===== */
.contact {
  background: linear-gradient(135deg, #f5f0ff 0%, #f0f0ff 100%);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.contact-form, #lead-form.contact-form {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 600px;
  margin: 2rem auto;
}
#lead-form .form-group {
  width: 100%;
  margin-bottom: 0;
}
#lead-form .form-group label {
  display: block;
  margin-bottom: 0.3rem;
}
#lead-form .form-group input,
#lead-form .form-group select {
  width: 100%;
  box-sizing: border-box;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group:nth-last-child(2) {
  grid-column: span 2;
}

.form-submit {
  grid-column: span 2;
  text-align: center;
  margin-top: 1rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #444;
}

.form-group input {
  padding: 0.8rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus {
  border-color: #a259f7;
  outline: none;
  box-shadow: 0 0 0 2px rgba(162, 89, 247, 0.1);
}

.form-group select {
  padding: 0.8rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.2s;
  background-color: #fff;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23a259f7' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 16px;
}

.form-group select:focus {
  border-color: #a259f7;
  outline: none;
  box-shadow: 0 0 0 2px rgba(162, 89, 247, 0.1);
}

.submit-button {
  background: #a259f7;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.submit-button:hover {
  background: #8e45e5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(162, 89, 247, 0.2);
}

@media (max-width: 768px) {
  .contact-form {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
  
  .form-group:nth-last-child(2) {
    grid-column: span 1;
  }
  
  .form-submit {
    grid-column: span 1;
  }
}

/* Estilos para validação de campos */
.form-group input.invalid {
  border-color: #e74c3c;
  background-color: rgba(231, 76, 60, 0.05);
}

.error-message {
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: 0.3rem;
  display: block;
}

/* ===== Footer ===== */
.footer {
  background: #353a3d;
  color: #fff;
  margin-top: 0;
  padding: 0;
  font-family: inherit;
}
.footer-main {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 2rem 1.5rem 2rem;
  gap: 2.5rem;
}
.footer-col {
  flex: 1 1 0;
  min-width: 180px;
}
.footer-brand .footer-title {
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
  display: block;
}
.footer-brand .footer-desc {
  font-size: 1rem;
  color: #f4f6f7;
  margin-top: 0.3rem;
  display: block;
}
.footer-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  display: block;
}
.footer-nav ul, .footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav ul li, .footer-contact ul li {
  margin-bottom: 0.4rem;
  font-size: 1rem;
  color: #fff;
}
.footer-nav ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav ul li a:hover {
  color: #a259f7;
}
.footer-contact a {
  color: #fff;
  text-decoration: underline;
}
.footer-contact a:hover {
  color: #a259f7;
}
.footer-bottom {
  text-align: center;
  font-size: 0.97rem;
  color: #f4f6f7;
  border-top: 1px solid #44494d;
  padding: 1.1rem 0 1.2rem 0;
  background: #353a3d;
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.8rem;
    padding: 2.5rem 1.2rem 1.2rem 1.2rem;
  }
  .footer-col {
    min-width: 120px;
    margin-bottom: 0.8rem;
  }
}

/* ===== Responsividade ===== */
@media (max-width: 900px) {
  .challenge-cards, .solution-features, .timeline {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .navbar-menu {
    gap: 1rem;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 0.7rem;
  }
  section {
    padding: 0.5rem 0;
  }
  .section-title {
    font-size: 1.7rem;
  }
  .hero-title {
    font-size: 3.5rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .navbar {
    padding: 1rem 0 0.5rem 0;
  }
  .navbar-label {
    font-size: 0.85rem;
  }
  .timeline-phase, .feature-card, .benefit-card, .challenge-card {
    padding: 1.2rem 0.7rem 1.1rem 0.7rem;
    min-width: 0;
    max-width: 100%;
  }
}

/* ===== Perfis de Acesso ===== */
.profiles {
  background: #fff;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.profiles-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem auto;
  max-width: 1200px;
  gap: 1.5rem;
}

.infographic-container {
  flex: 0 0 440px; /* Aumentado de 400px para 440px (10% a mais) */
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.profiles-side {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.profile-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  transition: all 0.3s ease;
  height: calc(100% - 3rem);
}

.profiles-grid {
  display: none; /* Escondemos o grid original */
}

/* Ajuste para responsividade */
@media (max-width: 1100px) {
  .profiles-container {
    flex-direction: column;
  }
  
  .profiles-side {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
    flex: 0 0 100%;
  }
  
  .profile-card {
    flex: 0 0 calc(50% - 1.5rem);
    max-width: 280px;
  }
}

@media (max-width: 768px) {
  .profiles-side {
    flex-direction: column;
    align-items: center;
  }
  
  .profile-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Infográfico interativo */
.interactive-infographic {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.hotspot {
  position: absolute;
  width: 25%;
  height: 25%;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.hotspot-comprador:hover {
  /* Remove qualquer cor de fundo ou borda roxa no hover */
  background: none !important;
  border-color: initial !important;
  box-shadow: none !important;
  /* Se houver outra propriedade que deixa roxo, reseta aqui também */
}

/* Posições dos hotspots baseadas na imagem do infográfico */
.hotspot-requisitante {
  top: 15%;
  left: 15%;
}

.hotspot-aprovador {
  top: 15%;
  right: 15%;
}

.hotspot-fornecedor {
  bottom: 15%;
  left: 15%;
}

.hotspot-comprador {
  bottom: 15%;
  right: 15%;
}

/* Estilos para os cards de perfil quando ativos */
.profile-card {
  transition: all 0.3s ease;
}

.profile-card.active {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(162, 89, 247, 0.15);
  border: 1px solid #a259f7;
}

/* Estilos para os elementos do card */
.infographic-img {
  max-width: 100%;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.profile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  width: 100%;
}

.profile-icon {
  display: inline-block;
}

.profile-icon svg {
  color: #a259f7;
}

.profile-tag {
  display: inline-block;
  background: rgba(162, 89, 247, 0.1);
  color: #a259f7;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.profile-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.footer-logo {
  display: block;
  width: 136px;
  max-width: 180px;
  margin-bottom: 0.7rem;
  margin-left: 0;
  height: auto;
}
@media (max-width: 900px) {
  .footer-logo {
    width: 96px;
    max-width: 120px;
    margin-bottom: 0.5rem;
  }
}

.footer-mascot {
  display: block;
  width: 20%;
  height: auto;
  margin: 0.7rem 0 0 0;
  max-width: 80px;
}
@media (max-width: 900px) {
  .footer-mascot {
    width: 18%;
    max-width: 48px;
  }
}

html {
  scroll-behavior: smooth;
}
