:root{
    --bg-card: #fff;
    --bg-texto-hover: #3462ac;
    --bg-button: #005baa;
}


/* =====================================================
   1 - RESET
===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    padding-top: 160px;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    transition: background .3s ease, color .3s ease;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}
/* =====================================================
   2 - VARIÁVEIS
===================================================== */






.container {
    margin: 0 auto;
}

/* Header */
.header {
    background: var(--bg-card);
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    transition: color 0.2s ease;
}

.nav a:hover,
.nav a.active {
    color: #2563eb;
}

.header-actions {
    display: flex;
    gap: 1rem;
}

.search-btn,
.menu-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s ease;
}

.search-btn:hover,
.menu-btn:hover {
    background-color: #f1f5f9;
}

.menu-btn {
    display: none;
}

/* Main Content Grid */
.main {
    padding: 2rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}

/* Article */
.article {
    background: var(--bg-card);
}

/* Hero Section */
.hero {
    position: relative;
    margin-bottom: 2rem;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}


.noticia .hero .category, .noticia .hero .hero-title{
    color:#fff;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 3rem 2rem 2rem;
}

.hero-content {
    color: white;
}

.category {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

.article-meta span {
    position: relative;
}

.article-meta span:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -0.6rem;
    opacity: 0.6;
}

/* Article Body */
.article-body {
    background: var(--bg-card);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.article-content {
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.article-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
}

.article-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
    color: #1e293b;
}

.article-content blockquote {
    border-left: 4px solid #2563eb;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.125rem;
    color: #475569;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.375rem;
}

/* Article Footer */
.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.share {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #64748b;
}

.share-btn {
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.linkedin {
    background: #0077b5;
    color: white;
}

.share-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-section {
    background: var(--bg-card);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.sidebar-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

/* Related Articles */
.related-articles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.related-article {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.related-article:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-article img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.related-content h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    color: #1e293b;
}

.related-content p {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.related-date {
    font-size: 0.75rem;
    color: #94a3b8;
}

/* Newsletter */
.newsletter p {
    margin-bottom: 1rem;
    color: #64748b;
    font-size: 0.875rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-form input {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: border-color 0.2s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.newsletter-form button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.newsletter-form button:hover {
    background: #1d4ed8;
}

/* Footer */
.footer {
    background: #1e293b;
    color: #cbd5e1;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.footer-section h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sidebar {
        order: -1;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        display: none;
    }
    
    .menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .article-body {
        padding: 1.5rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .article-meta span::after {
        display: none;
    }
    
    .article-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .related-article {
        flex-direction: column;
    }
    
    .related-article img {
        width: 100%;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .lead {
        font-size: 1.125rem;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
    }
}



/* =========================
   RESET
========================= */


/* =========================
   BASE
========================= */


a {
  text-decoration: none;
  color: inherit;
}

/* =========================
   HEADER PRINCIPAL
========================= */
.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  background: var(--bg-card);
  border-bottom: 1px solid #e5e5e5;
  z-index: 1000;
 
}

.topbar-container {
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 70px;
}

.logo span {
  font-size: 22px;
  font-weight: bold;
}

/* MENU CENTRAL */
.menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 36px;
}

.menu a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.menu a:hover {
  opacity: 0.7;
}

/* AÇÕES */
.actions {
  display: flex;
  gap: 12px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid #d1d1d1;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
}

.icon-btn:hover {
  background: #f3f3f3;
}

/* =========================
   BARRA DE INFORMAÇÕES
========================= */
.top-info-bar {
  position: fixed;
  top: 90px;
  width: 100%;
  background: #f5f6f7;
  border-bottom: 1px solid #e1e1e1;
  z-index: 999;
}

.top-info-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 32px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ESQUERDA */
.newsletter {
  background: var(--bg-card);
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  cursor: pointer;
}

/* CENTRO */
.info-center {
  display: flex;
  gap: 20px;
}

.market {
  background: var(--bg-card);
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.badge {
  margin-left: 6px;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  color: #fff;
}

.badge.down {
  background: #ef4444;
}

/* DIREITA */
.info-right {
  display: flex;
  gap: 12px;
}

.info-right a {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* =========================
   CONTEÚDO
========================= */
.content {
  max-width: 1400px;
  margin: 40px auto;
  padding: 0 24px;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 1024px) {
  .menu {
    display: none;
  }

  .info-center {
    display: none;
  }
}


/* =========================
   CARROSSEL
========================= */
.news-carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

.news-card {
  min-width: 320px;
  height: 420px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.15));
}

.overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  color: #fff;
  z-index: 2;
}

.overlay h3 {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.overlay span {
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.85;
}

/* BOTÕES */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 5;
}

.carousel-btn.prev {
  left: -10px;
}

.carousel-btn.next {
  right: -10px;
}

.carousel-btn:hover {
  background: rgba(0,0,0,0.8);
}


/* ================================
   DESTAQUES
================================ */
.highlights {
  max-width: 1400px;
  margin: auto;
  margin-top: 50px;
}

.section-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* GRID PRINCIPAL */
.highlights-grid {
  display: grid;
  grid-template-columns: 1.0fr 1fr;
  gap: 24px;
}

/* COLUNA DIREITA */
.right-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* LINHA DE BAIXO */
.small-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ================================
   CARD
================================ */
.highlight {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

/* IMAGEM */
.highlight img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* GRADIENTE */
.highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.85),
    rgba(0,0,0,.25)
  );
}

/* TEXTO */
.overlay {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  color: #fff;
  z-index: 2;
}

/* TAG */
.tag {
  display: inline-block;
  background: #e6e6e6;
  color: #111;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-left: 4px solid var(--bg-texto-hover);
  margin-bottom: 8px;
}

/* TÍTULO */
.highlight h3 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 6px;
}

.highlight.big h3 {
  font-size: 26px;
}

/* DATA */
.highlight p {
  font-size: 12px;
  letter-spacing: .5px;
  opacity: .9;
}


.highlight.medium {
  height: 200px;
}

.highlight.small {
  height: 200px;
}

/* ================================
   RESPONSIVO
================================ */
@media (max-width: 1024px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .small-row {
    grid-template-columns: 1fr;
  }

  .highlight.big {
    height: 300px;
  }
}
/* ================================
   BLOGS E COLUNAS
================================ */
.blogs {
  max-width: 1400px;
  margin: 80px auto;
  
}

/* HEADER */
.blogs-header h2 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.blogs-header h2 span {
  color: var(--bg-texto-hover);
  font-weight: 700;
}

/* HEADER */
.blogs-header {
  position: relative;
  margin-bottom: 24px;
}

.blogs-header h2 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  display: inline-block;
  padding-bottom: 10px;
}

.blogs-header h2 span {
  color: var(--bg-texto-hover);
  font-weight: 700;
}

/* linha cinza */
.blogs-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #ddd;
}

/* traço laranja embaixo do texto */
.blogs-header h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 168px;
  height: 7px;
  background: var(--bg-texto-hover);
}


/* GRID */
.blogs-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* CARD */
.blog-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

/* AVATAR */
.avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--bg-texto-hover);
  flex-shrink: 0;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXTO */
.blog-text h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #000;
}

.blog-text p {
  font-size: 13px;
  line-height: 1.4;
  color: #333;
}

/* ================================
   RESPONSIVO
================================ */
@media (max-width: 1024px) {
  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blogs-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   MAIS RECENTE
========================= */
.latest {
  margin-top: 0px;
}

.section-header {
  position: relative;
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
  padding-bottom: 10px;
}

.section-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #ddd;
}

.section-header h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 168px;
    height: 7px;
    background: var(--bg-texto-hover);
}
.grid-two{
    margin-top: 0px;
    display: grid;
    grid-template-columns: 4fr 1fr;
    gap: 30px;
}
/* LAYOUT */
.latest-layout {
  grid-template-columns: 1fr 300px;
  gap: 40px;
}

/* GRID PRINCIPAL */
.latest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.latest-card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}

.category {
  font-size: 11px;
  font-weight: 700;
  color: var(--bg-texto-hover);
}

.latest-card h3 {
  font-size: 16px;
  margin: 6px 0;
}

.latest-card p {
  font-size: 13px;
  color: #555;
}

/* SUBSEÇÃO */
.subsection-title {
  margin: 40px 0 16px;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 2px solid var(--bg-texto-hover);
  display: inline-block;
}

/* LINHA */
.latest-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.row-card {
  display: flex;
  gap: 12px;
}

.row-card img {
  width: 110px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
}

.row-card h4 {
  font-size: 13px;
}

/* SIDEBAR */
.latest-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-box {
  background: #fafafa;
  padding: 20px;
  border-radius: 6px;
}

.sidebar-box h4 {
  font-size: 14px;
  margin-bottom: 12px;
}

.sidebar-box a {
  display: flex;
  font-size: 13px;
  margin-bottom: 10px;
  color: #111;
  text-decoration: none;
}

.sidebar-box .more {
  font-size: 12px;
  font-weight: 700;
  color: var(--bg-texto-hover);
  cursor: pointer;
}

/* ANÚNCIO */
.sidebar-ad {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.sidebar-ad img{
    max-width:100%;
}
/* =========================
   POST CARD (EXATO)
========================= */
.post-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
}

/* IMAGEM */
.post-image {
  position: relative;
}

.post-image img {
  width: 100%;
  display: block;
}

/* TAG */
.post-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: #d9d9d9;
  color: #111;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 10px;
  border-left: 4px solid var(--bg-texto-hover);
}

/* CONTEÚDO */
.post-content {
  padding: 18px;
}

.post-content h3 {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 10px;
}

/* DATA */
.post-date {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #444;
}

/* TEXTO */
.post-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
/* SIDEBAR */
.latest-sidebar {
  width: 300px;
}

/* BOX */
.sidebar-box {
  background: #fff;
  border-radius: 6px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

/* TÍTULO */
.sidebar-box h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

/* ITEM */
.suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  text-decoration: none;
}

/* IMAGEM */
.suggestion-item img {
  width: 70px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #ddd;
}

/* TEXTO */
.suggestion-item span {
  color: #000;
  font-size: 14px;
  line-height: 1.4;
}

/* LINK FINAL */
.sidebar-box .more {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  color: var(--bg-button);
  text-decoration: none;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.tech-card {
  display: flex;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.tech-card img {
  object-fit: cover;
}

.tech-content {
  padding: 7px 15px  0px 15px ;
}

.tech-content h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.tech-content span {
  display: block;
  font-size: 12px;
  color: var(--bg-card);
  margin-bottom: 8px;
}

.tech-content p {
  font-size: 14px;
  color: #444;
}




.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.market-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.market-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.market-content {
  padding: 15px;
}

.market-content h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.market-content span {
  display: block;
  font-size: 12px;
  color: var(--bg-card);
  margin-bottom: 8px;
}

.market-content p {
  font-size: 14px;
  color: #444;
}
.margin-20{
    margin-top:30px;
    
}

.site-footer {
  background: var(--bg-texto-hover);
  border-top: 1px solid #ddd;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 40px;
}

/* LOGO */
.footer-brand h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 14px;
  color: #555;
  max-width: 320px;
  line-height: 1.6;
}

/* SOCIAL */
.footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  border-radius: 6px;
  background: #19aae3;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

/* COLUNAS */
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: .05em;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
}

.footer-col a:hover {
  text-decoration: underline;
}

/* BASE */
.footer-bottom {
  border-top: 1px solid #ddd;
  padding: 20px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

.menu {
  display: flex;
  gap: 22px;
  align-items: center;
  font-family: Arial, sans-serif;
}

.menu a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
  padding: 6px 0;
}

.menu a:hover {
  color: var(--bg-texto-hover);
}

/* Wrapper do "Mais" */
.menu-more-wrapper {
  position: relative;
}

/* Link "Mais" */
.menu-more {
  cursor: pointer;
}

/* Dropdown escondido */
.menu-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 230px;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  padding: 8px 0;
  z-index: 999;
}

/* Links do dropdown */
.menu-dropdown a {
  display: block;
  padding: 10px 16px;
  font-weight: 500;
  color: #333;
}

.menu-dropdown a:hover {
  background: #f5f5f5;
  color: var(--bg-texto-hover);
}

/* MOSTRA o dropdown no hover */
.menu-more-wrapper:hover .menu-dropdown {
  display: block;
}
.news-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-card-line {
    background: #f3f3f3;
    border-radius: 8px;
    transition: 0.2s ease;
}

.news-card-line:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.news-card-link {
    display: flex;
    gap: 20px;
    text-decoration: none;
    color: inherit;
}

.news-card-image img {
    width: 300px;
    object-fit: cover;
    border-radius: 6px;
}

.news-card-content {
    flex: 1;
}

.news-card-content h3 {
    font-size: 18px;
    margin: 0 0 8px 0;
}

.news-date {
    font-size: 13px;
    color: var(--bg-card);
    display: block;
    margin-bottom: 8px;
}

.news-card-content p {
    font-size: 14px;
    color: #555;
    margin: 0;
}
/* Container */
.pagination-color.pagination {
    gap: 6px;
}

/* Remove borda padrão do bootstrap */
.pagination-color .page-link {
    border: none;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px !important;
    font-weight: 500;
    font-size: 14px;
    color: #5f6b7a;
    background: #f1f4f9;
    transition: all 0.25s ease;
}

/* Hover bonito */
.pagination-color .page-link:hover {
    background: linear-gradient(135deg, #4f8cff, #2563eb);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(37, 99, 235, 0.35);
}

/* Página ativa */
.pagination-color .page-link.active {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.45);
}

/* Ícones (setas) */
.pagination-color .page-link svg {
    width: 18px;
    height: 18px;
}

/* Botão desabilitado */
.pagination-color .page-item.disabled .page-link {
    background: #e5e9f2;
    color: #a0a8b5;
    cursor: not-allowed;
    box-shadow: none;
}
/* Container do topo */
.news-list-vertical {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9edf3;
}

/* Título da categoria */
.news-list-vertical h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1e293b;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

/* Linha moderna abaixo do título */
.news-list-vertical h2::after {
    content: "";
    display: block;
    width: 60%;
    height: 4px;
    margin-top: 8px;
    border-radius: 4px;
    background: linear-gradient(90deg, #2563eb, #4f8cff);
}

/* Breadcrumb */
.news-list-vertical .bread {
    font-size: 14px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Link Home */
.news-list-vertical .bread a {
    text-decoration: none;
    color: #2563eb;
    font-weight: 500;
    transition: all 0.2s ease;
}

/* Hover do breadcrumb */
.news-list-vertical .bread a:hover {
    color: #1e40af;
    text-decoration: underline;
}

/* Separador "/" mais suave */
.news-list-vertical .bread span,
.news-list-vertical .bread {
    opacity: 0.85;
}
/* ===== CONTAINER GERAL ===== */
.news-list-vertical {
}

/* ===== CARD DA NOTÍCIA ===== */
.news-card-line {
    margin-bottom: 28px;
}

.news-card-link {
    display: flex;
    gap: 22px;
    text-decoration: none;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 18px;
    transition: all 0.25s ease;
    border: 1px solid #eef1f6;
}

/* Hover elegante */
.news-card-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    border-color: #dbe2ee;
}

/* ===== IMAGEM ===== */
.news-card-image {
    flex: 0 0 280px;
    height: 170px;
    overflow: hidden;
    border-radius: 12px;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card-link:hover .news-card-image img {
    transform: scale(1.05);
}

/* ===== CONTEÚDO ===== */
.news-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Título */
.news-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.news-card-link:hover h3 {
    color: #2563eb;
}

/* Data */
.news-date {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 10px;
    font-weight: 500;
}

/* Descrição */
.news-card-content p {
    font-size: 15px;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {

    .news-card-link {
        flex-direction: column;
    }

    .news-card-image {
        width: 100%;
        height: 200px;
    }
}

/* ===== CONTAINER ===== */
#contato-page {
    margin: 40px auto;
    padding: 35px;
    background: var(--bg-card);
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #eef2f7;
}

/* ===== TÍTULO ===== */
#contato-page h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    position: relative;
}

#contato-page h3::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    margin-top: 8px;
    border-radius: 4px;
    background: linear-gradient(90deg, #2563eb, #4f8cff);
}

/* ===== LABELS ===== */
#contato-page label {
    font-weight: 600;
    font-size: 14px;
    color: #334155;
    margin-bottom: 6px;
}

/* ===== INPUTS ===== */
#contato-page .form-control {
    border-radius: 12px;
    border: 1px solid #dbe3ef;
    padding: 12px 14px;
    font-size: 14px;
    transition: all 0.25s ease;
    background: #f9fbff;
}

/* Foco elegante */
#contato-page .form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
    background: var(--bg-card);
}

/* Textarea maior */
#mensagem-contato {
    min-height: 120px;
    resize: vertical;
}

/* ===== BOTÃO ===== */
#btn_contato {
    border-radius: 14px;
    padding: 12px 28px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

#btn_contato:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
}

/* ===== RESULTADO ===== */
#resultado-form-contato {
    margin-top: 15px;
    font-size: 14px;
}

/* ===== CONTAINER ===== */
.border.border-dark {
    margin: 60px auto;
    padding: 45px !important;
    border: none !important;
    border-radius: 20px;
    background: linear-gradient(180deg, var(--bg-card), #f8fbff);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
    position: relative;
}

/* Linha decorativa superior */
.border.border-dark::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, #2563eb, #4f8cff);
}

/* ===== TÍTULO ===== */
.border.border-dark h1 {
    font-size: 34px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    position: relative;
}

/* ===== TEXTO ===== */
.border.border-dark p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 20px;
}

/* ===== LISTA ===== */
.border.border-dark ul {
    padding-left: 0;
    list-style: none;
    margin-top: 15px;
}

.border.border-dark ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #334155;
}

/* Ícone moderno antes de cada item */
.border.border-dark ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    color: #2563eb;
    font-weight: bold;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .border.border-dark {
        padding: 30px !important;
        margin: 30px 15px;
    }

    .border.border-dark h1 {
        font-size: 26px;
    }
}

/* ===== TÍTULO PRINCIPAL ===== */
h1 {
    font-size: 34px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

hr {
    border: none;
    height: 3px;
    width: 80px;
    background: linear-gradient(90deg, #2563eb, #4f8cff);
    margin-bottom: 40px;
}

/* ===== TÍTULO DO MÊS ===== */
.text-center.my-4 {
    font-size: 26px;
    font-weight: 600;
    color: #2563eb;
    margin-top: 50px !important;
    margin-bottom: 25px !important;
    position: relative;
}

/* ===== CARD DO EVENTO ===== */
.border.p-3 {
    border: none !important;
    border-radius: 18px;
    padding: 28px !important;
    margin-bottom: 30px;
    background: var(--bg-card);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
}

/* Hover elegante */
.border.p-3:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

/* ===== DATA DO EVENTO ===== */
.border.p-3 .mb-2 {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    display: flex;
    align-items: center;
}

/* Ícone relógio */
.border.p-3 svg {
    color: #2563eb;
}

/* ===== LINK DO EVENTO ===== */
.evento-link {
    text-decoration: none;
}

.evento-link h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-top: 10px;
    transition: color 0.2s ease;
}

.evento-link:hover h2 {
    color: #2563eb;
}

/* ===== TEXTO DO EVENTO ===== */
.border.p-3 p,
.border.p-3 div {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .border.p-3 {
        padding: 20px !important;
    }

    .text-center.my-4 {
        font-size: 20px;
    }

    .evento-link h2 {
        font-size: 18px;
    }
}


.site-footer{
    background:#0f172a;
    color:#fff;
    padding:30px 20px 15px;
}

.footer-container{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:20px;
}

.logo-site{
    max-width:220px;
    height:auto;
}

.footer-social{
    display:flex;
    gap:12px;
}

.footer-social a{
    width:42px;
    height:42px;
    border:1px solid rgba(255,255,255,.2);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{
    transform:translateY(-2px);
    border-color:#fff;
}

.footer-bottom{
    margin-top:20px;
    padding-top:15px;
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    font-size:13px;
    color:rgba(255,255,255,.7);
}




.search-modal{
    position:fixed;
    inset:0;
    background:rgba(10,15,25,.75);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    display:flex;
    align-items:flex-start;
    justify-content:center;
    padding-top:120px;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:999999;
}

.search-modal.active{
    opacity:1;
    visibility:visible;
}

.search-box{
    width:90%;
    max-width:900px;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:
        0 20px 60px rgba(0,0,0,.25),
        0 5px 20px rgba(0,0,0,.1);
    transform:translateY(-20px);
    transition:.3s;
}

.search-modal.active .search-box{
    transform:translateY(0);
}

.search-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:20px 25px;
    border-bottom:1px solid #eee;
}

.search-title{
    font-size:18px;
    font-weight:700;
    color:#111827;
}

.close-search{
    width:40px;
    height:40px;
    border:none;
    border-radius:50%;
    background:#f3f4f6;
    cursor:pointer;
    transition:.2s;
}

.close-search:hover{
    background:#e5e7eb;
    transform:rotate(90deg);
}

.search-form{
    padding:25px;
    display:flex;
    gap:15px;
}

.search-form input{
    flex:1;
    height:65px;
    border:2px solid #e5e7eb;
    border-radius:14px;
    padding:0 25px;
    font-size:18px;
    transition:.2s;
}

.search-form input:focus{
    outline:none;
    border-color:var(--bg-button);
    box-shadow:0 0 0 4px rgba(0,91,170,.12);
}

.search-submit{
    width:70px;
    border:none;
    border-radius:14px;
    background:var(--bg-button);
    color:#fff;
    font-size:20px;
    cursor:pointer;
    transition:.2s;
}

.search-submit:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(0,91,170,.3);
}

.search-suggestions{
    padding:0 25px 25px;
}

.search-suggestions span{
    display:block;
    font-size:13px;
    color:#6b7280;
    margin-bottom:12px;
}

.search-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.search-tags a{
    text-decoration:none;
    background:#f3f4f6;
    color:#374151;
    padding:8px 14px;
    border-radius:30px;
    font-size:14px;
    transition:.2s;
}

.search-tags a:hover{
    background:var(--bg-button);
    color:#fff;
}
.sevenF{
    grid-template-columns: 7fr 2fr!important;

}
.mt70{
    margin-top:70px;
    
}
.banner_baixo_destaque img{     display: inline; }
.banner_baixo_destaque{ width:100%;   margin-top:70px; text-align:center; }


.ver-todas{
    font-size:14px;
    font-weight:600;
    color:#0057d9;
    text-decoration:none;
    transition:.3s;
}

@media (max-width: 768px) {
    .info-left{
        display:none;
    }
    .latest.grid-two, .market-grid, .content-grid, .latest-grid{
        display:block;
    }
    .latest-sidebar, .content, .article, .topbar-container, .top-info-container{
        width:100%;
        max-width:100%;
    }
    .share {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #64748b;
    flex-direction: row;
    flex-wrap: wrap;
}
}


.menu{
    display:flex;
    align-items:center;
    gap:25px;
}


.menu-toggle{
    display:none;
    background:none;
    border:0;
    font-size:30px;
    cursor:pointer;
}


/* MOBILE */

@media(max-width:768px){
    
    .menu-toggle{
        display:block;
        color:#000;
    }

    .menu-dropdown{
        top:0px;
        box-shadow:none;
        background:#fff;
    }
    
    .menu{

        position: fixed;
        top: 80px;      /* altura do header */
        left: 185px;

        width: 100%;
        height: calc(100vh - 80px);

        background: #fff;

        display: none;
        flex-direction: column;

        padding: 20px;

        overflow-y: auto;

        z-index: 9999;

    }

    .menu.active{
        display:flex;
    }


    .menu.active{
        display:flex;
    }


    .nav-link,
    .menu-more{

        width:100%;
        color:#000;

    }


    .menu-more-wrapper{

        width:100%;

    }


    .menu-dropdown{

        position:relative;

        display:none;

        background:#f5f5f5;

        width:100%;

    }


    .menu-more-wrapper.active .menu-dropdown{

        display:block;

    }


    .dropdown-item{

        display:block;

        padding:12px;

        color:#333;

    }

}


/* MOBILE SEARCH */
@media (max-width: 768px) {

    .search-box {
        width: calc(100% - 40px);
        max-width: 360px;
        margin: 20px auto;
        border-radius: 20px;
        overflow: hidden;
    }

    .search-header {
        padding: 22px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .search-title {
        font-size: 18px;
        font-weight: 600;
    }

    .close-search {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 0;
        background: #f1f3f5;
        display: flex;
        align-items: center;
        justify-content: center;
    }


    .search-form {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 20px;
    }


    .search-form input {
        width: 100%;
        height: 60px;
        border-radius: 15px;
        border: 2px solid #e4e7ec;
        padding: 0 18px;
        font-size: 16px;
        min-width: 0;
    }


    .search-submit {
        width: 50px;
        height: 60px;
        flex-shrink: 0;
        border-radius: 15px;
        border: 0;
        background: #0066cc;
        color: #fff;
        font-size: 20px;
    }


    .search-suggestions {
        padding: 0 20px 25px;
    }


    .search-suggestions span {
        display: block;
        margin-bottom: 15px;
        color: #7b8494;
        font-size: 14px;
    }


    .search-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }


    .search-tags a {
        padding: 10px 16px;
        background: #f2f4f7;
        border-radius: 25px;
        font-size: 14px;
        color: #475467;
        text-decoration: none;
    }

}