/* Estilo Geral */
body {
  line-height: 1.6;
  margin: 0 auto;
  padding: 0;
  color: #ffffff; /* antes #333 */
  background-color: #000000; /* fundo preto */
}

main {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 12px;
  padding-right: 12px;  
}


h1 {
  color: #E53935; /* antes #4A90E2 (azul) */
}

h2 {
  color: #ffffff; /* antes #333333 */
}

h3 {
   color: #ffffff; /* antes #00000 */
}


a {
  text-decoration: none;
  color: #E53935; /* antes #4A90E2 */
}

/* Estilo ajustado para listas */
ul {
  list-style-type: disc; /* Tipo de marcador */
  padding-left: 20px; /* Indentação do conteúdo */
  margin: 10px 0; /* Margem para espaçamento */
}

ul li {
  margin: 8px 0; /* Espaçamento entre os itens */
  line-height: 1.5; /* Altura da linha para melhor legibilidade */
  font-size: 16px; /* Tamanho da fonte */
  color: #dddddd; /* mais claro no fundo escuro */
}

ul li strong {
  color: #E53935; /* antes #4A90E2 */
}


/* Cabeçalho */
.header {
    background: #4A0000; /* antes #004F78 (azul) */
    color: #fff;
    padding: 0px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header {
    margin-right: 0px;
}

.header .nav {
    display: flex;
    gap: 15px;
}

.header .nav a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

.header .nav a:hover {
    text-decoration: underline;
}

.logo {
   width: 280px;
}


/* Seções */
.section {
  padding: 40px 20px;
  border-bottom: 1px solid #333333; /* antes #ddd */
  background-color: #000000; /* fundo preto */
}

.section:nth-child(even) {
  background: #111111; /* antes #f9f9f9 */
}

/* Imagens */
.image {
  width: 100%;
  max-width: 420px;
  margin: 20px auto;
  display: block;
  border-radius: 10px;
}

/* Layout das Seções */
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.content img {
  margin: 20px 0;
}

@media (min-width: 768px) {
  .content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
  }

  .content img {
    margin: 0 20px;
  }

  .content p {
    flex: 1;
  }
}

/* Rodapé */
.footer {
  background: #0d0d0d; /* antes #fafafa */
  color: #aaaaaa;      /* antes #666 */
  text-align: center;
  padding: 20px 0;
}

.footer a {
  color: #dddddd; /* antes #666 */
  margin: 0 10px;
}


/* Botão Flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366; /* Cor verde do WhatsApp */
    color: #fff;
    border-radius: 30px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.4); /* um pouco mais forte no dark */
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.6);
}

.whatsapp-icon {
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon img {
    width: 24px;
    height: 24px;
}

.whatsapp-text {
    font-family: Arial, sans-serif;
}



/* Ajuste da seção */
.section {
  padding: 20px 0; /* Espaçamento interno para a seção */
}

/* Estilo para o container flex */
.content {
  display: flex; /* Ativa o layout flex */
  align-items: flex-start; /* Alinha os itens ao topo */
  gap: 220px; /* Espaçamento horizontal entre imagem e texto */
}

/* Estilo para a imagem */
.image {
  max-width: 360px; /* Ajuste o tamanho da imagem */
  border-radius: 10px; /* Bordas arredondadas */
  object-fit: cover; /* Ajusta a imagem à dimensão */
}

/* Estilo para o texto */
.text-content {
  flex: 1; /* Permite ao texto ocupar o espaço restante */
  text-align: left; /* Alinha o texto à esquerda */
}

.text-content h2 {
  margin: 0; /* Remove margem superior e inferior */
  font-size: 16px; /* Tamanho do título */
  color: #E53935; /* antes #4A90E2 */
}

.text-content h3 {
  margin-top: 5px; /* Margem entre o h2 e h3 */
  font-size: 14px; /* Tamanho do subtítulo */
  color: #ffffff; /* antes #333 */
}

.text-content ul {
  margin: 10px 0 0; /* Espaçamento superior */
  padding-left: 20px; /* Indentação para lista */
}

.text-content ul li {
  margin: 5px 0; /* Espaçamento entre os itens da lista */
}



/* Container do botão para alinhamento */
.whatsapp-container {
  text-align: left; /* Centraliza o botão na página */
  margin: 20px 0; /* Margem vertical para espaçamento */
}

/* Estilo do botão do WhatsApp */
.whatsapp-button {
  display: inline-flex; /* Layout em linha para ícone e texto */
  align-items: center; /* Centraliza o conteúdo verticalmente */
  justify-content: left; /* Centraliza horizontalmente */
  background-color: #25D366; /* Cor verde do WhatsApp */
  color: #fff; /* Cor do texto */
  font-weight: bold; /* Texto em negrito */
  font-size: 16px; /* Tamanho da fonte */
  border-radius: 24px; /* Botão arredondado */
  padding: 10px 20px; /* Espaçamento interno */
  text-decoration: none; /* Remove o sublinhado */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.4); /* Sombra do botão */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animação de hover */
}

/* Efeito hover no botão */
.whatsapp-button:hover {
  transform: scale(1.05); /* Aumenta levemente o botão ao passar o mouse */
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.6); /* Intensifica a sombra */
}

/* Ícone do WhatsApp no botão */
.whatsapp-icon img {
  width: 24px; /* Tamanho do ícone */
  height: 24px; /* Tamanho do ícone */
  margin-right: 10px; /* Espaçamento entre o ícone e o texto */
}

/* Texto do botão */
.whatsapp-text {
  font-family: Arial, sans-serif; /* Fonte do texto */
  white-space: nowrap; /* Impede quebra de linha */
}



/* Menu e Cabeçalho */

.nav .toggle {
  display: block;
  font-size: 20px;
  cursor: pointer;
  padding: 10px 15px;
  background-color: #E57373; /* antes #91BDEA */
  color: #fff;
  border: none;
  text-align: left;
  width: 100%; /* Botão ocupa 100% da largura */
}

.nav .menu {
  display: none; /* Oculta o menu inicialmente */
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #E57373; /* antes #91BDEA */
  width: 100%; /* Ocupa 100% da largura */
  position: absolute; /* Fica abaixo do botão */
  top: 100px; /* Distância do topo para evitar sobrepor o botão */
  left: 0;
}

.nav .menu li {
  border-bottom: 1px solid #E57373; /* antes #91BDEA */
}

.nav .menu a {
  display: block;
  padding: 15px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  text-align: center; /* Centraliza o texto */
  transition: background-color 0.3s ease;
}

.nav .menu a:hover {
  background-color: #C62828; /* antes #357ABD */
}

.nav.open .menu {
  display: flex; /* Exibe o menu quando a classe "open" está presente */
}

.nav.open + .logo {
  transform: translateY(-150px); /* Move o logo para cima */
  transition: transform 0.3s ease; /* Suaviza o movimento */
}

.nav.open ~ .content {
  margin-top: 200px; /* Empurra o conteúdo para baixo */
  transition: margin-top 0.3s ease; /* Suaviza o movimento do conteúdo */
}

/* Logo */
.logo {
  text-align: center;
  padding: 10px 0;
  color: #fff;
}

/* Conteúdo Principal */
.content {
  padding: 0px;
}

/* Responsividade */
@media (min-width: 768px) {
  .nav .toggle {
    display: none; /* Remove o botão em telas maiores */
  }

  .nav .menu {
    display: flex;
    flex-direction: row;
    position: static; /* Redefine a posição para layout desktop */
    width: auto;
  }

  .nav.open + .logo {
    transform: translateY(0); /* Remove movimentação em telas maiores */
  }

  .nav.open ~ .content {
    margin-top: 0; /* Remove margem extra */
  }

  .nav .menu a {
    padding: 10px 20px;
    text-align: left;
    border: none; /* Remove bordas entre os itens no desktop */
  }
}


            .columns {
                display: flex;
                gap: 20px;
                justify-content: center;
            }
            .column {
                flex: 1;
            }
            .column a {
                text-decoration: none;
                color: #E53935; /* antes #007BFF */
                font-size: 14px;
            }
            .column a:hover {
                text-decoration: underline;
            }


 .phone_info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: #330000; /* antes #91BDEA */
    border: 1px solid #550000;  /* antes #91BDEA */
    color: #E53935;             /* antes #357ABD */
 }           

  
  .phone_info a {
      color: #ffffff; /* antes #333 */
      font-size: 16px;
  }



:root {
  --bg-nav: #000000;    /* antes #ffffff */
  --bg-body: #000000;   /* antes #f5f5f5 */
  --text-light: #ffffff;/* antes #000000 */
  --text-dark: #ffffff; /* antes #000000 */
  --border-light: #333333; /* antes #dddddd */
  --hover-bg: #222222;  /* antes #f0f0f0 */
  --accent: #E53935;    /* antes #f5a623 */
}


    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: var(--bg-body);
      color: var(--text-light);
    }

    /* Barra do menu */
    .top-nav {
      background: var(--bg-nav);
      color: var(--text-light);
      display: flex;
      align-items: center;
      padding: 0 16px;
      height: 48px;
      position: sticky;
      top: 0;
      z-index: 10;
    }

    .top-nav .logo {
      font-weight: bold;
      margin-right: 16px;
      font-size: 18px;
      white-space: nowrap;
    }

    .menu {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      gap: 24px;
      align-items: stretch;
      flex: 1;
    }

    .menu-item {
      position: relative;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 4px;
      user-select: none;
      padding: 4px 0;
      cursor: pointer;
    }

    .menu-item > span.label {
      padding: 4px 0;
    }

    .menu-item span.arrow {
      font-size: 10px;
      transition: transform 0.2s ease;
    }

    .menu-item.open span.arrow {
      transform: rotate(180deg);
    }

    /* Dropdown base */
    .dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      background: #111111;           /* antes #fff */
      color: var(--text-dark);       /* agora branco */
      border: 1px solid var(--border-light);
      border-radius: 2px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.4);
      padding: 8px 0;
      display: none;
      z-index: 1000;
      min-width: 220px;
    }

    .menu-item.open .dropdown {
      display: block;
    }

    /* Multi-colunas dentro do dropdown */
    .dropdown-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0;
    }

    .dropdown-section {
      border-right: 1px solid var(--border-light);
    }

    .dropdown-section:last-child {
      border-right: none;
    }

    .dropdown-title {
      font-weight: bold;
      font-size: 12px;
      text-transform: uppercase;
      padding: 6px 12px;
      color: #bbbbbb; /* antes #666 */
    }

    .dropdown-item {
      padding: 8px 12px;
      font-size: 14px;
      white-space: nowrap;
    }

    .dropdown-item a {
      text-decoration: none;
      color: inherit;
      display: block;
    }

    .dropdown-item:hover {
      background: var(--hover-bg);
    }

    .dropdown-item a:hover {
      color: var(--accent);
    }

    /* Conteúdo de teste (opcional) */
    .content {
      padding: 24px;
      max-width: 960px;
      margin: 0 auto;
      color: #ffffff;
    }

    .content h1 {
      margin-top: 24px;
    }

    /* ===== Botão Hambúrguer ===== */
    .menu-toggle {
      display: none;             /* só aparece no mobile */
      margin-left: auto;
      background: transparent;
      border: 0;
      padding: 4px;
      cursor: pointer;
    }

    .menu-toggle .bar {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text-light);
      margin: 4px 0;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    /* Animação do botão quando o menu está aberto */
    .top-nav.menu-open .menu-toggle .bar:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

    .top-nav.menu-open .menu-toggle .bar:nth-child(2) {
      opacity: 0;
    }

    .top-nav.menu-open .menu-toggle .bar:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg);
    }

    /* ===== Comportamento Desktop: hover ===== */
    @media (min-width: 769px) {
      .menu-item:hover .dropdown {
        display: block;
      }
      .menu-item:hover span.arrow {
        transform: rotate(180deg);
      }
    }

    /* ===== Mobile: menu hambúrguer + dropdown no clique ===== */
    @media (max-width: 768px) {
      .top-nav {
        flex-wrap: wrap;
        height: auto;
        padding: 8px 12px;
        align-items: flex-start;
      }

      /* mostra o botão hambúrguer no mobile */
      .menu-toggle {
        display: block;
      }

      /* menu fica escondido por padrão no mobile */
      .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 8px;
        margin-top: 8px;
      }

      /* quando a .top-nav tiver .menu-open, o menu aparece */
      .top-nav.menu-open .menu {
        display: flex;
      }

      .menu-item {
        width: 100%;
      }

      .dropdown {
        position: static;
        box-shadow: none;
        border-radius: 4px;
        margin-top: 4px;
      }

      .dropdown-grid {
        grid-template-columns: 1fr; /* empilha colunas no mobile */
      }

      .dropdown-section {
        border-right: none;
        border-top: 1px solid var(--border-light);
      }

      .dropdown-section:first-child {
        border-top: none;
      }
    }

/* 2 columns layout */

    .page-container {
    max-width: 1200px;
    margin: 0px auto;
    padding: 0 0px;
  }

  .layout-2cols {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .main-content {
    flex: 0 0 80%;
    max-width: 80%;
    background: #111111;          /* antes #ffffff */
    padding: 16px;
    border-radius: 4px;
    border: 1px solid #333333;    /* antes #e0e0e0 */
    color: #ffffff;
  }

  .sidebar-right {
    flex: 0 0 20%;
    max-width: 20%;
    background: #111111;          /* antes #fafafa */
    padding: 16px;
    border-radius: 4px;
    border: 1px solid #333333;    /* antes #e0e0e0 */
    color: #ffffff;
  }

  .sidebar-right h3 {
    margin-top: 0;
    font-size: 14px;
    text-transform: uppercase;
  }

  /* Responsivo: empilha as colunas no mobile */
  @media (max-width: 768px) {
    .layout-2cols {
      flex-direction: column;
    }

    .main-content,
    .sidebar-right {
      flex: 0 0 100%;
      max-width: 100%;
    }
  
}


/* home blocs */



    .blog-section {
      max-width: 1200px;
      margin: 40px auto 60px;
      padding: 0 24px;
    }

    .blog-section h2 {
      font-size: 32px;
      margin-bottom: 8px;
      text-align: left;
      color: #ffffff; /* segue h2 */
    }

    .blog-section .subtitle {
      font-size: 16px;
      color: #cccccc; /* antes #555 */
      margin-bottom: 32px;
      max-width: 800px;
    }

    .blog-section .related-label {
      font-size: 14px;
      color: #bbbbbb; /* antes #777 */
      margin-bottom: 12px;
    }

    .blog-cards-wrapper {
      position: relative;
    }

    .blog-cards {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding-bottom: 8px;
    }

    .blog-card {
      background: #111111;                    /* antes #fff */
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.6); /* mais forte no dark */
      overflow: hidden;
      min-width: 260px;
      display: flex;
      flex-direction: column;
      color: #ffffff;
    }

    .blog-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .blog-card-body {
      padding: 16px 18px 18px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .blog-card-title {
      font-size: 16px;
      font-weight: 600;
      margin: 0;
    }

    .blog-card-desc {
      font-size: 14px;
      color: #cccccc; /* antes #555 */
      margin: 0 0 8px;
    }

    .blog-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .blog-tag {
      font-size: 11px;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 12px;
      border: 1px solid #ffb3b3;   /* antes #c9d4ff */
      color: #E53935;             /* antes #005be0 */
      background: #330000;        /* antes #f4f7ff */
      white-space: nowrap;
    }

    /* Botão de scroll (seta) */
    .blog-scroll-right {
      position: absolute;
      top: 50%;
      right: -8px;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid #333333; /* antes #ddd */
      background: #111111;       /* antes #fff */
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 2px 4px rgba(0,0,0,0.7);
    }

    .blog-scroll-right span {
      font-size: 20px;
      color: #FF5252; /* antes #007aff */
    }

    /* Responsivo */
    @media (max-width: 1024px) {
      .blog-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 768px) {
      .blog-section h2 {
        font-size: 26px;
      }

      .blog-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .blog-scroll-right {
        right: 0;
      }
    }

    @media (max-width: 560px) {
      .blog-cards {
        grid-template-columns: repeat(1, minmax(0, 1fr));
      }
    


      .btn-youtube {
  display: inline-block;
  background-color: #ff0000;
  color: #fff;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s, transform 0.2s;
  font-family: Arial, Helvetica, sans-serif;
}

.btn-youtube:hover {
  background-color: #cc0000;
  transform: scale(1.05);
}

.btn-youtube:active {
  transform: scale(0.98);
}

.article {
	color: #E53935; /* antes #336699 */
    }


.category-image {
  margin: 0 0 1.5rem;      /* espaço embaixo antes do texto */
  text-align: center;      /* centraliza a imagem dentro do figure */
}

.category-image img {
  max-width: 100%;         /* responsiva */
  height: auto;
  display: block;
  margin: 0 auto;          /* garante centralização */
  border-radius: 12px;     /* cantos arredondados */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6); /* sombra mais forte */
  object-fit: cover;       /* caso tenha width/height fixos em algum layout */
}


.category-image + p {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: #ffffff;
}



.search-wrapper {
  max-width: 600px;      /* limita a largura */
  margin: 0px auto;     /* centraliza horizontalmente */
  padding: 20px 15px;    /* padding interno */
  background-color: #111111; /* antes #fff */
}

/* Opcional: melhora a integração visual do box do Google */
.search-wrapper .gsc-control-cse {
  padding: 0;            /* remove padding extra do widget */
  border: none;          /* se quiser sem borda */
}

.search-wrapper table,
.search-wrapper td {
  margin: 0 auto;        /* ajuda a centralizar em alguns temas do CSE */
}


figure.category-image {
  display: block;
  max-width: 100%;
  width: 100%;
  margin: 24px 0;
  overflow: hidden;      /* impede qualquer coisa de vazar */
}


.highlight-main-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.category-image img {
  display: block;
  max-width: 100%;
  width: 20%;
  margin: 24px 0;
  overflow: hidden;      /* impede qualquer coisa de vazar */
}

