/* Estilo geral do body */
body {
    background-color: #fdf7e7; /* Fundo escuro */
    color: #ffffff; /* Cor do texto com contraste suave */
    font-family: 'Georgia', serif; /* Fonte elegante */
    margin: 0;
    padding: 0;
  }
  
  /* Estilo geral do header */
  .header {
    position: relative;
    height: 90vh; /* Ocupa a altura total da tela */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Alinha o conteúdo no topo */
    align-items: flex-start; /* Alinha os itens à esquerda */
    padding: 20px; /* Adiciona espaçamento interno */
    background: #65c3ff;
    color: #949292;
    overflow: hidden;
  }
  
  /* Texto no header */
  .text {
    width: 100%;
    text-align: left; /* Alinha o texto à esquerda */
    margin-top: 0;
  }
  
  .text h1 {
    font-size: 4rem;
    font-weight: bold;
    margin: 0;
  }
  
  .text p {
    font-size: 2.4rem;
    margin: 10px 0;
    line-height: 1.5;
  }
  
  /* Navbar centralizado */
  #navbar {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
  }
  
  #navbar i {
    cursor: pointer;
    font-size: 1.5rem;
    color: #fff;
  }
  
  /* Container do header */
  .header-content {
    width: 100%;
    padding: 0;
    display: block; /* Alterado de flex para block */
  }
  
  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  /* Imagem à direita */
  .header-image {
    max-width: 45%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px #fdf7e7(0, 0, 0, 0.2);
  }
  
  /* Estilo de conteúdo geral */
  .container {
    width: 80%;
    margin: auto;
    padding: 20px;
  }
  
  /* Estilo do segundo header */
  /* Estilo do segundo header */
  .header2 {
    text-align: center;
    padding: 20px;
    background-color: #fdf7e7;
    color: #111d52;
    font-family: 'Georgia', serif;
    border-radius: 8px;
    margin-bottom: 20px;
  }
  
  /* Layout de conteúdo */
  .content {
    display: flex;
    flex-wrap: wrap; /* Permite ajuste em telas menores */
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px; /* Espaço entre os elementos */
    overflow: hidden; /* Evita transbordamento */
  }
  
  /* Estilo do texto */
  .text {
    flex: 1 1 40%; /* Textos ocupam até 40% do espaço */
    font-size: 16px;
    line-height: 1.6;
    color: #111d52;
    word-wrap: break-word; /* Garante quebra de texto, se necessário */
  }
  
  /* Estilo das imagens */
  .image-left, .image-right {
    flex: 1 1 25%; /* Imagens ocupam até 25% do espaço */
    max-width: 100%; /* Garante que respeitam o contêiner */
    margin: 0 auto; /* Centraliza em espaços menores */
  }
  
  .image img {
    width: 100%;
    max-width: 60px; /* Ajuste aqui para reduzir o tamanho da imagem */
    height: auto;
    border: 2px solid #111d52;
    border-radius: 8px;
    display: block;
  }
  
  /* Ajuste para telas menores */
  @media (max-width: 768px) {
    .content {
      flex-direction: column; /* Empilha os elementos em telas menores */
    }
  
    .text, .image-left, .image-right {
      flex: 1 1 100%; /* Cada elemento ocupa 100% da largura */
      margin: 0 auto; /* Centraliza os elementos */
    }
  
    .image-left, .image-right img {
      max-width: 100px; /* Reduz ainda mais em telas menores */
    }
  }
  
  
  /* Terceiro header */
/* Terceiro header */
.header3 {
  text-align: center;
  padding: 20px;
  background-color: #fdf7e7;
  border-top: 2px solid #fdf7e7;
}

/* Estilo de reviews */
.reviews {
  margin-top: 20px;
  padding: 20px;
  background-color: #fdf7e7;
  border-radius: 8px;
}

.reviews h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #000000;
}

.review {
  margin-bottom: 20px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px #f5e395(0, 0, 0, 0.1);
}

.customer-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}

.stars {
  margin-top: 5px;
  color: #db9600;
}

.star {
  font-size: 1.5rem;
  margin: 0 2px;
  color: #ccc;
}

.star.filled {
  color: #db9600;
}

.review-text {
  margin-top: 10px;
  font-size: 1rem;
  color: #666;
}

/* Responsividade das reviews */
@media (max-width: 768px) {
  .reviews {
    padding: 15px;
  }

  .review {
    padding: 8px;
  }

  .stars {
    font-size: 1.2rem;
  }

  .review-text {
    font-size: 0.9rem;
  }
}
  
  /* Categorias */
  .categories {
    text-align: center;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .categories button {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 20px;
    background: linear-gradient(135deg,  #6dc6ff);
    color: #797777;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px #fdf7e7(0, 0, 0, 0.1);
  }
  
  .categories button:hover {
    background-color: #6dc6ff;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 6px 8px #fdf7e7(0, 0, 0, 0.2);
  }
  
  .categories button:active {
    transform: translateY(0);
    box-shadow: 0 4px 6px #fdf7e7(0, 0, 0, 0.1);
  }
  
  /* Layout do catálogo */
  .catalog {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  
  .category-content {
    display: none;
    text-align: center;
    margin: 20px;
  }
  
  .category-content img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin: 10px;
  }
  
  .category-content .back-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 20px;
    background: #f1e6d2;
    color: #6dc6ff;
    border: 2px solid #6dc6ff;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .category-content .back-btn:hover {
    background-color: #6dc6ff;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 6px 8px #fdf7e7(0, 0, 0, 0.2);
  }
  
  .category-content .back-btn:active {
    transform: scale(1);
    box-shadow: 0 3px 6px #fdf7e7(0, 0, 0, 0.1);
  }
  
  /* Classes de visibilidade */
  /* Esconde o conteúdo inicialmente */
  .hidden {
    display: none;
  }
  
  /* Torna o conteúdo visível */
  .visible {
    display: block;
  }
  /* Estilo dos botões */
  .tabs {
    display: flex; /* Organiza os botões em linha */
    justify-content: center; /* Centraliza os botões horizontalmente */
    align-items: center; /* Alinha os botões verticalmente */
    gap: 15px; /* Espaçamento entre os botões */
    margin-top: 20px; /* Espaçamento acima dos botões */
  }
  
  .tab-btn {
    background-color: #6dc6ff; /* Cor do botão */
    color: #000; /* Cor do texto */
    border: none; /* Remove bordas padrão */
    border-radius: 0px; /* Bordas arredondadas */
    padding: 10px 20px; /* Espaçamento interno */
    font-size: 16px; /* Tamanho da fonte */
    font-weight: bold; /* Texto em negrito */
    cursor: pointer; /* Cursor de ponteiro */
    transition: all 0.3s ease; /* Transição suave ao passar o mouse */
  }
  
  .tab-btn:hover {
    background-color: #6dc6ff; /* Cor mais escura ao passar o mouse */
  }
  
  .tab-btn.active {
    border: 2px solid #fff; /* Destaque para o botão ativo */
  }
  /* Design modificado do scroll */
  /* possivelmente não funcione em todos os navegadores */
  ::-webkit-scrollbar{
    width: 10px;
    background-color: #ffffff;
  }
  ::-webkit-scrollbar-thumb{
    width: 10px;
    background-color: #6dc6ff;
  }
  /* Estilo dos links dentro da navegação */
.categories .link-nav {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 20px;
    background: linear-gradient(135deg, #f1e6d2, #6dc6ff);
    color: #ffffff;
    text-decoration: none; /* Remove o sublinhado */
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px #fdf7e7(0, 0, 0, 0.1);
    display: inline-block; /* Faz os links ficarem como blocos ao redor do texto */
  }
  
  .categories .link-nav:hover {
    background-color: #6dc6ff;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 6px 8px #fdf7e7(0, 0, 0, 0.2);
  }
  
  .categories .link-nav:active {
    transform: translateY(0);
    box-shadow: 0 4px 6px #fdf7e7(0, 0, 0, 0.1);
  }

  .tab-btn {
    padding: 10px 15px;
    margin: 5px;
    cursor: pointer;
    border: none;
    background-color: #f0f0f0;
    transition: background-color 0.3s;
  }
  
  .tab-btn.active {
    background-color: #a0a9b3;
    color: white;
  }
  
  .tab-content {
    padding: 20px;
    border: 1px solid #ddd;
    margin-top: 10px;
  }
  