* {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    scroll-behavior: smooth;
}

ul {  
    list-style-position: inside;
    margin-bottom: 20px;
}

.news-container {
    margin: 0 auto;
    padding: 40px;
    margin-bottom: 40px;
}

.banner {
    width: 100%;
    height: 40vh;
    object-fit: cover;
}

#titulo-container {
    display: flex;
}


h1 {
    display: block;
    font-size: 35px;
    color: #0088cc;
    margin: 0 auto 20px;
}

h2 {
    font-size: 25px;
    margin-bottom: 10px;
}

.news-content {
    line-height: 1.8;
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.news-content p {
    margin-bottom: 20px;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 40px;

}

.back-button {
    margin: 0 30px;
    padding: 12px 25px;
    max-width: 250px;
    background: #0088cc;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
    text-align: center;
}

.back-button:hover {
    background: #075f8b;
}

#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;
  }

@media (max-width: 850px) {
    .button-container {
        flex-direction: column;
        gap: 20px;
    }

    .back-button {
        font-size: 15px;
        margin: 0 30px;
        padding: 12px 25px;
        border-radius: 4px;
        font-weight: 500;
    }
}

@media (max-width: 660px) {
    h1 {
        font-size: 25px;
    }

    h2 {
        font-size: 20px;
    }

    p {
        font-size: 16px;
    }
}
