body { padding-top: 80px; }

    /* Destaque do post principal */
    .featured-post img {
      height: 380px;
      object-fit: cover;
      border-radius: 12px;
    }

    .featured-post h2 {
      margin-top: 15px;
    }

    .post-card {
      border: none; /* Remove borda cinza do card */
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
      transition: transform 0.2s ease;
    }

    .post-card:hover {
      transform: translateY(-5px);
    }

    /* Cards dos outros posts */
    .post-card img {
      aspect-ratio: 1 / 1; /* Deixa a imagem quadrada */
      object-fit: cover;
      border-radius: 15px; /* Bordas arredondadas */
      padding: 0;
    }

    footer {
      background: linear-gradient(180deg, #FDCD13 0%, #FFE873 100%);
    }

    .logo-navbar {
      height: 60px; /* Ajuste conforme necessário */
      width: auto;
    }

    .post-header img {
      max-height: 420px;
      object-fit: cover;
      border-radius: 12px;
    }

    .post-content p {
      line-height: 1.7;
      margin-bottom: 1.2rem;
    }