.home-container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 40px 20px 60px 20px;
}

/* HERO SECTION */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
  min-height: 380px;
}

.hero-text {
  flex: 1;
}

.badge {
  display: inline-block;
  background-color: #fee2e2;
  color: #e60012;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.hero-text h1 {
  font-size: 44px;
  color: #1f2937;
  line-height: 1.15;
  margin-bottom: 16px;
  font-weight: 800;
}

.hero-text p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background-color: #e60012;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(230, 0, 18, 0.3);
}

.btn-secondary {
  background-color: #ffffff;
  color: #1f2937;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 340px;
  height: auto;
  filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.15));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* CARDS DE RECURSOS */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.feature-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  text-decoration: none;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  margin-bottom: 16px;
}

.bg-red { background-color: #ef4444; }
.bg-blue { background-color: #3b82f6; }
.bg-green { background-color: #10b981; }

.feature-card h3 {
  color: #111827;
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-card p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}

/* CARD DE DESTAQUE DINÂMICO */
.highlight-section {
  margin-bottom: 40px;
}

.highlight-card {
  background: linear-gradient(135deg, #2b2b2b, #111111);
  color: #ffffff;
  border-radius: 24px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.highlight-info {
  flex: 1;
}

.highlight-tag {
  color: #ffd86f;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.highlight-card h2 {
  font-size: 32px;
  text-transform: capitalize;
  margin: 8px 0;
}

.highlight-card p {
  color: #9ca3af;
  font-size: 15px;
  max-width: 450px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.highlight-types {
  display: flex;
  gap: 8px;
}

.highlight-type-badge {
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
}

.highlight-media img {
  width: 170px;
  height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.4));
}

/* FOOTER */
.home-footer {
  text-align: center;
  padding: 30px;
  color: #9ca3af;
  font-size: 13px;
  border-top: 1px solid #e5e7eb;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .highlight-card {
    flex-direction: column;
    text-align: center;
  }
  .highlight-types {
    justify-content: center;
  }
}