.ebooks-section {
    background-color: #f8f9fa;
  }
  
  /* Seção Materiais Gratuitos */
  .materials-info {
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .materials-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .materials-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .btn-outline-primary {
    background: transparent;
    border: 2px solid #2196F3;
    color: #2196F3;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  
  .btn-outline-primary:hover {
    background: #2196F3;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
  }
  
  /* Cards dos E-books */
  .ebook-card {
    border-radius: 16px;
    padding: 25px;
    color: white;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }
  
  .ebook-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  }
  
  .ebook-card__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .ebook-badge {
    display: inline-block;
    margin-bottom: 15px;
  }
  
  .ebook-badge span {
    background: rgba(255,255,255,0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .ebook-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: white;
  }
  
  .ebook-desc {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 20px;
    flex-grow: 1;
  }
  
  .ebook-action {
    margin-top: auto;
    padding-top: 10px;
  }
  
  .btn-download {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    color: white !important;
    padding: 10px 18px;
    border-radius: 20px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    width: auto;
    white-space: nowrap;
  }
  
  .btn-download:hover {
    background: white !important;
    color: #333 !important;
    transform: scale(1.05);
    text-decoration: none !important;
  }
  
  .ebook-image {
    text-align: center;
    margin-bottom: 15px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .ebook-image img {
    width: 100%;
    object-fit: contain;
    border-radius: 6px;
  }
  
  /* Decoração de fundo */
  .ebook-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    z-index: 1;
  }
  
  .ebook-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 80%;
    height: 80%;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    z-index: 1;
  }
  
  /* Responsivo */
  @media (max-width: 991px) {
    .materials-info {
      text-align: center;
      padding: 30px 20px;
    }
    
    .materials-title {
      font-size: 32px;
    }
  }
  
  @media (max-width: 768px) {
    .ebook-card {
      height: auto;
      margin-bottom: 20px;
    }
    
    .ebook-title {
      font-size: 16px;
    }

    .ebook-image {
        text-align: center;
        margin-bottom: 15px;
        height: 160px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ebook-image img {
      width: 100%;
      margin-top:10px
    }
    
    .materials-title {
      font-size: 28px;
    }
    
    .materials-desc {
      font-size: 14px;
    }
  }
  
  @media (max-width: 576px) {
    .ebook-card {
      padding: 20px;
    }
    
    .materials-info {
      padding: 20px 15px;
    }
  }





  /* NEWSLETTER */
  .newsletter-section {
    background-color: #f8f9fa;
  }
  
  .newsletter-card {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 50%, #2196F3 100%);
    border-radius: 24px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
  }
  
  .newsletter-content {
    position: relative;
    z-index: 2;
    width: 100%;
  }
  
  .newsletter-text {
    max-width: 600px;
  }
  
  .newsletter-subtitle {
    color: #1565C0;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    opacity: 0.9;
  }
  
  .newsletter-title {
    color: #0D47A1;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
  }
  
  .newsletter-form {
    margin-bottom: 25px;
  }
  
  .form-group {
    display: flex;
    gap: 15px;
    align-items: stretch;
  }
  
  .newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    background: rgba(255,255,255,0.9);
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
  }
  
  .newsletter-input:focus {
    outline: none;
    border-color: #1976D2;
    background: white;
    box-shadow: 0 0 0 3px rgba(25,118,210,0.1);
  }
  
  .newsletter-input::placeholder {
    color: #666;
    opacity: 0.8;
  }
  
  .btn-newsletter {
    background: #1976D2;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    cursor: pointer;
  }
  
  .btn-newsletter:hover {
    background: #1565C0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25,118,210,0.3);
    color: white;
  }
  
  .newsletter-privacy {
    color: #1565C0;
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.8;
  }
  
  .newsletter-privacy a {
    color: #0D47A1;
    text-decoration: underline;
    font-weight: 500;
  }
  
  .newsletter-privacy a:hover {
    color: #1976D2;
    text-decoration: none;
  }
  
  /* Decorações de nuvens */
  .newsletter-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
  }
  
  .cloud {
    position: absolute;
    background: rgba(255,255,255,0.15);
    border-radius: 50px;
  }
  
  .cloud-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 15%;
    border-radius: 60px;
  }
  
  .cloud-2 {
    width: 80px;
    height: 80px;
    top: 10%;
    right: 25%;
    border-radius: 40px;
  }
  
  .cloud-3 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    right: 10%;
    border-radius: 75px;
  }
  
  .cloud-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 30%;
    border-radius: 50px;
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .newsletter-card {
      padding: 40px 30px;
      text-align: center;
    }
    
    .newsletter-title {
      font-size: 26px;
    }
    
    .form-group {
      flex-direction: column;
      gap: 15px;
    }
    
    .newsletter-input {
      padding: 12px 16px;
    }
    
    .btn-newsletter {
      padding: 12px 20px;
      justify-content: center;
    }
    
    .cloud {
      opacity: 0.6;
    }
    
    .cloud-1, .cloud-3 {
      transform: scale(0.7);
    }
    
    .cloud-2, .cloud-4 {
      transform: scale(0.5);
    }
  }
  
  @media (max-width: 576px) {
    .newsletter-card {
      padding: 30px 20px;
    }
    
    .newsletter-title {
      font-size: 22px;
    }
    
    .newsletter-subtitle {
      font-size: 14px;
    }
    
    .newsletter-privacy {
      font-size: 12px;
    }
  }

  .post-item {
        position: relative;
        margin-bottom: 50px;
        background-color: #f5f5f5;
    }

    .post-item .post__content {
        padding: 15px 15px 15px 15px;
    }

    .tag_tipos {
        background-color: #2eab46;
        color: #ffffff;
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 14px;
        display: inline-block;
        margin: 4px 1px;
    }

    .produtos-section {
        background-color: #fff;
      }
      
      .produto-card {
        background: #fff;
        border: 1px solid #e9ecef;
        border-radius: 16px;
        padding: 24px;
        height: 100%;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
      }
      
      .produto-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        border-color: #ddd;
      }
      
      .produto-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 20px;
      }
      
      .produto-info {
        flex: 1;
      }
      
      .produto-titulo {
        font-size: 20px;
        font-weight: 700;
        color: #333;
        margin: 0 0 5px 0;
        line-height: 1.3;
      }
      
      .produto-categoria {
        font-size: 13px;
        color: #666;
        opacity: 0.8;
        font-weight: 500;
      }
      
      .produto-icon {
        flex-shrink: 0;
        margin-left: 15px;
      }
      
      .produto-icon img {
        width: 56px;
        height: 56px;
        object-fit: contain;
      }
      
      .produto-screenshot {
        margin-bottom: 20px;
        border-radius: 12px;
        overflow: hidden;
        transition: transform 0.3s ease;
      }
      
      .produto-screenshot:hover {
        transform: scale(1.02);
      }
      
      .produto-screenshot img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.3s ease;
      }
      
      .produto-content {
        flex: 1;
        display: flex;
        flex-direction: column;
      }
      
      .produto-descricao {
        font-size: 14px;
        line-height: 1.6;
        color: #555;
        margin-bottom: 20px;
        flex: 1;
      }
      
      .btn-produto {
        color: #FF6B35;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: all 0.3s ease;
        margin-top: auto;
      }
      
      .btn-produto:hover {
        color: #e55a2b;
        text-decoration: none;
        transform: translateX(3px);
      }
      
      .btn-produto i {
        font-size: 12px;
        transition: transform 0.3s ease;
      }
      
      .btn-produto:hover i {
        transform: translateX(3px);
      }
      
      /* Heading styles */
      .heading {
        margin-bottom: 0;
      }
      
      .heading__title {
        font-size: 36px;
        font-weight: 700;
        color: #333;
        margin-bottom: 15px;
      }
      
      .heading__desc {
        font-size: 18px;
        color: #666;
        margin: 0;
        margin-bottom:20px;
      }
      
      /* Responsivo */
      @media (max-width: 991px) {
        .produto-card {
          margin-bottom: 30px;
        }
        
        .heading__title {
          font-size: 32px;
        }
        
        .heading__desc {
          font-size: 16px;
        }
      }
      
      @media (max-width: 768px) {
        .produtos-section {
          padding-top: 40px;
          padding-bottom: 40px;
        }
        
        .produto-card {
          padding: 20px;
        }
        
        .produto-titulo {
          font-size: 18px;
        }
        
        .produto-icon img {
          width: 48px;
          height: 48px;
        }
        
        .heading__title {
          font-size: 28px;
        }
        
        .heading__desc {
          font-size: 15px;
        }
      }
      
      @media (max-width: 576px) {
        .produto-header {
          flex-direction: column;
          text-align: center;
          gap: 15px;
        }
        
        .produto-icon {
          margin-left: 0;
          align-self: center;
        }
        
        .produto-card {
          padding: 16px;
        }
      }
      
      /* Animações */
      .produto-card {
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
        transform: translateY(30px);
      }
      
      .produto-card:nth-child(1) { animation-delay: 0.1s; }
      .produto-card:nth-child(2) { animation-delay: 0.2s; }
      .produto-card:nth-child(3) { animation-delay: 0.3s; }
      
      @keyframes fadeInUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* Posts com imagem */
.post-item--featured {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.post-item--featured:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.post-item--featured .post__img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.post-item--featured .post__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-item--featured:hover .post__img img {
  transform: scale(1.05);
}



.post-item--featured .post__content {
  padding: 20px;
}

.post-item--featured .post__title {
  font-size: 18px;
  line-height: 1.4;
  margin: 8px 0 12px 0;
}

.post-item--featured .post__title a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-item--featured .post__title a:hover {
  color: #3498db;
}

.post-item--featured .post__meta-date {
  color: #7f8c8d;
  font-size: 13px;
}

.post-item--featured .post__desc {
  color: #576574;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.post-item--featured .post__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ecf0f1;
  padding-top: 15px;
}

.post-item--featured .post__meta-author {
  color: #7f8c8d;
  font-size: 12px;
}

.post-item--featured .post__read-more {
  color: #3498db;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

/* Sidebar de posts */
.sidebar-widget {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
}

.widget-header {
    background: linear-gradient(135deg, #222222 0%, #000000 100%);
    color: #ffffff!important;
    padding: 12px;
    text-align: center;
}

.widget-title {
  margin: 0;
  font-size: 20px;
  color: #ffffff!important;
  font-weight: 600;
}

.widget-content {
  padding: 25px;
}

.posts-list {
  margin: 0;
}

.post-list-item {
  margin-bottom: 0;
}

.post-list-item--first {
  padding-bottom: 20px;
  border-bottom: 2px solid #ecf0f1;
  margin-bottom: 20px;
}

.post-list-category {
  display: inline-block;
  background: #e8f4fd;
  color: #3498db;
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 8px;
}

.post-list-title {
  font-size: 16px;
  line-height: 1.3;
  margin: 5px 0;
}

.post-list-title a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-list-title a:hover {
  color: #3498db;
}

.post-list-excerpt {
  font-size: 13px;
  color: #7f8c8d;
  line-height: 1.4;
  margin: 10px 0;
}

.post-list-meta-bottom {
  font-size: 12px;
  color: #95a5a6;
  margin-top: 8px;
}

.post-list-date {
  font-weight: 500;
}

.post-list-author {
  font-weight: normal;
}

.post-list-divider {
  border: none;
  height: 1px;
  background: #ecf0f1;
  margin: 15px 0;
}

.no-posts {
  text-align: center;
  color: #7f8c8d;
  font-style: italic;
}

/* Responsividade */
@media (max-width: 991px) {
  .col-lg-4 {
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .post-item--featured .post__content {
    padding: 15px;
  }
  
  .widget-content {
    padding: 20px;
  }
  
  .post-list-title {
    font-size: 15px;
  }
}