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

:root {
  --orange: #fa933f;
  --orange-dark: #C05C31;
  --purple: #78297A;
  --purple-medium: #662967;
  --purple-dark: #5d1767;
  --blue-light: #B4C7E7;
  --blue-pale: #DEEBF7;
  --white: #FFFFFF;
  --gray-light: #F8F9FA;
  --gray: #6B7280;
  --gray-dark: #374151;
  --black: #111827;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--gray-dark);
  background-color: var(--white);
  scroll-behavior: smooth;
/*   transition: opacity 1s ease; */
}

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

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

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--purple);
  text-decoration: none;
}

.logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--gray-dark);
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

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

.download-btn {
  background: linear-gradient(0deg, var(--orange), var(--orange-dark));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(242, 136, 36, 0.3);
  transition: all 0.3s ease;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(242, 136, 36, 0.4);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu span {
  width: 25px;
  height: 3px;
  background: var(--gray-dark);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 15%;
  background: linear-gradient(111deg, var(--purple-dark) 0%, var(--purple-medium) 25%, var(--purple) 50%, var(--orange-dark) 75%, var(--orange)100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  z-index: 2;
  position: relative;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary{
  padding: 1rem 2rem;
  border-radius: 50px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary {
  padding: 1rem 2rem;
  border-radius: 50px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: white;
  color: var(--purple);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--purple);
}

.phone-mockup {
  width: 300px;
  height: 500px;
  background: #727272;
  border-radius: 30px;
  padding: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: float 3s ease-in-out infinite;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--blue-pale), white);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--purple);
  text-align: center;
  border: 3px solid var(--orange);
}

.screen-subtext {
  font-size: 0.8rem;
  margin-top: 1rem;
  color: var(--gray);
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gray-dark);
  margin-bottom: 1rem;
}

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

/* Features */
.features {
  margin-top: 2.5rem;
  padding: 2.5rem 0;
  background: linear-gradient(180deg, white 0%, var(--blue-pale) 50%, white 100%);
}

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

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-light);
  position: relative;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(242, 136, 36, 0.3);
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--purple-dark);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--gray);
  line-height: 1.6;
}

.how-it-works {
  padding: 2.5rem 0;
  background: var(--gray-light);
}

.how-it-works .section-title,
.how-it-works .section-subtitle {
  text-align: center;
}

.how-it-works .steps-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
}

.how-it-works .step {
  flex: 1 1 220px;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.how-it-works .step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--orange-dark), var(--purple));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(194, 92, 49, 0.3);
}

.how-it-works .step h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 1rem;
}

.how-it-works .step p {
  color: var(--gray);
  line-height: 1.6;
}

/* Partners Section */
.partners-section {
  padding: 2.5rem 0;
  background: var(--gray-light);
}

.partners-section .section-title,
.partners-section .section-subtitle {
  text-align: center;
}

.partners-section .steps-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
}

.partners-section .step {
  flex: 1 1 220px;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.partners-section .step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--orange-dark), var(--purple));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(194, 92, 49, 0.3);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(242, 136, 36, 0.3);
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 136, 36, 0.4);
}

/* About Section */
.about {
    padding: 2.5rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.about-img {
  height: 350px;
  width: 350px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--orange);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--gray-light);
    border-radius: 15px;
    border: 2px solid var(--blue-light);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--orange-dark);
    display: block;
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-graphic {
    width: 380px;
    height: 380px;
    background: linear-gradient(135deg, var(--purple-dark), var(--purple), var(--orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    box-shadow: 0 20px 40px rgba(120, 41, 122, 0.3);
}

/* CTA Section */
.cta {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, var(--purple-dark), var(--purple), var(--orange-dark), var(--orange));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.app-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 15px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Footer */
.footer {
  background: var(--gray-dark);
  color: white;
  padding: 2rem 0 2rem;
  font-size: 0.95rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2rem;
  backdrop-filter: blur(5px);
}

.footer-section h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--orange);
  position: relative;
}

.footer-section h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--orange);
  margin-top: 0.5rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  line-height: 1.7;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--orange);
}

.footer-section p {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  padding-top: 1rem;
}

.footer-section img {
  width: 30px;
  vertical-align: middle;
  margin-right: 8px;
}

/* Optional: Add subtle hover effect to entire section */
.footer-section:hover {
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

  .footer-section h3::after {
    margin-left: auto;
    margin-right: auto;
  }
}

/* faq */
.faq-item {
  margin-top: 2rem;
  margin-bottom: 2rem;
  gap: 2rem;
  padding: 2rem;
  background-color: #f5f7fa;
  border-left: 4px solid var(--blue-light);
  border-radius: 6px;
}

.faq-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: var(--gray);
  margin: 0;
  line-height: 1.6;
}

/* help */
.ajuda-categorias {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  padding: 2rem ;
}

.categoria {
  background-color: #f5f5f5;
  padding: 1.5rem;
  border-left: 4px solid var(--blue-light);
  border-radius: 6px;
}

.categoria h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 0.5rem;
}

.categoria p {
  color: var(--gray);
  line-height: 1.6;
}

/* politic */
.privacidade-bloco {
  margin-top: 2rem;
  margin-bottom: 2rem;
  gap: 2rem;
  padding: 2rem;
  background-color: #f4f4f4;
  border-left: 4px solid var(--blue-light);
  border-radius: 6px;
}

.privacidade-bloco h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 0.5rem;
}

.privacidade-bloco p,
.privacidade-bloco ul {
  color: var(--gray);
  line-height: 1.6;
}

.privacidade-bloco ul {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
}

.privacidade-bloco ul li {
  margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
      transform: translateY(15px);
  }
  50% {
      transform: translateY(40px);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
      display: none;
  }

  .mobile-menu {
      display: flex;
  }

  .hero-content {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 2rem;
  }

  .hero-text h1 {
      font-size: 2.5rem;
  }

  .hero-buttons {
      justify-content: center;
      flex-wrap: wrap;
  }

  .phone-mockup {
      width: 250px;
      height: 500px;
  }

  .about-content {
      grid-template-columns: 1fr;
      text-align: center;
  }

  .about-graphic {
      width: 300px;
      height: 200px;
  }

  .section-title {
      font-size: 2rem;
  }

  .cta h2 {
      font-size: 2rem;
  }

  .features-grid,
  .steps-container {
      grid-template-columns: 1fr;
  }
}
