/* Blog Post */
.news-single {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.news-head img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 5px;
}

.news-title {
    font-size: 28px;
    font-weight: bold;
    margin-top: 20px;
    color: #7B3F00;
}

.news-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 10px 0;
}

.news-text .image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.news-text .image-gallery img {
    width: calc(50% - 10px);
    height: auto;
    border-radius: 5px;
    object-fit: cover;
}

.publicidade-container,
.revista-digital-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px; /* Espaço inferior para separação */
}

.publicidade-container {
    background-color: #f7f7f7;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

.publicidade-container img,
.revista-digital-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.publicidade-texto {
    background-color: #A56767;
    color: white;
    padding: 15px;
}

.publicidade-texto h2 {
    margin: 0;
    font-size: 16px;
}

.publicidade-texto p {
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 0;
    line-height: 1.4;
    text-align: left;

}

.revista-digital-container {
    background-color: #a15e57;
    padding: 20px;
    border-radius: 5px;
    color: white;
    margin-bottom: 20px;
}

.revista-digital-wrapper {
    max-width: 100%;
    margin: auto;
}

.revista-digital-icon {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 10px;
    text-align: center;
}

.revista-digital-content form {
    display: flex;
    flex-direction: column;
}

.revista-digital-content input[type="text"],
.revista-digital-content input[type="email"],
.revista-digital-content form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 3px;
}

.revista-digital-content button {
    background-color: white;
    color: #a15e57;
    font-weight: bold;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s, transform 0.2s;
}

.revista-digital-content button:hover {
    background-color: #8f4e48;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .publicidade-container,
    .revista-digital-container {
        min-height: auto;
    }

    .publicidade-texto,
    .revista-digital-content {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .publicidade-container,
    .revista-digital-container {
        min-height: auto;
    }

    .publicidade-texto h2,
    .revista-digital-wrapper h2 {
        font-size: 14px;
    }

    .publicidade-texto p,
    .revista-digital-content p {
        font-size: 12px;
    }
}
