/* STORIES */
.container-stories {
      padding: 2rem;
      display: flex;
      flex-direction: column;
      gap: 2rem;
      width: 100%;
      height: auto;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      font-family: 'Poppins', sans-serif;
      background: #fff;
}
    
.stories-row {
      display: flex;
      gap: 2rem;
      justify-content: center;
      flex-wrap: wrap;
}
    
.story-card {
      flex: 1 1 30%;
      max-width: 30%;
      background-color: #ffffff;
      border-radius: 1rem;
      padding: 1.5rem;
      text-align: left;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
}
    
.story-card:hover {
      transform: translateY(-5px);
}
    
.story-title {
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 0.25rem;
      color: inherit;
}

.story-description {
      font-size: 0.95rem;
      line-height: 1.4;
      color: #555555;
}
    
.story-card img {
      width: 100%;
      height: auto;
      border-radius: 0.5rem;
      margin-top: 0.5rem;
      box-shadow:  0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Responsividade - Stories */
@media (max-width: 1100px) {
      .story-card {
            flex: 1 1 25%;
            max-width: 25%;
      }
}

@media (max-width: 900px) {
      .stories-row {
            flex-direction: column;
            align-items: center;
      }

      .story-card {
            width: 100%;
            max-width: 500px;
      }
}
