section {
  scroll-margin-top: 100px; /* aplica para todas as seções */
}

#sobre {
  scroll-margin-top: 100px; /* altura do header + margem extra */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* ===== COR DE FUNDO GERAL ===== */
body {
  background: #fff; /* fundo branco padrão */
  color: #000;
  scroll-behavior: smooth;
}

/* ===== MENU ===== */
header {
  background-color: #0b132b; /* azul escuro */
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

header .container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.img{
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 60px;
  border-radius: 5px;
}

.nome-loja {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  font-family: inherit;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #4da8da;
}

/* ===== LOGO SECTION ===== */
.logo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #0d1b2a, #0d1b2a);
  padding: 150px 0 70px 0;
}

.logo-box {
  width: 80%;  /* aumenta a caixa */
  height: 125px; /* aumenta a caixa */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  background-color: #2767ac; /* 💙 cor azul */
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.logo-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
}

.logo-box img {
  width: auto;      /* mantém o tamanho original da imagem */
  height: auto;         /* define um tamanho fixo da imagem */
  object-fit: contain; /* garante que não deforme */
}

/* ===== HERO (PARTE AZUL DO INÍCIO) ===== */
.hero {
  background: linear-gradient(180deg, #0d1b2a, #1b263b);
  color: #ffffff;
  text-align: center;
  padding: 10px 10% 100px 10%;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero .blue {
  color: #ffffff;
}

.hero .yellow {
  color: #fcca46;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  transition: 0.3s;
}

.btn.blue {
  background: #007bff;
}

.btn.green {
  background: #00c851;
}

.btn:hover {
  opacity: 0.85;
}

.btn.small {
  padding: 8px 15px;
  font-size: 0.9rem;
}

/* ===== PRODUTOS ===== */
.products {
  background: #fff; /* fundo branco */
  color: #000;
  padding: 80px 10%;
  text-align: center;
}

.products h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #0b132b;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.product-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3 ease;
  cursor: pointer;
}

.product-card h3 {
  color: #004aad;
  margin-bottom: 10px;
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #fcca46;
  color: #0d1b2a;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* ===== SOBRE ===== */
.about {
  background: #fff;
  color: #000;
  padding: 80px 10%;
  text-align: center;
}

.checklist {
  list-style: none;
  margin: 20px auto;
  color: #000;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 30px 0;
}

.stats div {
  background: #f1f1f1;
  padding: 20px;
  border-radius: 10px;
  width: 200px;
  color: #000;
}

.differences {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

/* ===== CONTATO ===== */
.contact {
  background: #fff;
  color: #000;
  padding: 80px 10%;
  text-align: center;
}

.contact a {
  display: inline-block;
  margin-top: 15px;
}

/* ===== RODAPÉ ===== */
footer {
  background: #0b132b;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
  color: #ccc;
}

.product-card:hover .product-image {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

/* ===== BOTÃO "VER CATEGORIA" ===== */
.btn-category {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #fcca46;
  color: #0d1b2a;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-category:hover {
  background-color: #ffdb6e;
  transform: scale(1.05);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

/* Corrige o tamanho e alinhamento dos cards */
.product-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Imagem ocupa metade do card e cresce suavemente no hover */
.product-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

/* Texto abaixo da imagem */
.product-card h3 {
  margin-top: 15px;
  margin-bottom: 5px;
}

/* Badge amarela no canto da imagem */
.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #fcca46;
  color: #0d1b2a;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* Botão "Ver categoria" */
.btn-category {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #fcca46;
  color: #0d1b2a;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-category:hover {
  background-color: #ffdb6e;
  transform: scale(1.05);
}

/* Remove cor azul e sublinhado dos links */
a {
  color: inherit;          /* herda a cor do texto normal */
  text-decoration: none;   /* tira o sublinhado */
}

a:hover {
  color: inherit;          /* mantém a mesma cor no hover */
  text-decoration: none;   /* garante que não volte o sublinhado */
}

.sobre {
  background-color: #f7f7f7; /* cinza bem claro */
  border-radius: 20px;
  padding: 60px 20px;
  margin: 50px auto;
  max-width: 1200px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.sobre-container {
  text-align: center;
}

.sobre h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #222;
}

.sobre p {
  color: #555;
  font-size: 1.1rem;
}

/* blocos dos produtos */
.produtos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.produto-box {
  flex: 1 1 250px;
  padding: 20px;
  border-radius: 15px;
  transition: transform 0.2s;
}

.produto-box:hover {
  transform: translateY(-5px);
}

/* botões coloridos */
.botao {
  border: none;
  color: white;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 1rem;
  margin-bottom: 10px;
  cursor: default;
  transition: opacity 0.2s;
}

.botao:hover {
  opacity: 0.9;
}

.azul {
  background-color: #007bff;
}
.verde {
  background-color: #28a745;
}
.amarelo {
  background-color: #fcca46;
  color: #333; /* amarelo é claro, texto mais escuro pra contraste */
}

/* texto do box */
.produto-box p {
  color: #666;
  margin: 0;
}

/* estatísticas */
.estatisticas-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
}

.estatistica {
  flex: 1 1 180px;
  background: white;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.estatistica img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.estatistica h4 {
  font-size: 1.5rem;
  color: #111;
  margin: 5px 0;
}

.estatistica p {
  color: #555;
}

/* ===== Seção Nossa História ===== */
.historia {
  background-color: #fff; /* volta ao fundo branco */
  padding: 80px 20px;
}

.historia-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.historia h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 15px;
}

.historia p {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 50px;
}

/* blocos de Missão, Visão e Valores */
.principios-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.principio {
  flex: 1 1 300px;
  background-color: #ffffff;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.2s;
}

.principio:hover {
  transform: translateY(-5px);
}

.principio img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.principio h3 {
  font-size: 1.3rem;
  color: #007bff; /* azul principal da marca */
  margin-bottom: 10px;
}

.principio p {
  color: #555;
  font-size: 1rem;
}

.diferenciais {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff;
}

.diferenciais h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
}

.diferenciais h2 span {
  color: #007bff; /* azul do destaque */
}

.diferenciais-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.diferencial {
  display: flex;
  align-items: center;
  background-color: #f7f7f7;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.diferencial:hover {
  transform: translateY(-5px);
}

.diferencial img {
  width: 70px;
  height: 70px;
  margin-right: 20px;
}

.diferencial .texto {
  text-align: left;
}

.diferencial h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 8px;
}

.diferencial p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

/* Responsivo */
@media (max-width: 768px) {
  .diferenciais-container {
    grid-template-columns: 1fr;
  }

  .diferencial {
    flex-direction: column;
    text-align: center;
  }

  .diferencial img {
    margin: 0 0 10px 0;
  }

  .diferencial .texto {
    text-align: center;
  }
}

.equipe {
  background-color: #0d1b2a; /* azul principal */
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.equipe h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.equipe h2 span {
  color: #ffffff; /* amarelo ouro para contraste */
}

.equipe .descricao {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.equipe-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.card-equipe {
  background-color: #15283d; /* azul um pouco mais escuro */
  border-radius: 16px;
  padding: 30px 25px;
  width: 280px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-equipe:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.card-equipe img {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
}

.card-equipe h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.card-equipe p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #e8e8e8;
}

/* Responsivo */
@media (max-width: 768px) {
  .equipe-container {
    flex-direction: column;
    align-items: center;
  }

  .card-equipe {
    width: 90%;
  }
}

.localizacao {
  background-color: #fff;
  text-align: center;
  padding: 80px 20px;
  color: #333;
}

.localizacao h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.localizacao h2 span {
  color: #0d1b2a; /* azul do tema */
}

.localizacao .descricao {
  font-size: 1rem;
  margin-bottom: 50px;
  color: #555;
}

.local-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.endereco {
  background-color: #f2f2f2; /* cinza bem clarinho */
  border-radius: 16px;
  padding: 40px 30px;
  width: 320px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.endereco h3 {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 15px;
}

.endereco p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.botao-maps {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.botao-maps:hover {
  background-color: #0056b3;
}

.yellow {
  color:  #fcca46; /* amarelo dourado */
}

.imagem-local img {
  width: 340px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Responsivo */
@media (max-width: 768px) {
  .local-container {
    flex-direction: column;
    gap: 30px;
  }

  .imagem-local img {
    width: 90%;
  }
}

/* ===== RODAPÉ ===== */
.rodape {
  background-color: #0d1b2a3; /* azul bonito */
  color: #fff;
  padding: 50px 20px 20px;
  text-align: center;
  position: relative;
}

.logo-rodape {
    width: 80px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.rodape-conteudo {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto 30px;
  text-align: left;
}

.rodape-esquerda,
.rodape-direita {
  flex: 1 1 350px;
  padding: 10px 20px;
}

.rodape-esquerda h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #fff;
}

.rodape-esquerda p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e8e8e8;
}

.rodape-direita h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #fff;
}

.rodape-direita p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e8e8e8;
}

.btn-maps {
  display: inline-block;
  background-color: #ffd700;
  color: #000;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-maps:hover {
  background-color: #ffcc00;
  transform: translateY(-2px);
}

.rodape-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  font-size: 0.9rem;
  color: #ddd;
}

/* Responsivo */
@media (max-width: 768px) {
  .rodape-conteudo {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .rodape-esquerda,
  .rodape-direita {
    padding: 0;
  }
}

.rodape-topo {
  display: flex;              /* coloca lado a lado */
  align-items: center;        /* alinha verticalmente no centro */
  gap: 10px;                  /* espaço entre imagem e texto */
}

/* ===== AJUSTES PARA CELULAR ===== */
@media (max-width: 768px) {
  /* aumenta o espaçamento do header */
  header {
    padding: 25px 0; /* aumenta a altura do cabeçalho */
  }

  /* diminui o tamanho da logo e do texto */
  .logo {
    height: 45px;
  }

  .nome-loja {
    font-size: 18px;
  }

  /* empilha a logo e o menu para caber melhor */
  header .container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  /* centraliza os links e diminui o espaçamento */
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  /* ajusta o deslocamento do scroll (evita corte de seção) */
  section {
    scroll-margin-top: 130px;
  }

  #sobre {
    scroll-margin-top: 130px;
  }

  /* evita que a logo inicial grude no menu */
  .logo-section {
    padding-top: 180px;
  }

  /* texto da hero mais compacto */
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
