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

/* Navbar */
.navbar {
  position: static; /* Mudado de fixed para static */
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(61, 77, 170, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-logo-image {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}

.navbar-logo:hover .navbar-logo-image {
  transform: scale(1.05);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a1a;
}

.btn-navbar {
  background: #3d4daa;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-navbar:hover {
  background: #2d3a85;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(61, 77, 170, 0.3);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

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

/* Hero Section */
.hero {
  min-height: 100vh;
  background: #ffffff;
  display: flex;
  align-items: center;
  padding: 80px 0; /* Removido o padding-top extra de 120px */
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.text-highlight {
  color: #3d4daa;
}

.hero-description {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.download-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  border: none;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

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

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

.btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.btn:active {
  transform: translateY(-2px) scale(0.98);
  transition: all 0.1s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #3d4daa 0%, #2d3a85 100%);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2d3a85 0%, #1e2563 100%);
}

.btn-outline {
  background: white;
  color: #3d4daa;
  border: 2px solid #3d4daa;
}

.btn-outline:hover {
  background: #3d4daa;
  color: white;
  border-color: #3d4daa;
}

.btn-white {
  background: white;
  color: #3d4daa;
}

.btn-white:hover {
  background: #f8fafc;
}

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

.btn-outline-white:hover {
  background: white;
  color: #3d4daa;
}

.btn-subtitle {
  font-size: 0.875rem;
  opacity: 0.8;
}

.btn-title {
  font-size: 1rem;
  font-weight: 700;
}

/* Ripple effect */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Phone Mockup */
.hero-phone {
  animation: fadeInUp 1s ease-out 0.3s both;
  text-align: center;
}

.phone-screen {
  max-width: 100%;
  height: auto;
  max-height: 600px;
  transition: transform 0.3s ease;
}

.hero-phone:hover .phone-screen {
  transform: scale(1.02);
}

/* Marquee Section */
.marquee-section {
  position: relative;
  background: linear-gradient(135deg, #3d4daa 0%, #2d3a85 100%);
  padding: 40px 0;
  overflow: hidden;
}

.marquee-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(61, 77, 170, 0.8) 0%,
    transparent 10%,
    transparent 90%,
    rgba(61, 77, 170, 0.8) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.marquee-container {
  display: flex;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  flex-shrink: 0;
  padding: 0 40px;
}

.marquee-item span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
}

.marquee-icon {
  font-size: 1.4rem;
  animation: bounce 2s infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-3px);
  }
  60% {
    transform: translateY(-2px);
  }
}

/* Features Section */
.features {
  padding: 80px 0;
  background: #ffffff;
}

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.section-header p {
  font-size: 1.25rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

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

.feature-card {
  background: #f8fafc;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(61, 77, 170, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(61, 77, 170, 0.15);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 30px rgba(61, 77, 170, 0.2);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.feature-card:hover h3 {
  color: #3d4daa;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.feature-card:hover p {
  color: #555;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #3d4daa 0%, #2d3a85 100%);
  text-align: center;
  color: white;
  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>')
    repeat;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(0px) translateX(0px);
  }
  33% {
    transform: translateY(-10px) translateX(10px);
  }
  66% {
    transform: translateY(5px) translateX(-5px);
  }
  100% {
    transform: translateY(0px) translateX(0px);
  }
}

.cta h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta p {
  font-size: 1.5rem;
  margin-bottom: 48px;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}

.cta-highlight {
  color: white;
  font-weight: 800;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-buttons .btn {
  flex: 1;
  min-width: 220px;
  max-width: 250px;
}

/* Footer */
.footer {
  background: #ffffff;
  padding: 40px 0;
  border-top: 1px solid #f0f0f0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo-image {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.footer-logo-image:hover {
  transform: scale(1.05);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.social-link:hover::before {
  transform: scale(1);
}

.social-link.facebook {
  background: #1877f2;
  color: white;
}

.social-link.twitter {
  background: #1da1f2;
  color: white;
}

.social-link.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.social-link:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

/* Desktop optimizations for hero buttons */
@media (min-width: 1024px) {
  .download-buttons {
    display: flex;
    gap: 20px;
  }

  .download-buttons .btn {
    flex: 1;
    max-width: 200px;
    padding: 20px 24px;
    justify-content: flex-start;
  }

  .download-buttons .btn:hover {
    transform: translateY(-5px) scale(1.03);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    max-width: 300px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .navbar-content {
    padding: 16px 0; /* Aumentado de 12px para 16px */
  }

  .navbar-logo-image {
    height: 35px;
  }

  .navbar-brand {
    font-size: 1.25rem;
  }

  .btn-navbar {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .hero {
    padding: 60px 0 40px 0; /* Aumentado o padding-top para 60px no mobile */
  }

  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 2rem;
    margin-top: 20px; /* Adicionado margin-top extra no mobile */
  }

  .hero-description {
    font-size: 1.125rem;
  }

  .download-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .download-buttons .btn {
    justify-content: center;
    width: 100%;
    max-width: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-card {
    padding: 32px 24px;
  }

  .footer-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

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

  .cta p {
    font-size: 1.25rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .marquee-item {
    padding: 0 20px;
  }

  .marquee-item span {
    font-size: 1rem;
  }

  .marquee-section {
    padding: 30px 0;
  }

  .cta-buttons {
    gap: 16px;
  }

  .cta-buttons .btn {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 0 40px 0; /* Ainda mais espaçamento em telas muito pequenas */
  }

  .navbar-brand {
    display: none; /* Esconder texto em telas muito pequenas */
  }

  .btn-navbar {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .hero-title {
    font-size: 1.75rem;
    margin-top: 30px; /* Mais margin-top em telas pequenas */
  }

  .logo-image {
    height: 60px;
  }

  .btn {
    padding: 16px 20px;
  }

  .download-buttons {
    gap: 12px;
  }

  .marquee-section {
    padding: 25px 0;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus states for keyboard navigation */
.btn:focus-visible {
  outline: 3px solid #3d4daa;
  outline-offset: 2px;
}

.social-link:focus-visible {
  outline: 3px solid #3d4daa;
  outline-offset: 2px;
}

/* =================================
   Seção de Apoio e Parcerias (Modificado)
==================================== */
.supporters-logos {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Alinha pelo topo para acomodar os títulos */
    gap: 80px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.supporter-category {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* Espaço entre o título da categoria e a logo */
}

.category-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
    margin: 0;
}

.supporter-logo {
    max-height: 130px; /* Ajustei um pouco para melhor balanço */
    width: auto;
    max-width: 350px;
}

.supporters {
    /* Aumentamos o padding inferior de 80px para 120px */
    padding: 80px 0 80px;
    background-color: #ffffff;
}

/* =================================
   SHARED SALES PAGE STYLES
==================================== */
.sales-hero {
    min-height: auto;
    padding: 60px 0;
}

.hero-image-placeholder {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.sales-cta-buttons {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.sales-intro .hero-text {
    text-align: left;
}

.sales-intro .section-title,
.premium-section .section-title {
    font-size: 2.2rem;
    text-align: left;
    margin-bottom: 24px;
}

.sales-intro .section-description,
.premium-section .section-description {
    font-size: 1.1rem;
    text-align: left;
    color: #666;
    line-height: 1.7;
}

/* Premium Features */
.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.premium-feature-card {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.premium-feature-card .feature-icon {
    color: #3d4daa;
}

.premium-feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

/* Pricing Tabs */
.pricing-tabs-container {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-tabs-nav {
    display: flex;
    justify-content: center;
    background-color: #e2e8f0;
    border-radius: 50px;
    padding: 6px;
    margin-bottom: 40px;
}

.pricing-tab-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    color: #666;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-tab-btn.active {
    background-color: #3d4daa;
    color: white;
    box-shadow: 0 4px 15px rgba(61, 77, 170, 0.2);
}

.pricing-tab-content {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.pricing-tab-content.active {
    display: block;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.pricing-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.pricing-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3d4daa;
    margin-bottom: 24px;
}

.pricing-card.highlighted {
    border-color: #3d4daa;
}

.pricing-footnote {
    text-align: center;
    margin-top: 24px;
    font-size: 0.9rem;
    color: #6b7280;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    font-size: 1.1rem;
    padding: 18px 28px;
    border-radius: 12px;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #1EBE57;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

@media (max-width: 1024px) {
    .sales-intro .hero-content {
        flex-direction: column-reverse;
    }
}

@media (max-width: 768px) {
    .sales-cta-buttons {
        justify-content: center;
    }
    .sales-intro .hero-text {
        text-align: center;
    }
    .sales-intro .section-title {
        text-align: center;
    }
     .sales-intro .section-description {
        text-align: center;
    }
    .pricing-cards-grid {
        grid-template-columns: 1fr;
    }
}

