* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    scroll-behavior: smooth
}


header img {
    height: 90px;
    margin: 15px 0 0 20px;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.blog-header {
    text-align: center;
}

.blog-title {
    font-size: 2.5rem;
    color: #0088CC;
    margin-bottom: 10px;
}

.articles-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.article-card {  
    position: relative;
    height: 450px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}



.article-image {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: transform 0.5s ease;
}


.article-content {
    padding: 20px;
}

.article-title {
    font-size: 1.3rem;
    margin: 0 0 10px 0;
    color: #0088CC;
}

.article-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.article-link {
    display: inline-block;
    position: absolute;
    padding: 10px 10px;
    margin: 0 0 16px 20px;
    bottom: 0;
    left: 0;
    width: 70px;
    text-align: center;
    background: #0088CC;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
}

.article-link:hover {
    background: #075f8b;
}

.back-button {
    display: inline-block;
    margin: 30px 0;
    padding: 12px 25px;
    background: #0088CC;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
}

.back-button:hover {
    background: #075f8b;
    transform: translateX(-3px);
}

#balao-wpp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366; 
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  #balao-wpp:hover {
    background-color: #1b8d45; 
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }
  
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }
  
  #balao-wpp.pulse {
    animation: pulse 2s infinite;
  }