.recursos-strip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.25rem;
  margin: 0 0 2.5rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(60, 48, 38, 0.1);
  border-left: 3px solid var(--color-orange);
  border-radius: 8px;
  flex-wrap: wrap;
}

.rs-left {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  color: var(--color-orange);
}

.rs-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text-muted);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rs-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  flex: 1;
}

.rs-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  border: 1px solid rgba(60, 48, 38, 0.15);
  background: var(--color-bg);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
}

.rs-pill:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
  background: rgba(243, 79, 41, 0.05);
}

.rs-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-orange);
  text-decoration: none;
  padding: 0.3rem 0.65rem;
  border-radius: 20px;
  border: 1px solid rgba(243, 79, 41, 0.3);
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.rs-cta:hover {
  background: var(--color-orange);
  color: #fff;
  border-color: var(--color-orange);
}

.post-date-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.25rem;
}

.post-date-row .post-date-minimal {
  margin-bottom: 0;
}

.post-view-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: rgba(217, 79, 92, 0.07);
  border: 1px solid rgba(217, 79, 92, 0.15);
  padding: 0.18rem 0.55rem 0.18rem 0.4rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(2px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.post-view-badge.loaded {
  opacity: 1;
  transform: translateY(0);
}

.post-view-badge svg {
  color: var(--color-orange);
  flex-shrink: 0;
}

.rec-slider {
  margin: 0 0 2.5rem;
  width: 100%;
}

.rec-slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 1rem;
}

.rec-slider-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-orange);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.rec-slider-label::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 2px;
  background: var(--color-orange);
  border-radius: 2px;
}

.rec-slider-arrows {
  display: flex;
  gap: 0.35rem;
}

.rec-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(60, 48, 38, 0.15);
  background: rgba(255, 255, 255, 0.6);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  padding: 0;
  line-height: 1;
}

.rec-arrow:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
  background: rgba(243, 79, 41, 0.05);
}

.rec-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.rec-track {
  display: flex;
  gap: 0.875rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  mask-image: linear-gradient(to right, transparent 0%, black 3%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 94%, transparent 100%);
}

.rec-track::-webkit-scrollbar {
  display: none;
}

.rec-card {
  flex: 0 0 230px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(60, 48, 38, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.rec-card:hover {
  border-color: rgba(217, 79, 92, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(60, 48, 38, 0.08);
  background: rgba(255, 255, 255, 0.8);
}

.rec-card-image {
  width: 100%;
  height: 130px;
  overflow: hidden;
  flex-shrink: 0;
}

.rec-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.rec-card:hover .rec-card-image img {
  filter: grayscale(0%);
  transform: scale(1.04);
}

.rec-card-no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.rec-card:nth-child(6n+1) .rec-card-no-img { background: linear-gradient(140deg, #f34f29, #e8703a); }
.rec-card:nth-child(6n+2) .rec-card-no-img { background: linear-gradient(140deg, #1a7bb3, #2892cc); }
.rec-card:nth-child(6n+3) .rec-card-no-img { background: linear-gradient(140deg, #38a169, #48bb78); }
.rec-card:nth-child(6n+4) .rec-card-no-img { background: linear-gradient(140deg, #805ad5, #9f7aea); }
.rec-card:nth-child(6n+5) .rec-card-no-img { background: linear-gradient(140deg, #dd6b20, #ed8936); }
.rec-card:nth-child(6n) .rec-card-no-img { background: linear-gradient(140deg, #d53f8c, #ed64a6); }

.rec-card-no-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 40%, rgba(255, 255, 255, 0.2) 0%, transparent 65%);
}

.rec-card-initial {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  line-height: 1;
  text-transform: uppercase;
  user-select: none;
  position: relative;
  z-index: 1;
}

.rec-card-body {
  padding: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.rec-card-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-orange);
  background: rgba(243, 79, 41, 0.08);
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
}

.rec-card-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  color: var(--color-text);
}

.rec-card:hover .rec-card-title {
  color: var(--color-orange);
}

.rec-card-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--color-text-muted);
  opacity: 0.8;
  margin-top: 0.1rem;
}

.rec-card-excerpt {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(60, 48, 38, 0.65);
  margin: 0.25rem 0 0;
}

.rec-card-views {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--color-orange);
  opacity: 0.75;
  background: rgba(217, 79, 92, 0.07);
  padding: 0.1rem 0.4rem;
  border-radius: 100px;
}

.view-all-cta {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-orange);
  text-decoration: none;
  border-bottom: 1px solid var(--color-orange);
  transition: all 0.3s ease;
}

.post-list-minimal {
  max-width: 720px;
  margin: 3rem auto 0;
}

.post-item {
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(60, 48, 38, 0.1);
  opacity: 0;
  animation: gentleFadeIn 0.8s ease forwards;
  animation-delay: calc(var(--index) * 0.15s);
  transition: transform 0.3s ease;
}

.post-item:last-child {
  border-bottom: none;
}

@keyframes gentleFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.post-image-link {
  display: block;
  margin-bottom: 1.5rem;
}

.post-image {
  width: 100%;
  max-width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 4px;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(0.95);
  transition: all 0.6s ease;
}

.post-item:hover .post-image img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.02);
}

.post-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.post-date-minimal {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.post-title-minimal {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.post-title-minimal a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-item:hover .post-title-minimal a {
  color: var(--color-orange);
}

.post-excerpt-minimal {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(60, 48, 38, 0.85);
  margin: 0.5rem 0 1rem;
}

.post-tags-minimal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.35rem 0 0.1rem;
}

.tag-minimal {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-orange);
  text-decoration: none;
  padding: 0.28rem 0.62rem;
  border: 1px solid rgba(243, 79, 41, 0.18);
  border-radius: 999px;
  background: rgba(243, 79, 41, 0.07);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
  letter-spacing: 0.06em;
  line-height: 1;
}

.tag-minimal:hover {
  color: #fff;
  background: var(--color-orange);
  border-color: var(--color-orange);
  transform: translateY(-1px);
}

.read-link-minimal {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--color-text-muted);
  transition: all 0.3s ease;
  padding-bottom: 2px;
}

.read-link-minimal:hover {
  color: var(--color-orange);
  border-bottom-color: var(--color-orange);
}

.post-item:hover {
  transform: translateX(4px);
}

@media (max-width: 640px) {
  .rs-pill--hidden-sm { display: none; }
  .rs-label { display: none; }
  .rs-left svg { display: none; }
  .rec-card {
    flex: 0 0 75vw;
  }
  .rec-card-image {
    height: 100px;
  }
  .rec-card-title {
    font-size: 0.9rem;
  }
  .rec-card-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.76rem;
  }
}

@media (max-width: 480px) {
  .post-image {
    height: 180px;
  }
  .post-title-minimal {
    font-size: 1.35rem;
  }
  .post-excerpt-minimal {
    font-size: 0.95rem;
  }
}

@media (max-width: 420px) {
  .recursos-strip {
    padding: 0.55rem 1rem;
    gap: 0.5rem;
  }
}

@media (max-width: 400px) {
  .rec-card {
    flex: 0 0 82vw;
  }
  .rec-card-image {
    height: 80px;
  }
}

@media (max-width: 768px) {
  .post-list-minimal {
    margin-top: 2rem;
  }
  .post-item {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
  }
  .post-image {
    height: 220px;
  }
  .post-title-minimal {
    font-size: 1.5rem;
  }
  .post-excerpt-minimal {
    font-size: 1rem;
    line-height: 1.65;
  }
}

.blog-stats-minimal {
  text-align: center;
  margin: 2rem auto 3rem;
  padding: 0 1.5rem;
  animation: minimalFade 0.5s ease-out;
}

.stats-line {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 2rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  box-shadow: 0 1px 4px rgba(60, 48, 38, 0.06);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.stats-line:hover {
  box-shadow: 0 3px 12px rgba(60, 48, 38, 0.1);
  transform: translateY(-1px);
}

.stat-minimal {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.stat-minimal strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-right: 0.25rem;
}

.stat-minimal:first-child strong {
  color: var(--color-orange);
}

.stat-dot {
  font-size: 0.9rem;
  color: var(--color-border);
  font-weight: 300;
}

.stat-link {
  text-decoration: none;
  transition: color 0.2s ease;
}

.stat-link:hover {
  color: var(--color-orange);
}

.stat-link:hover strong {
  color: var(--color-orange);
}

.minimal-accent {
  width: 40px;
  height: 2px;
  background: var(--color-orange);
  margin: 1rem auto 0;
  border-radius: 2px;
  opacity: 0.5;
}

@keyframes minimalFade {
  from {
    opacity: 0;
    transform: scale(0.98);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 600px) {
  .stats-line {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 16px;
  }

  .stat-minimal {
    font-size: 0.85rem;
  }

  .stat-minimal strong {
    font-size: 1rem;
  }

  .stat-dot:last-of-type {
    display: none;
  }
}
