@charset "utf-8";
/* CSS Document */
body {
    margin: 0;
    font-family: 'Roboto', Tahoma, sans-serif;
    background-color: #f7f9fc;
    color: #333;
}
.blog-header {
    background-color: #4169e1;
    color: white;
    padding: 1px 0;
    text-align: center;
}
.blog-header h1 {
    margin: 0;
    font-size: 2.5em;
}
.blog-header p {
    margin-top: 10px;
    font-size: 1.1em;
}
.blog-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}
.post {
    background: white;
    padding: 25px;
    margin-bottom: 30px;
    border-left: 5px solid #0044cc;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.post h2 {
    margin-top: 0;
    color: #0044cc;
}
.post .date {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 10px;
}
.post a {
    display: inline-block;
    margin-top: 15px;
    color: #0044cc;
    text-decoration: none;
    font-weight: bold;
}
.post a:hover {
    text-decoration: underline;
}
.blog-footer {
    text-align: center;
    padding: 20px;
    background-color: #eee;
    color: #555;
}
/* Estilo dos títulos e datas dos posts */
.post-title {
    font-size: 1.8em;
    color: #0044cc;
    margin-bottom: 10px;
}
.post-date {
    font-size: 0.9em;
    color: #888;
    margin-bottom: 25px;
}
/* Seções internas do post */
.post-section {
    margin-bottom: 30px;
}
.post-section h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.3em;
}
.post-section p {
    line-height: 1.6;
}
/* CTA final */
.post-cta {
    background-color: #f0f4ff;
    padding: 20px;
    border-left: 5px solid #0044cc;
    border-radius: 5px;
    margin-top: 40px;
}
.post-cta h4 {
    margin-top: 0;
    font-size: 1.2em;
    color: #0044cc;
}
.post-cta ul {
    padding-left: 20px;
}
.post-cta li {
    margin-bottom: 8px;
}
.back-button {
    margin-top: 40px;
    text-align: center;
}
.back-button a {
    background-color: #0044cc;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s ease;
}
.back-button a:hover {
    background-color: #002e99;
}
.post-preview {
    background: white;
    padding: 25px;
    margin-bottom: 30px;
    border-left: 5px solid #0044cc;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.post-preview h2 {
    margin-top: 0;
    font-size: 1.5em;
}
.post-preview h2 a {
    color: #0044cc;
    text-decoration: none;
}
.post-preview h2 a:hover {
    text-decoration: underline;
}
.post-preview .post-date {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 10px;
}
.read-more {
    display: inline-block;
    margin-top: 15px;
    color: /*#0044cc*/#fff;
    text-decoration: none;
    font-weight: bold;
    max-width: 120px;
    background: #0044cc;
   
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.70);
    padding: 8px;
}
.read-more:hover {
    text-decoration:none;
    background: #002e99;
    transition: background 0.3s ease;
}
.post-image img {
    width: 100%;
    max-width: 300px; /* define um limite de largura em telas grandes */
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.70);
    display: block;
    margin: 0 auto;
}
/* Layout com imagem ao lado */
.post-preview.with-thumb {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.preview-text {
    flex: 1 1 60%;
}
.preview-thumb {
    flex: 1 1 35%;
    max-width: 150px;
}
.preview-thumb img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.40);
}
.post-image figcaption {
    font-size: 0.9em;
    color: #666;
    margin-top: 8px;
    text-align: center;
}
.blog-nav {
    background-color: #f8f8f8;
    border-bottom: 1px solid #ddd;
    font-family: sans-serif;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    height: 3px; /* ou a altura exata*/
}
.blog-nav .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 10px 20px;
}
.blog-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
}
.blog-nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}
.blog-nav a:hover {
    color: #0077cc;
}
/* Compensar o espaço ocupado pelo menu fixo */

.site-header {
    font-family: sans-serif;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    position: fixed;
    width: 100%;
    z-index: 1000;
}
.top-bar {
    display: flex;
    justify-content: space-between;
    padding: 5px 20px;
    background-color: #eee;
    align-items: center;
    font-size: 14px;
}
.social img {
    width: 20px;
    margin-right: 10px;
}
.contact span {
    margin-right: 15px;
}
.menu-toggle {
    font-size: 24px;
    cursor: pointer;
    display: none;
    margin-left: 4%;
}
.branding {
    display: flex;
    align-items: center;
    padding: 10px 20px;
}
.logo {
    width: 70px;
    margin:0.5% 0;
}
.company-info h1 {
    margin: 0;
    font-size: 20px;
}
.company-info p {
    margin: 0;
    font-size: 14px;
    color: #555;
}
.mobile-nav {
    display: block;
    flex-direction: column;
    padding: 10px 20px;
    background-color: rgba(255,255,255,0.3);
}
.mobile-nav a {
    padding: 8px 1%;
    text-decoration: none;
    color: #fff;
   /* font-weight: bold;*/
}
/* Responsivo */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
      color:white;
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
  }

  .mobile-nav.show {
    display: flex;
  }
    .fundo-menu {
        background: #4169e1;
   
}
.blog-nav li {
    margin: 10px 0;
} }
