
.tyshara-home-capsules {
  padding: 6rem 1.5rem;
  background: #fefdfc;
}

.capsules-container {
  max-width: 1300px;
  margin: 0 auto;
}

.capsules-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.capsules-title {
  font-family: 'Satisfy', cursive;
  font-size: 2.8rem;
  color: #4a3b35;
  margin-bottom: 1rem;
}

.capsules-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: #73504f;
}

.capsules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.2rem;
}

.capsule-card {
  background: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #4a3b35;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.capsule-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.capsule-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  margin: 1rem 0;
}

.capsule-card p {
  font-size: 1.05rem;
  color: #73504f;
}

.capsule-card img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.capsule-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  color: #7e9f96;
  transition: color 0.3s ease;
}

.capsule-link:hover {
  color: #5a7e77;
}

/* Fallback ou message vide */
.capsules-empty {
  text-align: center;
  color: #a0877a;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .capsules-title {
    font-size: 2rem;
  }
  .capsules-subtitle {
    font-size: 1rem;
  }
}
