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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  overflow-x: hidden;
}

.container {
  min-height: 100vh;
  background: linear-gradient(135deg, #000000 0%, #1f2937 50%, #064e3b 100%);
  position: relative;
  overflow: hidden;
}

/* Animações personalizadas */
@keyframes bounce-custom {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(-25px) rotate(180deg);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.2);
  }
  to {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes pulse-custom {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.5);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.8);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Classes de animação */
.animate-bounce-custom {
  animation: bounce-custom 3s ease-in-out infinite;
}

.animate-spin-slow {
  animation: spin-slow 4s linear infinite;
}

.animate-pulse-custom {
  animation: pulse-custom 2s ease-in-out infinite;
}

.animate-fade-in {
  animation: fade-in 1s ease-out;
}

.animate-bounce {
  animation: bounce-custom 2s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Trevos flutuantes */
.floating-clovers-large,
.floating-clovers-small,
.floating-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-clover {
  position: absolute;
  color: #10b981;
  opacity: 0.2;
}

.floating-clover-small {
  position: absolute;
  color: #34d399;
  opacity: 0.3;
}

.floating-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #34d399;
  border-radius: 50%;
}

/* Conteúdo principal */
.main-content {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

/* Título */
.title-section {
  text-align: center;
  margin-bottom: 3rem;
}

.title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.clover-large {
  font-size: 4rem;
  margin: 0 1rem;
}

.main-title {
  font-size: 4rem;
  font-weight: bold;
  background: linear-gradient(to right, #34d399, #10b981, #059669);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  padding: 0.5rem 0;
  animation: pulse 2s ease-in-out infinite;
}

.subtitle {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1rem;
  animation: fade-in 1s ease-out;
}

.description {
  font-size: 1.25rem;
  color: #d1d5db;
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* Botão principal */
.button-container {
  position: relative;
  margin-bottom: 3rem;
}

.button-glow {
  position: absolute;
  inset: -4px;
  background: linear-gradient(to right, #34d399, #10b981, #059669);
  border-radius: 9999px;
  filter: blur(8px);
  opacity: 0.3;
  animation: pulse 2s ease-in-out infinite;
}

.main-button {
  position: relative;
  background: linear-gradient(to right, #10b981, #059669);
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  padding: 2rem 4rem;
  border-radius: 9999px;
  border: 2px solid #34d399;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.main-button:hover {
  background: linear-gradient(to right, #34d399, #10b981);
  border-color: #6ee7b7;
  transform: scale(1.05);
  animation: glow 1s ease-in-out infinite;
}

.clover-button {
  font-size: 2rem;
}

.external-icon {
  animation: pulse 2s ease-in-out infinite;
}

/* Texto de oportunidade */
.opportunity-text {
  text-align: center;
  margin-bottom: 4rem;
}

.highlight-text {
  color: #34d399;
  font-size: 1.125rem;
  font-weight: 600;
  animation: pulse 2s ease-in-out infinite;
}

.sub-text {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* Grid de recursos */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.feature-item {
  cursor: pointer;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
  animation: spin-slow 2s linear infinite;
}

.feature-title {
  color: #34d399;
  font-weight: bold;
}

.feature-subtitle {
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Bordas decorativas */
.decorative-borders {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.border-top,
.border-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #10b981, transparent);
  animation: pulse 2s ease-in-out infinite;
}

.border-top {
  top: 0;
}

.border-bottom {
  bottom: 0;
}

.border-left,
.border-right {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #10b981, transparent);
  animation: pulse 2s ease-in-out infinite;
}

.border-left {
  left: 0;
}

.border-right {
  right: 0;
}

/* Responsividade */
@media (max-width: 768px) {
  .main-title {
    font-size: 3rem;
  }

  .subtitle {
    font-size: 1.5rem;
  }

  .description {
    font-size: 1rem;
  }

  .main-button {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
  }

  .clover-large {
    font-size: 3rem;
  }

  .features-grid {
    gap: 1rem;
  }

  .floating-clover,
  .floating-clover-small {
    font-size: 1rem !important;
  }
}
