/* ============================================================
   TIPOGRAFIA PADRONIZADA
============================================================ */

/* Fonte global */
body, p, span, li, a, div {
  font-family: 'Poppins', sans-serif;
  color: #333; /* texto padrão */
}

/* Títulos padronizados */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: #1C2246; /* azul institucional */
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Ajuste para títulos menores */
h3, h4 {
  font-weight: 600;
}

/* Links */
a {
  color: #004AAD; /* azul links */
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #002f70; /* hover mais escuro */
}

/* Botões já estilizados mantêm cores */
button, .btn {
  font-family: 'Poppins', sans-serif;
}


/* ============================================================
   HEADER – INDEX (SOBRE O VÍDEO)
============================================================ */

body.index-page .navbar-custom {
  background-color: rgba(255, 255, 255, 0.55); /* mais transparente */
  box-shadow: none;                            /* sem sombra inicial */
}

/* Ao rolar no index */
body.index-page .navbar-custom.scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}


/* Texto branco com efeito de destaque */
.texto-destaque-branco {
  color: #ffffff;
  font-weight: 500;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.55),
    0 1px 2px rgba(0, 0, 0, 0.35);
}



/* ============================================================
   HEADER – TODAS AS PÁGINAS
============================================================ */
.navbar-custom {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;

  font-family: 'Poppins', sans-serif;
  background-color: rgba(255, 255, 255, 0.8); /* 80% inicial */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: background-color 0.4s ease, box-shadow 0.3s ease;
}

/* Clareia e reforça ao rolar */
.navbar-custom.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}


/* =============================
   HEADER – LINKS, MENUS E LOGO
============================= */

.navbar-custom .nav-link {
  font-weight: 600;
  color: #1C2246; /* azul institucional */
  text-transform: uppercase;
  transition: color 0.3s ease;
  line-height: 1.2;
}

.navbar-custom .nav-link:hover {
  color: #002f70;
}

/* Desktop */
.menu-link {
  font-size: 1.05rem;      /* ↓ reduz altura geral */
  padding: 0.4rem 0.9rem; /* ↓ menos padding vertical */
}

/* Mobile */
@media (max-width: 768px) {
  .menu-link {
    font-size: 0.95rem;
    padding: 0.35rem 0.75rem;
  }
}




/* =============================
   TELEFONE NO HEADER
============================= */
.telefone-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 3rem;
  font-weight: 700;
  white-space: nowrap;
  color: #1C2246; /* azul institucional */
}

.telefone-header * {
  color: #1C2246; /* azul institucional */
}

.telefone-header i {
  font-size: 1.4rem;
}

.telefone-header .ddd {
  font-size: 0.85rem;   /* 34 menor */
  font-weight: 500;
}

.telefone-header .numero {
  font-size: 1.7rem;
}

/* ============================================================
   HEADER – AJUSTE MOBILE (LOGO + TELEFONE NA MESMA LINHA)
   👉 SOMENTE MOBILE
============================================================ */
@media (max-width: 768px) {

  /* Reduz logo */
  .navbar-custom .navbar-brand img {
    height: 48px; /* 🔧 AJUSTE AQUI se quiser menor */
  }

  /* Ajusta telefone */
  .telefone-header {
    margin-left: 1rem;        /* menos espaço lateral */
    gap: 4px;
  }

  .telefone-header .ddd {
    font-size: 0.7rem;
  }

  .telefone-header .numero {
    font-size: 1.1rem;        /* 🔧 AJUSTE AQUI tamanho do número */
  }

  /* Evita quebra de linha */
  .telefone-header a {
    display: flex;
    align-items: center;
    white-space: nowrap;
  }
}




/* =========================
   WHATSAPP FLUTUANTE
========================= */
.whatsapp-float {
  position: fixed;
  width: 64px;
  height: 64px;
  bottom: 22px;
  right: 22px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  font-size: 34px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.whatsapp-float i {
  line-height: 1;
}




/* =============================
   LINKS E LOGO - MESMO PARA TODAS
============================================================ */
.navbar-custom .nav-link {
  font-weight: 600;
  color: #1C2246; /* azul institucional */
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.navbar-custom .nav-link:hover {
  color: #002f70;
}

.navbar-custom img {
  transition: transform 0.3s ease;
}

.navbar-custom img:hover {
  transform: scale(1.05);
}



/* =============================
   HERO - INDEX
============================================================ */
.hero-video-full {
  position: relative;
  width: 100%;
  height: calc(115vh - 115px); /* desconta altura do header */
  overflow: hidden;
}


.hero-video-full video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.25) 45%,
    rgba(0, 0, 0, 0.05) 100%
  );
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 4vw;
  transform: translateY(-50%);
  z-index: 2;

  max-width: 620px;
  color: #ffffff;
  text-align: left;
}

.hero-content h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 4px 14px rgba(0,0,0,0.6);
}

.hero-highlight {
  color: #f5c400;
}

.hero-content p {
  font-size: 1.3rem;
  max-width: 90%;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* ============================================================
   RESPONSIVIDADE
============================================================ */
@media (max-width: 768px) {

  .hero-content {
    top: auto;
    bottom: 1.5rem;
    left: 1rem;
    transform: none;

    max-width: calc(100% - 2rem);
    text-align: left;
  }

  .hero-content h1 {
    font-size: 1.9rem;
    line-height: 1.25;
  }

  .hero-content p {
    font-size: 1.05rem;
    line-height: 1.45;
    max-width: 100%;
  }
}


/* ============================================================
   BANNER – NUTRIÇÃO ANIMAL (AZUL SÓLIDO)
============================================================ */
.banner-nutricao {
  background: #1C2246; /* azul institucional 100% */
  padding: 2.5rem 1rem 2rem;
  position: relative;
}

/* Remove qualquer overlay ou pseudo-elemento */
.banner-nutricao::before,
.banner-nutricao::after {
  display: none !important;
}

/* Conteúdo */
.banner-nutricao .container {
  position: relative;
  z-index: 1;
}

.banner-nutricao h1,
.banner-nutricao h3,
.banner-nutricao p {
  color: #ffffff;
}

.banner-nutricao h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.banner-nutricao h3 {
  font-size: 1.6rem;
  font-weight: 500;
}

.banner-nutricao p {
  font-size: 1.2rem;
  font-weight: 500;
}

/* Botão do banner */
.banner-nutricao .catalogo-btn {
  background-color: #ffffff;
  color: #1C2246;
  border: none;
  border-radius: 50px;
  padding: 10px 22px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.banner-nutricao .catalogo-btn:hover {
  background-color: #1C2246;
  color: #ffffff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
  transform: translateY(-3px);
}

/* Coluna da imagem */
.banner-nutricao .banner-img-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-nutricao .banner-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}


/* Efeito brilho */
.sacarias-wrapper {
  overflow: hidden;
  border-radius: 15px;
  width: 100%;
}

.sacarias-brilho::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.3) 0%, rgba(255,255,255,0) 80%);
  transform: skewX(-25deg);
  transition: left 0.9s ease-in-out;
}

.sacarias-wrapper:hover .sacarias-brilho {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.sacarias-wrapper:hover .sacarias-brilho::after {
  left: 125%;
}

/* ============================================================
   RESPONSIVIDADE
============================================================ */
@media (max-width: 768px) {
  .banner-nutricao {
    padding: 2rem 1rem;
    text-align: center;
  }

  .banner-nutricao h1 {
    font-size: 2rem;
  }

  .banner-nutricao h3 {
    font-size: 1.3rem;
  }

  .banner-nutricao p {
    font-size: 1rem;
  }

  .banner-nutricao .banner-img-col {
    margin-top: 1.5rem;
  }

  .banner-nutricao .banner-img {
    max-width: 80%;
  }
}

/* ==========================
   RODAPÉ
========================== */
footer {
  background-color: #0D3B66; /* azul institucional ou bg-dark */
  color: #ffffff !important; /* texto branco */
  padding: 3rem 1rem 1rem;
  text-align: left;
  font-size: 0.9rem;
}

footer h6, 
footer p, 
footer li, 
footer a {
  color: #ffffff !important; /* garante que tudo fique branco */
}

footer a:hover, 
footer a.hover-light:hover {
  color: #f5c400 !important; /* hover amarelo/dourado */
  text-decoration: none;
}

/* Divisor inferior */
footer .border-top {
  border-color: rgba(255,255,255,0.3) !important;
}

/* Responsividade */
@media (max-width: 768px) {
  footer {
    text-align: center;
  }

  footer .row > div {
    margin-bottom: 1.5rem;
  }
}


/* Ajuste colunas empresa */
.empresa-texto {
  flex: 0 0 40%;
  max-width: 40%;
}

.empresa-imagem {
  flex: 0 0 60%;
  max-width: 60%;
}

.empresa-imagem img {
  height: 100%;
  object-fit: cover;
}

.empresa-texto {
  flex: 0 0 40%;
  max-width: 40%;
}

.empresa-imagem {
  flex: 0 0 60%;
  max-width: 60%;
}

.empresa-imagem img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
}

/* Responsivo: empilha colunas em telas pequenas */
@media (max-width: 991px) {
  .empresa-texto, .empresa-imagem {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .empresa-imagem {
    margin-bottom: 2rem;
  }
}

ul li i {
  width: 1.5rem; /* mantém o mesmo espaço para todos os ícones */
  text-align: center;
}

/* Força o padding do main igual ao index, deixando o footer alinhado */
body.empresa-page main,
body.empresa-page section:first-of-type {
  padding-top: 0;
}

footer {
  margin-top: 0 !important; /* remove espaço acima */
}

/* ============================================================
   HERO INTERNO – SOMENTE IMAGEM (exceto index)
============================================================ */

.hero-interno {
  width: 100%;
  height: 350px;           /* padrão 1600x350 */
  overflow: hidden;
  margin-top: 100px;       /* altura do header fixo */
  padding-top: 40px;
}

.hero-interno img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* preenche toda a área */
  display: block;
}

/* ============================================================
   RESPONSIVO
============================================================ */
@media (max-width: 768px) {
  .hero-interno {
    height: 240px;
    margin-top: 90px;
  }
}


/* ================================
   CARDS DE PRODUTOS – AZUL
================================ */
.produto-card {
  background-color: #0D3B66; /* azul institucional */
  border-radius: 18px;
  padding: 2.5rem 1.5rem;
  transition: all 0.35s ease;
  color: #ffffff;
}

.produto-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* =========================
   CARD DO PRODUTO
========================= */
.produto-card {
  background-color: #0D3B66; /* azul institucional */
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.produto-card:hover {
  transform: translateY(-6px);
}

/* =========================
   ÍCONE (SEM CÍRCULO)
========================= */
.produto-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

/* SVG DA VACA */
.produto-svg {
  width: 150px;          /* destaque visual */
  height: auto;
  align-items: center;
  filter: brightness(0) invert(1); /* branco */
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover do ícone */
.produto-card:hover .produto-svg {
  transform: scale(1.15);
  filter: none; /* cor original do SVG */
}

/* =========================
   TEXTO DO PRODUTO
========================= */
.produto-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.produto-link:hover {
  color: #f5c400; /* dourado */
}

.produto-texto {
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

/* =========================
   IMAGEM DA SACARIA
========================= */
.produto-sacaria {
  max-width: 460px;           /* mais presença visual */
  width: 100%;
  height: auto;
}

/* Centraliza melhor em telas grandes */
@media (min-width: 992px) {
  .produto-sacaria {
    margin-left: auto;
    margin-right: auto;
  }
}

/* =========================
   FICHA TÉCNICA
========================= */
.ficha-tecnica {
  border-left: 5px solid #0D3B66;
  padding-left: 1.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.ficha-item {
  margin-bottom: 1.3rem;
}

.ficha-titulo {
  display: block;
  font-weight: 600;
  color: #0D3B66;
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.ficha-item p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #444;
}


/* =========================
   AJUSTE GLOBAL DA PÁGINA DE PRODUTO
========================= */

/* Garante que o conteúdo não fique sob o header */
body.produto-page main {
  padding-top: 160px; /* padrão já definido */
}

/* Garante rolagem natural e footer só ao final */
body.produto-page main {
  min-height: calc(100vh - 160px);
}


/* =========================
   TÍTULO DE CATEGORIA / PRODUTO
========================= */
.titulo-categoria {
  background: linear-gradient(135deg, #0D3B66, #145DA0);
  padding: 2rem 1rem 1.6rem; /* altura reduzida */
  text-align: center;
  color: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-top: -60px; /* aproxima do header (padrão hero) */
  padding-top: 2.4rem; /* mantém respiro correto */
}

/* Ícone da categoria */
.titulo-categoria .icone-categoria {
  width: 72px; /* menor para economizar altura */
  height: auto;
  margin: 0 auto 0.8rem;
  display: block;
}

/* Título principal */
.titulo-categoria-h1 {
  font-size: 2.2rem; /* reduzido */
  font-weight: 800;
  letter-spacing: 1.2px;
  margin-bottom: 0.25rem;
  color: #ffffff;
}

/* Subtítulo */
.titulo-categoria-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.45;
}

/* =========================
   AJUSTE DE POSICIONAMENTO
========================= */
body.produto-page main {
  padding-top: 160px; /* altura padrão do header */
  min-height: calc(100vh - 160px);
  display: flex;
  flex-direction: column;
}

/* Conteúdo do produto */
.produto-conteudo {
  padding: 2.2rem 1rem 2rem; /* menos altura */
}

/* =========================
   FICHA TÉCNICA
========================= */
.ficha-tecnica {
  border-left: 4px solid #0D3B66;
  padding-left: 1.4rem;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}

/* Cada item */
.ficha-item {
  margin-bottom: 0.9rem;
}

/* Título do item */
.ficha-titulo {
  display: block;
  font-weight: 600;
  color: #0D3B66;
  font-size: 1rem;
  margin-bottom: 0.1rem;
}

/* Texto do item */
.ficha-item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
  color: #444;
}


/* =========================
   CONTATO – BLOCO EM DESTAQUE (COMPACTO)
========================= */
.contato-destaque {
  background-color: #1C2246; /* azul institucional */
  border-radius: 18px;
  color: #ffffff;
}

/* Título dourado */
.contato-titulo {
  color: #f5c400;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
}

/* Itens */
.contato-item2 {
  display: flex;
  align-items: flex-start;
  gap: 10px;               /* menos espaço entre ícone e texto */
  font-size: 1.15rem;
  font-weight: 500;
  color: #ffffff;
}

/* Contato */
.contato-item3 {
  display: flex;
  align-items: flex-start;
  gap: 5px;               /* menos espaço entre ícone e texto */
  font-size: 1.8rem;
  font-weight: 500;
  color: #ffffff;
}

/* Ícones */
.contato-item2 i {
  font-size: 1.5rem;
  color: #f5c400;
}


/* =========================
   MAPA CONTATO
========================= */
.mapa-contato {
  border-radius: 18px;
  color: #ffffff;
}

/* Título do mapa */
.mapa-titulo {
  color: #1C2246; /* azul institucional */
  font-weight: 700;
  font-size: 1.2rem;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 768px) {
  .contato-destaque {
    padding: 2rem 1.5rem;
  }

  .contato-titulo {
    font-size: 1.4rem;
  }

  .contato-item {
    font-size: 1.05rem;
  }
}

/* ============================================================
   RESPONSIVO – AJUSTES MOBILE
============================================================ */
@media (max-width: 768px) {

  /* HERO INTERNO */
  .hero-interno {
    height: 240px;        /* reduz altura do banner interno */
    margin-top: 90px;     /* aumenta respiro do topo */
  }

  /* BANNER NUTRIÇÃO */
  .banner-nutricao {
    padding-top: 3rem;     /* mais espaço no topo */
    padding-bottom: 1.8rem;
    padding-left: 0.8rem;
    padding-right: 0.8rem;
    text-align: center;
  }

  .banner-nutricao h1 {
    font-size: 1.6rem;
    line-height: 1.25;
  }

  .banner-nutricao h3 {
    font-size: 1.2rem;
  }

  .banner-nutricao p {
    font-size: 0.95rem;
  }

  .banner-nutricao .banner-img {
    max-width: 65%;
    margin-top: 1.5rem;
  }

  /* PRODUTOS CARD */
  .produto-card {
    background-color: #0D3B66; /* mantém fundo azul */
  }

  /* CONTATO DESTAQUE */
  .contato-destaque {
    background: linear-gradient(135deg, #0D3B66, #145DA0);
    padding: 2rem 1.5rem;
  }

  .contato-titulo {
    font-size: 1.4rem;
  }

  .contato-item {
    font-size: 1.05rem;
  }

  /* FOOTER */
  footer {
    text-align: center;
  }

  footer .row > div {
    margin-bottom: 1.5rem;
  }

  /* MENU LINKS MOBILE */
  .menu-link {
    font-size: 0.95rem;
    padding: 0.35rem 0.75rem;
  }

  /* HERO CONTENT INDEX */
  .hero-content {
    top: auto;
    bottom: 1.5rem;
    left: 1rem;
    transform: none;
    max-width: calc(100% - 2rem);
    text-align: left;
  }

  .hero-content h1 {
    font-size: 1.9rem;
    line-height: 1.25;
  }

  .hero-content p {
    font-size: 1.05rem;
    line-height: 1.45;
    max-width: 100%;
  }
}

/* TELAS MUITO PEQUENAS */
@media (max-width: 480px) {
  .banner-nutricao h1 {
    font-size: 1.4rem;
  }

  .banner-nutricao h3 {
    font-size: 1.1rem;
  }
}

/* ============================================================
   AJUSTES SOMENTE PARA MOBILE
   (NÃO AFETA DESKTOP)
============================================================ */
@media (max-width: 768px) {

  /* ============================================================
     BANNER / HERO INTERNO
     👉 AQUI você ajusta ALTURA do banner
     👉 AQUI você ajusta PADDING / ESPAÇO DO TOPO
  ============================================================ */

  .hero-interno {
    height: 180px;        /* 🔧 AJUSTE A ALTURA DO BANNER AQUI */
    margin-top: 120px;     /* 🔧 AJUSTE O ESPAÇO DO TOPO AQUI */
  }
 

  /* ============================================================
     CARD DE CONTATO – NÃO QUEBRAR LINHA NO MOBILE
  ============================================================ */

  .contato-destaque {
    padding: 2rem 1.5rem; /* mantém fundo e espaçamento */
  }

  .contato-item2 {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;    /* ❗ evita quebrar ícone/texto */
    font-size: 1.05rem;
  }

  .contato-item2 i {
    min-width: 22px;      /* mantém ícones alinhados */
    text-align: center;
  }

  .contato-item2 span {
    display: inline-block;
    white-space: normal;  /* quebra só onde tem <br> */
  }

  .contato-item3 {
    font-size: 1rem;
  }

}

/* ============================================================
   HERO VÍDEO – TEXTO RESPONSIVO (SEM QUEBRAR LINHAS)
============================================================ */
@media (max-width: 768px) {

  .hero-content h1 {
    font-size: 1.6rem;     /* 🔧 diminui o título */
    line-height: 1.15;     /* 🔧 linhas mais compactas */
    margin-bottom: 0.8rem;
  }

  .hero-content h1 span {
    display: inline-block;
    white-space: nowrap;  /* ❗ impede quebra de linha */
  }

  .hero-content p {
    font-size: 0.95rem;   /* 🔧 texto menor */
    line-height: 1.35;
    max-width: 100%;
  }

  .hero-content p br {
    display: none;        /* ❗ remove <br> no mobile */
  }
}


.instagram-img {
  width: 100%;
  height: 550px; /* padrão desktop */
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Mobile */
@media (max-width: 768px) {
  .instagram-img {
    height: 220px;
  }
}

/* Linha de Produção */


.produto-img:hover {
  transform: scale(1.05);
  
}

/* Mobile */
@media (max-width: 768px) {
  .produto-img {
    height: 180px;
  }
}

/* ============================
   TÍTULO DO PRODUTO (AZUL PADRÃO)
   ============================ */

.titulo-produto {
  color: #1C2246; /* azul institucional */
}

/* ============================
   BOTÕES DA FICHA TÉCNICA
   ============================ */

.botoes-racoes .btn-outline-primary {
  color: #1C2246;
  border-color: #1C2246;
}

.botoes-racoes .btn-outline-primary:hover {
  background-color: #1C2246;
  border-color: #1C2246;
  color: #ffffff;
}


