/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1a5c3a;
  --primary-light: #22c55e;
  --neon: #4ade80;
  --dark-green: #121f11;
  --gray-light: #f1f5f9;
  --gray: #64748b;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #1e293b;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: #475569;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

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

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: #475569;
  position: relative;
  transition: all 0.3s;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: #475569;
  transition: all 0.3s;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

.mobile-menu {
  display: none;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 1rem;
}

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

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

.mobile-nav-link {
  color: #475569;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.3s;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background: #155230;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 92, 58, 0.3);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-neon {
  background: var(--neon);
  color: var(--dark-green);
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.4);
}

.btn-neon:hover {
  background: #22c55e;
  box-shadow: 0 0 30px rgba(74, 222, 128, 0.6);
  transform: translateY(-2px);
}

.btn-cta {
  background: var(--primary);
  color: white;
  animation: pulse-btn 2s infinite;
}

.btn-cta:hover {
  background: #155230;
  transform: scale(1.05);
}

@keyframes pulse-btn {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(26, 92, 58, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(26, 92, 58, 0);
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

/* Corrigindo sistema de background image para usar tag img real */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Degradê ainda mais escuro (98%) para máxima legibilidade */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 15, 25, 0.98), rgba(10, 15, 25, 0.96), rgba(10, 15, 25, 0.98));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 5rem 1rem;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(26, 92, 58, 0.2);
  border: 1px solid rgba(26, 92, 58, 0.3);
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
}

.hero-badge .icon {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  color: white;
  margin-bottom: 1.5rem;
}

.text-primary {
  color: var(--primary-light);
}

.text-neon {
  color: var(--neon);
  text-shadow: 0 0 20px rgba(74, 222, 128, 0.5);
}

/* Adicionando variação de neon para texto escuro */
.text-neon-dark {
  color: var(--neon);
  text-shadow: 0 0 15px rgba(74, 222, 128, 0.4);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #e2e8f0;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 4rem;
}

.icon-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

.btn:hover .icon-arrow {
  transform: translateX(4px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #cbd5e1;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator > div {
  width: 24px;
  height: 40px;
  border: 2px solid var(--primary-light);
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 8px;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--primary-light);
  border-radius: 50%;
  animation: scroll-bounce 1.5s infinite;
}

@keyframes scroll-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
}

/* Benefits Section */
.benefits-section {
  position: relative;
  padding: 6rem 0;
  background: var(--gray-light);
  overflow: hidden;
}

.benefits-bg-blur {
  position: absolute;
  width: 384px;
  height: 384px;
  background: rgba(26, 92, 58, 0.05);
  border-radius: 50%;
  filter: blur(80px);
}

.blur-1 {
  top: 0;
  left: 25%;
}

.blur-2 {
  bottom: 0;
  right: 25%;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-title-dark {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--primary);
}

.section-title-light {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: white;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--gray);
}

.section-subtitle-dark {
  font-size: 1.25rem;
  color: #475569;
}

.section-subtitle-light {
  font-size: 1.25rem;
  color: #cbd5e1;
}

.benefits-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.benefit-card {
  background: white;
  border: 2px solid rgba(26, 92, 58, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 92, 58, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.benefit-card:hover {
  border-color: rgba(26, 92, 58, 0.4);
  box-shadow: 0 20px 40px rgba(26, 92, 58, 0.1);
  transform: translateY(-4px);
}

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

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  background: rgba(26, 92, 58, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s;
}

.benefit-card:hover .benefit-icon {
  background: rgba(26, 92, 58, 0.2);
  transform: scale(1.1);
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.benefit-description {
  color: var(--gray);
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  background: var(--dark-green);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.stats-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

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

.stats-subtitle {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin-bottom: 3rem;
}

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

.stat-box {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(74, 222, 128, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
}

.stat-box:hover {
  border-color: rgba(74, 222, 128, 0.4);
  box-shadow: 0 0 30px rgba(74, 222, 128, 0.2);
  transform: translateY(-4px);
}

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--neon);
  text-shadow: 0 0 20px rgba(74, 222, 128, 0.5);
  margin-bottom: 0.5rem;
}

.stat-desc {
  color: white;
  font-size: 1.125rem;
}

.stats-cta {
  margin-top: 3rem;
}

/* Timeline Section */
.timeline-section {
  background: white;
  padding: 6rem 0;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  background: var(--neon);
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.2), 0 0 20px rgba(74, 222, 128, 0.4);
  z-index: 2;
}

.timeline-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, rgba(26, 92, 58, 0.3), transparent);
  margin-top: 0.5rem;
}

.timeline-item:last-child .timeline-line {
  display: none;
}

.timeline-card {
  background: var(--gray-light);
  border: 2px solid rgba(26, 92, 58, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s;
}

.timeline-card:hover {
  border-color: rgba(26, 92, 58, 0.4);
  box-shadow: 0 8px 24px rgba(26, 92, 58, 0.1);
  transform: translateX(8px);
}

.timeline-badge {
  display: inline-block;
  background: var(--neon);
  color: var(--dark-green);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.3);
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.timeline-desc {
  color: var(--gray);
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
  background: var(--dark-green);
  padding: 6rem 0;
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--gray-light);
  border: 2px solid rgba(74, 222, 128, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(74, 222, 128, 0.4);
  box-shadow: 0 0 30px rgba(74, 222, 128, 0.2);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.testimonial-project {
  font-size: 0.875rem;
  color: var(--neon);
  text-shadow: 0 0 10px rgba(74, 222, 128, 0.3);
}

/* CTA Section */
.cta-section {
  background: white;
  padding: 6rem 0;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* Estilos corrigidos para o botão CTA principal */
.btn-cta-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: var(--primary);
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(26, 92, 58, 0.3);
  animation: pulse-cta 2s infinite;
}

.btn-cta-main:hover {
  background: #155230;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(26, 92, 58, 0.4);
}

.btn-cta-main .btn-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

@keyframes pulse-cta {
  0%,
  100% {
    box-shadow: 0 4px 14px rgba(26, 92, 58, 0.3);
  }
  50% {
    box-shadow: 0 4px 14px rgba(26, 92, 58, 0.3), 0 0 0 8px rgba(26, 92, 58, 0.1);
  }
}

/* Footer */
.footer {
  background: var(--dark-green);
  color: white;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  width: 120px;
  height: 120px;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.6;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--neon);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a,
.footer-links li {
  font-size: 0.875rem;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--neon);
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: #9ca3af;
}

.footer-contact .icon {
  width: 16px;
  height: 16px;
  color: var(--neon);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--neon);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #9ca3af;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--neon);
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  /* Aumentando z-index para garantir que fique acima de tudo */
  z-index: 9999;
  transition: all 0.3s;
  /* Garantindo que o botão seja clicável */
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-btn:hover {
  background: #20ba5a;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  color: white;
}

.whatsapp-pulse {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 12px;
  height: 12px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  /* Garantindo que o pulse não interfira no clique */
  pointer-events: none;
}

@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Animations */
.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
  opacity: 0;
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}
.fade-in:nth-child(4) {
  animation-delay: 0.4s;
}
.fade-in:nth-child(5) {
  animation-delay: 0.5s;
}

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

/* Responsive */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

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

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

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

  .section-title,
  .section-title-dark,
  .section-title-light {
    font-size: 3rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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