@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@400;500;600&display=swap');

:root {
  --primary: #FF6B35;
  --dark: #1A1A1A;
  --light: #FFFFFF;
  --gray: #2D2D2D;
  --accent: #FF6B35;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Inter', sans-serif;
}

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

body {
  font-family: var(--body-font);
  color: var(--dark);
  line-height: 1.8;
  font-weight: 400;
}

p {
  font-size: 1.1rem;
  margin: 0 auto 1.5rem;
  color: rgba(31, 37, 38, 0.9);
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  padding: 0 1rem;
}

/* Container adjustments for better centering */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* Navigation adjustments */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  padding: 1.5rem 0;
  transition: all 0.3s ease;
  background-color: transparent;
  box-shadow: none;
}

.navbar.scrolled {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
}

.logo {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--dark);
}

.orange-dot {
  color: var(--primary);
}

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

/* Hide mobile CTA on desktop */
.mobile-cta {
  display: none;
}

.cta {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta:hover {
  background-color: #e55a2a;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 107, 53, 0.4);
}

/* Hero section adjustments */
.hero {
  position: relative;
  padding: 250px 0 150px;
  text-align: center;
  overflow: hidden;
  min-height: 100vh;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 200px 2rem 0;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 2rem;
  line-height: 1.2;
}

/* Stats container adjustments */
.stats-container {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 4vw, 4rem);
  flex-wrap: wrap;
  margin: 3rem auto;
  max-width: 600px;
}

.stat-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

/* Cards container adjustments */
.cards-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
  margin: 2rem auto;
}

.card {
  padding: 2rem;
  text-align: center;
  background: white;
  border-radius: 1rem;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Process section adjustments */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
  margin: 4rem auto;
  padding: 2rem;
  max-width: 1200px;
}

/* Responsive navigation */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    padding: 2rem;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .navbar .cta {
    margin-top: 1rem;
  }
}

/* Hero section adjustments */
.hero {
  position: relative;
  padding: 250px 0 150px;
  text-align: center;
  overflow: hidden;
  min-height: 100vh;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 200px 2rem 0;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 2rem;
  line-height: 1.2;
}

/* Stats container adjustments */
.stats-container {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 4vw, 4rem);
  flex-wrap: wrap;
  margin: 3rem auto;
  max-width: 600px;
}

.stat-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

/* Cards container adjustments */
.cards-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
  margin: 2rem auto;
}

.card {
  padding: 2rem;
  text-align: center;
  background: white;
  border-radius: 1rem;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Process section adjustments */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
  margin: 4rem auto;
  padding: 2rem;
  max-width: 1200px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem 0;
  }
  
  .navbar .container {
    padding: 0 1rem;
  }
  
  .hero {
    padding: 220px 0 60px;
  }
  
  .hero-content {
    padding: 180px 2rem 0;
  }
  
  .hero h1 {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .stats-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
  }
  
  .stat-item {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .stat-label {
    font-size: 1rem;
  }
  
  .cards {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  
  /* Hide desktop CTA on mobile */
  .desktop-only-cta {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .navbar .logo {
    font-size: 1.5rem;
  }
  
  .navbar .cta {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .hero {
    padding: 240px 0 60px;
  }
  
  .hero-content {
    padding: 180px 1.5rem 0;
  }
  
  .hero h1 {
    font-size: 1.7rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }
  
  .stats-container {
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .stat-item {
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.8rem;
  }
  
  .stat-number {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
  
  .card {
    padding: 1.5rem;
  }
}

/* Process Section */
.process {
  padding: 6rem 2rem;
}

.process .container h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  position: relative;
}

.process .container h2::after {
  content: '';
  width: 80px;
  height: 4px;
  background: var(--primary);
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 400px));
  justify-content: center;
  gap: 3rem;
  margin: 4rem auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  max-width: 1400px;
}

.stepProcess {
  text-align: center;
  padding: 3rem 2rem;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stepProcess:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.2);
  background: rgba(255, 107, 53, 0.02);
}

.stepProcess .icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.stepProcess:hover .icon {
  background: rgba(255, 107, 53, 0.15);
  transform: scale(1.05);
}

.stepProcess .icon svg {
  width: 64px;
  height: 64px;
  fill: var(--primary);
  color: var(--primary);
  transition: all 0.3s ease;
}

.stepProcess:hover .icon svg {
  fill: var(--dark);
  transform: scale(1.1);
}

.stepProcess h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1.2rem;
  color: var(--dark);
  line-height: 1.3;
  transition: color 0.3s ease;
}

.stepProcess:hover h3 {
  color: var(--primary);
}

.stepProcess p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #666;
  margin: 0;
  padding: 0 1rem;
  transition: color 0.3s ease;
}

.stepProcess:hover p {
  color: #444;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  padding: 8rem 0;
  transition: all 0.2s ease;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 8rem;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 4rem 0;
}

.navbar .logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--light);
  transition: color 0.3s ease;
}

.navbar.scrolled .logo {
  color: var(--dark);
}

.navbar .cta {
  padding: 1rem 2.5rem;
  background: var(--primary);
  color: var(--light);
  text-decoration: none;
  border-radius: 2rem;
  transition: all 0.3s ease;
}

.navbar .cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  padding-top: 140px;
  z-index: 100;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 90;
}

.hero-content {
  position: relative;
  text-align: center;
  color: var(--light);
  z-index: 110;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 2rem 0;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  max-width: 1200px;
  padding: 2rem;
}

.stat-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 200px;
  z-index: 3;
  position: relative;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 105;
  background: linear-gradient(
    to right,
    rgba(26, 26, 26, 0.9) 40%,
    rgba(255, 107, 53, 0.2) 100%
  );
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../modelo.jpg') center/cover;
  z-index: 95;
}

.graphic-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(31, 37, 38, 0.8);
  z-index: 100;
}

/* Restante do CSS... */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@400;500;600&display=swap');

:root {
  --primary: #FF6B35;
  --dark: #1A1A1A;
  --light: #FFFFFF;
  --gray: #2D2D2D;
  --accent: #FF6B35;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Inter', sans-serif;
}

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

body {
  font-family: var(--body-font);
  color: var(--dark);
  line-height: 1.8;
  font-weight: 400;
}

p {
  font-size: 1.1rem;
  margin: 0 auto 1.5rem;
  color: rgba(31, 37, 38, 0.9);
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  padding: 0 1rem;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: var(--dark);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../modelo.jpg') center/cover;
}

.graphic-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(31, 37, 38, 0.8);
}

.hero-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(26, 26, 26, 0.9) 40%,
    rgba(255, 107, 53, 0.2) 100%
  );
  z-index: 2;
}

.logo {
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-size: 2rem;
  font-weight: bold;
  color: var(--light);
  z-index: 3;
}

.orange-dot {
  color: var(--primary);
}

.cta {
  position: absolute;
  top: 2rem;
  right: 2rem;
  padding: 0.8rem 2rem;
  background: var(--primary);
  color: var(--light);
  text-decoration: none;
  border-radius: 2rem;
  z-index: 3;
  transition: all 0.3s ease;
}

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

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--light);
  z-index: 3;
  width: 80%;
  max-width: 1200px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin: 3rem auto;
  max-width: 1200px;
  padding: 2rem;
}

.stat-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: all 0.3s ease;
  min-width: 200px;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.cta-bottom {
  display: inline-block;
  padding: 1rem 3rem;
  background: var(--primary);
  color: var(--light);
  text-decoration: none;
  border-radius: 2rem;
  margin-top: 2rem;
  transition: all 0.3s ease;
}

.cta-bottom:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Sections */
section {
  padding: 6rem 2rem;
}

.dark-section {
  background: #1F2425;
  color: #fff;
}

.dark-section h2 {
  color: var(--light);
}

.dark-section p {
  color: rgba(255, 255, 255, 0.9);
}

.dark-section .card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-section .card h3 {
  color: var(--light);
}

.dark-section .card p {
  color: rgba(255, 255, 255, 0.8);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  font-family: var(--heading-font);
  font-size: 2.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.3;
  color: var(--dark);
}

h2 span {
  color: var(--primary);
}

/* Cards */
.cards-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    justify-content: center;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.card {
  background: var(--gray);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.segments .card,
.productivity .card {
  background: #F5F5F5;
}

.segments .card h3,
.productivity .card h3 {
  color: var(--dark);
}

.segments .card p,
.productivity .card p {
  color: rgba(0, 0, 0, 0.8);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Process Section */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  text-align: center;
  padding: 2rem;
  background: #f5f5f5;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 107, 53, 0.2),
    transparent
  );
  transition: 0.5s;
}

.step:hover::before {
  left: 100%;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

/* AI Section */
.ai ul {
  max-width: 800px;
  margin: 2rem auto;
  list-style: none;
}

.ai li {
  padding: 1rem;
  margin: 0.5rem 0;
  background: #f5f5f5;
  border-radius: 0.5rem;
}

/* Footer */
footer {
  background: var(--dark);
  color: var(--light);
  padding: 4rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 1rem 0;
  align-items: center;
  max-width: 800px;
  width: 100%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  max-width: 600px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.social-icons a {
  color: var(--light);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.contact p {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.copyright {
  margin-top: 2rem;
  opacity: 0.8;
  font-size: 0.9rem;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
  justify-content: center;
  align-items: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: white;
  width: 90%;
  max-width: 600px;
  margin: 5% auto;
  padding: 30px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #eee;
}

.modal-header h2 {
  color: var(--dark);
  font-size: 1.8rem;
}

.close {
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: var(--primary);
}

.step {
  display: none;
}

.step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
}

.checkbox-group {
  display: grid;
  gap: 12px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  gap: 15px;
}

.prev-btn,
.next-btn {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.next-btn {
  background: var(--primary);
  color: white;
}

.next-btn:hover {
  background: #ff5a1f;
}

.prev-btn {
  background: #f5f5f5;
  color: var(--dark);
}

.prev-btn:hover {
  background: #e0e0e0;
}

.success-message {
  padding: 15px;
  background: #e8f5e9;
  border-radius: 4px;
  border: 1px solid #c8e6c9;
  color: #4CAF50;
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.success-message i {
  font-size: 1.2em;
}

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

/* Responsividade */
/* Modal Styles */
.modal-content {
  background: white;
  width: 90%;
  max-width: 600px;
  margin: 5% auto;
  padding: 30px;
  border-radius: 10px;
  position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #eee;
}

.modal-header h2 {
  color: var(--dark);
  font-size: 1.8rem;
}

.close {
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: var(--primary);
}

.step {
  display: none;
}

.step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
}

.checkbox-group {
  display: grid;
  gap: 12px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  gap: 15px;
}

.prev-btn,
.next-btn {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.next-btn {
  background: var(--primary);
  color: white;
}

.next-btn:hover {
  background: #ff5a1f;
}

.prev-btn {
  background: #f5f5f5;
  color: var(--dark);
}

.prev-btn:hover {
  background: #e0e0e0;
}

.success-message {
  padding: 15px;
  background: #e8f5e9;
  border-radius: 4px;
  border: 1px solid #c8e6c9;
  color: #4CAF50;
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.success-message i {
  font-size: 1.2em;
}

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

/* Responsividade */
/* Modal Styles */
.modal-content {
  background: white;
  width: 90%;
  max-width: 600px;
  margin: 5% auto;
  padding: 30px;
  border-radius: 10px;
  position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #eee;
}

.modal-header h2 {
  color: var(--dark);
  font-size: 1.8rem;
}

.close {
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: var(--primary);
}

.step {
  display: none;
}

.step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
}

.checkbox-group {
  display: grid;
  gap: 12px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  gap: 15px;
}

.prev-btn,
.next-btn {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.next-btn {
  background: var(--primary);
  color: white;
}

.next-btn:hover {
  background: #ff5a1f;
}

.prev-btn {
  background: #f5f5f5;
  color: var(--dark);
}

.prev-btn:hover {
  background: #e0e0e0;
}

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

/* Responsividade */
@media (max-width: 480px) {
  /* Mobile Styles */
  .navbar {
    padding: 1rem 0;
  }
  
  .navbar .container {
    padding: 0 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .navbar .logo {
    font-size: 1.5rem;
  }
  
  .navbar .cta {
    width: 100%;
    text-align: center;
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .hero {
    padding-top: 80px;
  }
  
  .hero-content {
    width: 95%;
  }
  
  .modal-content {
    width: 95%;
    padding: 1.5rem;
  }
  
  .step-navigation {
    flex-direction: column;
  }
  
  .prev-btn,
  .next-btn {
    width: 100%;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
}

.modal.show {
  display: block;
}

.modal-content {
  background: white;
  width: 90%;
  max-width: 600px;
  margin: 5% auto;
  padding: 30px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #eee;
}

.modal-header h2 {
  color: var(--dark);
  font-size: 1.8rem;
}

.close {
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: var(--primary);
}

.step {
  display: none;
}

.step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
}

.checkbox-group {
  display: grid;
  gap: 12px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  gap: 15px;
}

.prev-btn,
.next-btn {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.next-btn {
  background: var(--primary);
  color: white;
}

.next-btn:hover {
  background: #ff5a1f;
}

.prev-btn {
  background: #f5f5f5;
  color: var(--dark);
}

.prev-btn:hover {
  background: #e0e0e0;
}

.success-message {
  padding: 15px;
  background: #e8f5e9;
  border-radius: 4px;
  border: 1px solid #c8e6c9;
  color: #4CAF50;
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.success-message i {
  font-size: 1.2em;
}

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

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.fa-spinner {
  animation: spin 1s linear infinite;
}

/* Modal and Form Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 3000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: white;
  width: 90%;
  max-width: 800px;
  margin: auto;
  padding: 2rem;
  border-radius: 1rem;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
  transition: color 0.3s ease;
}

.close:hover {
  color: var(--primary);
}

/* Form Styles */
#multiStepForm {
  position: relative;
  padding: 2rem 0;
}

.step {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.step.active {
  display: block;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: normal;
  cursor: pointer;
}

.progress-bar {
  height: 4px;
  background: #eee;
  margin-bottom: 2rem;
  border-radius: 2px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: var(--primary);
  width: 0;
  transition: width 0.3s ease;
}

.step-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 1rem;
}

.prev-btn,
.next-btn {
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.prev-btn {
  background: #eee;
  color: var(--dark);
}

.next-btn {
  background: var(--primary);
  color: white;
}

.prev-btn:hover {
  background: #ddd;
}

.next-btn:hover {
  background: #e85d2b;
}

.error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #dc3545;
}

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

/* Mobile Responsiveness for Form */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    padding: 1.5rem;
    margin: 1rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .step-navigation {
    flex-direction: column;
  }

  .prev-btn,
  .next-btn {
    width: 100%;
    margin: 0.5rem 0;
  }

  .close {
    right: 1rem;
    top: 1rem;
  }
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ff3b30;
  background-color: rgba(255, 59, 48, 0.05);
}

.checkbox-group label.error {
  color: #ff3b30;
}

.checkbox-error {
  color: #ff3b30;
  font-size: 0.9rem;
  margin-top: 5px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.fa-spinner {
  animation: spin 1s linear infinite;
}

.next-btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Card link styles */
.card-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.card-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.card-link:hover {
  color: #e55a2a;
}

.card-link:hover::after {
  width: 100%;
}
