/* ===========================
   🎨 PALETA DE CORES
   =========================== */
:root {
  --lime: #84cc16;
  --lime-dark: #65a30d;
  --teal: #14b8a6;
  --teal-dark: #0d9488;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --purple: #a855f7;
  --cyan: #06b6d4;
  --green: #22c55e;
  --blue: #3b82f6;
  --red: #ef4444;

  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;

  --white: #ffffff;
}

/* ===========================
   🔄 RESET BÁSICO
   =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(135deg, #84cc16 0%, #14b8a6 50%, #f97316 100%);
  color: var(--gray-800);
  line-height: 1.6;
  min-height: 100vh;
}

/* ===========================
   📦 CONTAINER
   =========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===========================
   🦸 HERO SECTION
   =========================== */
.hero {
  text-align: center;
  padding: 9rem 1rem;
  color: rgba(255, 255, 255, 0.95);
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.hero .subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}

.hero .desc {
  color: var(--gray-100);
  font-weight: 400;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===========================
   🔘 BOTÕES
   =========================== */
.btn-primary,
.btn-secondary {
  border: none;
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

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

.btn-primary:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}

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

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

/* ===========================
   💚 SEÇÃO "POR QUE"
   =========================== */
.porque-section {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.porque-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.25);
}

.card i {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 12px;
}

.card h3 {
  font-weight: 700;
  margin-bottom: 10px;
}

/* ===========================
   🏃 SEÇÃO "TENTATIVAS"
   =========================== */
.tentativas-section {
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.tentativas-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
}

/* ====== GRID ====== */
.tentativas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* ====== CARD ====== */
.tentativa-card {
  position: relative;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transform: scale(1);
  transition: all 0.5s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

/* ====== HOVER ====== */
.tentativa-card:hover {
  transform: scale(1.07);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ====== IMAGEM ====== */
.tentativa-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tentativa-card:hover img {
  transform: scale(1.1);
}

/* ====== CONTEÚDO ====== */
.tentativa-card h4 {
  color: var(--white);
  font-weight: 600;
  padding: 15px 20px 0;
  transition: transform 0.4s ease, color 0.4s ease;
}

.tentativa-card p {
  padding: 0 20px 20px;
  color: var(--gray-50);
  font-size: 0.95rem;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Leve movimento ao hover */
.tentativa-card:hover h4,
.tentativa-card:hover p {
  transform: translateY(-4px);
}

/* ====== BRILHO SUAVE ====== */
.tentativa-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.25), transparent);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.tentativa-card:hover::after {
  opacity: 1;
}


/* ===========================
   🌈 SEÇÃO FINAL
   =========================== */
.final-section {
  text-align: center;
  padding: 100px 0 120px;
  color: var(--white);
}

.final-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.final-section p {
  font-size: 1rem;
  margin-bottom: 30px;
  color: var(--gray-50);
}

.final-section .btn-primary {
  background-color: var(--orange);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.final-section .btn-primary:hover {
  transform: scale(1.05);
}

footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  color: var(--gray-200);
  font-size: 0.9rem;
}

/* ===========================
   📱 RESPONSIVIDADE
   =========================== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.3rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .cards,
  .tentativas {
    grid-template-columns: 1fr;
  }
}
/* Versão responsiva: remove o exagero em telas pequenas */
@media (max-width: 600px) {
  .tentativa-card:hover {
    transform: scale(1.03);
  }
}