/* IMPORTAR FONTES */
@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');

/* FONTES GERAIS */
body {
  font-family: 'Questrial', sans-serif;
  margin: 0;
  background: #fae5e5;
  color: #333;
}

/* TÍTULOS */
h1,
h2,
h3 {
  font-family: 'Questrial', sans-serif;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
  background: #1D3557;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

.logo img {
  height: 40px;
}

.menu {
  display: flex;
  gap: 30px;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #ffe389;
}

.icones {
  display: flex;
  gap: 20px;
}

.icones img {
  height: 28px;
  cursor: pointer;
  transition: transform 0.2s;
}

.icones img:hover {
  transform: scale(1.2);
}

/* BANNER */
.banner {
  background: #f999b5;
  color: #fff;
  text-align: center;
  padding: 75px 20px;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* conteúdo de texto */
.banner-text {
  max-width: 600px;
}

.banner h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.banner p {
  font-size: 1.2rem;
  margin-bottom: 35px;
}

.btn {
  background: #b87286;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background: #dbb435;
}

/* Responsivo apenas para celular */
@media (max-width: 768px) {
  .banner-content {
    flex-direction: column;
  }

  .banner h1 {
    margin-top: 35px;
    font-size: 1.8rem;
  }

  .banner p {
    font-size: 1rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}


/* PRODUTOS */
.produtos-destaque {
  padding: 30px 20px;
  text-align: center;
}

.produtos-destaque h2 {
  margin-bottom: 30px;
  font-size: 1.7rem;
  color: #1D3557;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 250px;
  transition: transform 0.3s ease;
}

.card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
}

.card h3 {
  margin: 8px 0;
}

.card .preco {
  color: #C9A227;
  font-weight: 600;
  margin-bottom: 10px;
}

.card button {
  background: #edc263;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

.card button:hover {
  background: #f5d6a4;
  ;
}

.card:hover {
  transform: translateY(-5px);
}

/* Container com Altura Fixa */
.card-image-wrapper {
  height: 300px; 
  width: 100%;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 8px;
  background-color: #ffffff; 
  display: flex; 
  justify-content: center;
  align-items: center;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%; 
  object-fit: contain; 
  border-radius: 8px;
  margin-bottom: 0;
}

/* SOBRE NÓS */
.sobre-nos {
  background-color: #fff;
  border: 5px solid #F4BFBF;
  border-radius: 16px;
  padding: 30px;
  margin: 30px auto;
  max-width: 1000px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sobre-nos:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.sobre-nos .container {
  max-width: 850px;
  margin: auto;
  text-align: center;
}

.sobre-nos h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #1D3557;
}

.sobre-nos p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 18px;
}

/* CARROSSEL DOS INTEGRANTES */
.quem-somos-carrossel {
  padding: 10px 0;
  text-align: center;
  background-color: #fae5e5;
  /* Um fundo suave para destacar a seção */
}

.quem-somos-carrossel h2 {
  margin-bottom: 15px;
  font-size: 2rem;
  color: #1D3557;
}
.carrossel-container {
  position: relative;
  max-width: 800px;
  margin: 20px auto;
  overflow: hidden; /* importante para esconder os slides fora da tela */
  width: 90%;
  background-color: #fae5e5;
  border-radius: 16px;
  padding: 20px 0;
}

.carrossel-slides {
  display: flex;
  transition: transform 0.5s ease-in-out; /* faz deslizar suavemente */
}

.slide-membro {
  flex: 0 0 100%; /* cada slide ocupa exatamente 100% do container */
  text-align: center;
  padding: 20px 40px;
  box-sizing: border-box;
}

.nome-membro {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}

.funcao-membro {
  font-size: 1em;
  color: #555;
  font-style: italic;
}

.slide-membro img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0px;
  border: 3px solid #ccc;
}

.prev-btn, .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(29, 53, 87, 0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

.prev-btn:hover, .next-btn:hover {
  background-color: rgba(29, 53, 87, 0.9);
}

/* CONTAINER DA FOTO EQUIPE */
.container-foto-grupo {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fbe4e7; /* mantém o fundo rosado pra combinar */
  padding: 40px 0;
  flex-direction: column; /* Para empilhar o conteúdo verticalmente */
}

.content-wrapper {
  display: flex;
  flex-direction: column; /* Empilha texto e imagem verticalmente */
  align-items: center; /* Centraliza o conteúdo (texto e imagem) horizontalmente */
  max-width: 900px; /* Limita a largura do wrapper */
  text-align: center; /* Centraliza o texto dentro do parágrafo */
  margin-bottom: 20px; /* Espaço entre o wrapper e outros elementos se houver */
}

.content-wrapper p {
  margin-bottom: 20px; /* Adiciona espaço abaixo do texto e acima da imagem */
  font-size: 1.1em; /* Ajuste o tamanho da fonte se necessário */
  color: #333; /* Cor do texto */
  padding: 0 15px; /* Adiciona um pouco de padding nas laterais do texto */
}

.foto-grupo {
  width: 60%; /* ocupa cerca de metade da largura da tela */
  max-width: 900px; /* limite para telas grandes */
  border: 5px solid #fff; /* borda branca mais marcante */
  border-radius: 20px; /* cantos arredondados */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.foto-grupo:hover {
  transform: scale(1.02);
}
/* Responsivo */
@media (max-width: 768px) {
  .foto-grupo {
    width: 85%; /* mais estreito no celular */
  }
}

/* RESPONSIVIDADE DO CARROSSEL INTEGRANTES */
@media (max-width: 600px) {

  /* 1. Ajusta as margens do container principal */
  .carrossel-container {
    width: 100%;
    max-width: none;
  }

  /* 2. Reduz o tamanho da foto e do padding do slide */
  .slide-membro {
    padding: 20px 10px;
  }

  .slide-membro img {
    width: 230px;
    height: 230px;
  }

  /* 3. Reduz o tamanho do texto */
  .nome-membro {
    font-size: 1.2em;
  }

  .funcao-membro {
    font-size: 0.9em;
  }

  /* 4. Reduz o tamanho e o posicionamento das setas */
  .prev-btn,
  .next-btn {
    padding: 6px 10px;
    font-size: 1em;
    /* Posiciona mais próximos às laterais em mobile */
    top: 40%;
  }

  .prev-btn {
    left: 5px;
  }

  .next-btn {
    right: 5px;
  }

  /* 5. Ajuste no título da seção em telas pequenas */
  .quem-somos-carrossel h2 {
    font-size: 1.5em;
  }
}

/* MISSÃO, VISÃO E VALORES  */
.missao {
  background: #ffffff;
  padding: 20px;
  text-align: center;
}

.missao h2 {
  margin-bottom: 30px;
  color: #1D3557;
}

.lista-sem-bolinhas {
  list-style: none;
  padding-left: 0;
}

.missao-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.missao-cards div:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.missao-cards div {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  width: 280px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.12);
}

.missao-cards h3 {
  color: #f4a2a2;
  margin-bottom: 10px;
}

/* FOOTER */
.footer {
  background-color: #1D3557;
  color: #f1f1f1;
  padding: 40px 20px 20px;
  font-family: 'Questrial', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1 1 200px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 15px;
  color: #f999b5;
}

.footer-section p,
.footer-section ul,
.footer-section li,
.footer-section a {
  color: #f1f1f1;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a:hover {
  color: #F4BFBF;
  transition: 0.3s;
}

/* Ajustes específicos */
.footer-section.links-uteis {
  margin-left: 80px;
}

.footer-section.siga-nos {
  margin-left: 40px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

.social-icons a:hover img {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #aaa;
  border-top: 1px solid #ffffff;
  padding-top: 20px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 15px;
  }

  .menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  .banner {
    padding: 60px 20px;
  }

  .cards,
  .missao-cards {
    flex-direction: column;
    align-items: center;
  }
}

/*reponsividade do footer*/
@media (max-width: 900px) {
  .footer-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-section.links-uteis,
  .footer-section.siga-nos {
    margin-left: 0;
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/*responsividade do sobre nós*/
@media (max-width: 768px) {
  .sobre-nos {
    padding: 20px;
    margin: 23px 28px;
    max-width: 90%;
  }

  .sobre-nos h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .sobre-nos p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 15px;
  }
}

/* LOGIN */
.login-body {
  background: #fae5e5;
  font-family: 'Questrial', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Container central */
.login-container {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  padding: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
}

/* Card de login */
.login-card {
  border: 5px solid #F4BFBF;
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 30px 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 380px;
  width: 100%;
}

/* Títulos */
.login-card h2 {
  color: #1D3557;
  margin-bottom: 8px;
}

.login-card p {
  color: #555;
  margin-bottom: 20px;
}

/* Grupos de inputs */
.input-group {
  text-align: left;
  margin-bottom: 18px;
}

.input-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.input-group input {
  display: block;
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  font-size: 1rem;
  transition: border 0.3s;
  box-sizing: border-box;
}

.input-group input:focus {
  border: 1px solid #C9A227;
}

/* Botão de login */
.btn-login {
  width: 100%;
  padding: 12px;
  background: #C9A227;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s;
}

.btn-login:hover {
  background: #b08f20;
}

/* Links extras */
.extra-links {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

.extra-links a {
  color: #1D3557;
  text-decoration: none;
  transition: color 0.3s;
}

.extra-links a:hover {
  color: #C9A227;
}

@media (max-width: 480px) {
  .close-btn {
    top: 8px;
    right: 10px;
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {

  .login-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }


  .login-container {
    flex-direction: column;
    padding: 25px;
    margin-top: 10px;
    gap: 30px;
    max-width: 95%;
    justify-content: center;
  }

  .login-card {
    width: 90%;
    max-width: 350px;
    padding: 25px 18px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-width: 3px;
  }

  .login-card h2 {
    font-size: 1.4rem;
  }

  .login-card p {
    font-size: 0.85rem;
  }

  .input-group label {
    font-size: 0.85rem;
  }

  .input-group input,
  .btn-login {
    padding: 10px;
    font-size: 0.95rem;
    width: 100%;
  }

  .extra-links {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .extra-links a {
    font-size: 0.8rem;
  }
}

/* Link voltar */
.back-link {
  position: absolute;
  top: 20px;
  right: 20px;
  margin: 0;
  z-index: 10;
  text-align: right;
}

.back-link a {
  font-size: 1.5rem;
  font-weight: bold;
}

.back-link a {
  color: #555;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s;
}

.back-link a:hover {
  color: #1D3557;
}

/* CARRINHO */
.carrinho-body {
  display: flex;
  justify-content: center;
  align-items: center; /* centraliza verticalmente */
  background: #fae5e5;
  min-height: calc(100vh - 200px); /* 100vh menos altura do header e footer */
  padding: 40px 10px;
}

.carrinho-container {
  background-color: #fff;
  border: 5px solid #F4BFBF;
  border-radius: 16px;
  padding: 50px;
  max-width: 95%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  position: relative;
  gap: 90px;
}

.carrinho-container:hover {
  transform: scale(1.01);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.carrinho-items,
.pagamento {
  flex: 1;
}

.carrinho-items h2,
.pagamento h2 {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #2b3e5c;
  gap: 10px;
  margin-bottom: 10px;
}

.aviso-retirada {
  background-color: #fff4f6;
  border-radius: 12px;
  padding: 15px 20px;
  margin-top: 15px;
  text-align: center;
  font-size: 1rem;
  color: #2b3e5c;
  font-weight: 500;
}

/* RESPONSIVIDADE CARRINHO */
@media (max-width: 1024px) {
  .carrinho-container {
    flex-direction: column;
    padding: 25px;
    gap: 30px;
    max-width: 95%;
  }

  .resumo-pedido {
    width: 100%;
  }

  .item-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .item-card img {
    width: 120px;
  }

  .item-info {
    width: 100%;
  }

  .carrinho-items h2 {
    text-align: center;
    font-size: 1.4rem;
  }

  .carrinho-items p {
    font-size: 14px;
  }

  .btn-confirmar {
    font-size: 1rem;
    padding: 14px;
  }

  .resumo-pedido h2 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .carrinho-container {
    padding: 15px;
    border-width: 3px;
  }

  .item-card img {
    width: 100px;
  }

  .item-info h3 {
    font-size: 0.95rem;
  }

  .item-info p {
    font-size: 0.85rem;
  }

  .btn-confirmar {
    font-size: 0.95rem;
  }
}

/* Cartões de item */
.item-card {
  display: flex;
  background-color: #f5d6a4;
  border-radius: 15px;
  padding: 15px;
  margin-bottom: 15px;
  align-items: center;
  gap: 15px;
}

.item-card img {
  width: 80px;
  border-radius: 10px;
}

.item-info {
  flex: 1;
}

.item-info h3 {
  margin: 0 0 5px 0;
  font-size: 1em;
  color: #2b3e5c;
}

.item-info p {
  margin: 2px 0;
  font-size: 0.9em;
  color: #2b3e5c;
}

/* Ações do item */
.item-actions {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
}

.item-actions button {
  background: none;
  border: none;
  color: #2b3e5c;
  cursor: pointer;
  font-size: 0.85em;
}

/* Pagamento */
.pagamento {
  background-color: #2b3e5c;
  color: white;
  border-radius: 15px;
  padding: 20px;
}

.pagamento img {
  width: 80px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.pagamento .total {
  margin: 10px 0;
}

.pagamento .metodos {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.metodos img {
  width: 50px;
  cursor: pointer;
}

.btn-confirmar {
  display: block;
  width: 100%;
  padding: 12px;
  background-color: #F0C56E;
  color: #2b3e5c;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.btn-confirmar:hover {
  background-color: #cd9d3c;
}

/* Checkbox estilizado */
.checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid #2b3e5c;
  border-radius: 4px;
  cursor: pointer;
}

/* Modal: fundo escuro que cobre toda a tela */
.modal {
  display: none;
  /* começa escondido */
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* fundo semitransparente */
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #f5f5f5;
  padding: 25px;
  border-radius: 12px;
  width: 600px;
  max-width: 90%;
  text-align: left;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  color: white;
}

.modal-body {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.modal-body img {
  width: 200px;
  border-radius: 8px;
}

.modal-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-info p {
  margin: 0;
  color: #000;
  font-size: 1rem;
}

/* Input de quantidade */
#modalQuantidade {
  width: 100px;
  padding: 5px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* Botão de confirmar em toda a largura */
#btnConfirmarCompra {
  display: block;
  width: 100%;
  padding: 12px;
  background-color: #e5b776;
  color: #3971b8;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

#btnConfirmarCompra:hover {
  background-color: #e9cfac;
}

/* Responsivo para celulares */
@media (max-width: 768px) {
  .modal-content {
    width: 90%;
  }

  .modal-body {
    flex-direction: column;
    align-items: center;
  }

  .modal-info {
    text-align: center;
  }
}

/*PROMOÇÕES*/
.voltar {
  text-decoration: none;
  position: absolute;
  top: 100px;
  left: 20px;
  padding: 8px 16px;
  background-color: #b87286;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.promo {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 40px;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #444;
}

.conteudo-promo h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #b76c88;
}

/* RESPONSIVIDADE: Ajustes para Promoções (Dispositivos Móveis) */
@media (max-width: 768px) {
  .promo {
    padding: 20px;
    font-size: 1.1rem;
    width: 90%;
    max-width: 100%;
    margin: 20px auto;
  }

  /* 2. Ajuste do Título */
  .conteudo-promo h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

/* CRIAR CONTA */
.conta-body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #1D3557, #457B9D);
}

/* Container principal */
.conta-container {
  width: 100%;
  max-width: 380px;
  padding: 20px;
}

/* Card branco */
.conta-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 30px 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.close-btn {
  position: absolute;
  top: 15px; 
  right: 20px; 
  font-size: 24px;
  cursor: pointer;
  color: #555;
  text-decoration: none; 
  z-index: 10; 
}

/* Botão de fechar (X) */
.close-btn:visited,
.close-btn:active {
  text-decoration: none !important;
  color: #555;
  font-size: 1rem;
  transition: color 0.3s;
}

.close-btn:hover {
  color: #000;
}

/* Textos */
.conta-card h2 {
  color: #1D3557;
  margin-bottom: 8px;
  text-align: center;
}

.conta-card p {
  color: #555;
  margin-bottom: 20px;
  text-align: center;
}

.conta-card h3 {
  text-align: left;
  margin-bottom: 12px;
}

/* Formulário */
.conta-card form {
  text-align: left;
}

.input-group {
  margin-bottom: 18px;
}

.input-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.input-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  font-size: 1rem;
  transition: border 0.3s;
}

.input-group input:focus {
  border: 1px solid #F4BFBF;
}

/* Botão */
.btn-conta {
  width: 100%;
  padding: 12px;
  background: #C9A227;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s;
}

.btn-conta:hover {
  background: #F4BFBF;
}

/* CÓDIGO PARA A ÁREA DE ADMINISTRAÇÃO */

.admin-container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Título principal dentro do container de admin */
.admin-container h2 {
  color: #1D3557;
  margin-top: 0;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

/* Tabela de listagem dos produtos */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.admin-table th,
.admin-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
  vertical-align: middle;
}

/* Cabeçalho da tabela */
.admin-table th {
  background-color: #1D3557;
  color: white;
  font-family: 'Raleway', sans-serif;
}

/* Efeito de "zebra" para melhor leitura das linhas */
.admin-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Imagem do produto na tabela */
.admin-table img {
  max-width: 70px;
  border-radius: 5px;
}

/* Links de 'Editar' e 'Excluir' na tabela */
.admin-table a {
  color: #1D3557;
  text-decoration: none;
  font-weight: 600;
}

.admin-table a:hover {
  text-decoration: underline;
}

/* Botão para "Adicionar Novo Produto" */
.btn-adicionar {
  display: inline-block;
  background-color: #1D3557;
  color: white;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  margin-bottom: 20px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn-adicionar:hover {
  background-color: #3a5a8a;
}

/* Formulários de Adicionar/Editar Produto */
/* Reutiliza a classe 'input-group'*/
.admin-container form .input-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  font-size: 1rem;
  transition: border 0.3s;
  box-sizing: border-box;
  min-height: 100px;
  resize: vertical;
  font-family: 'Questrial', sans-serif;
}

.admin-container form .btn-login {
  width: auto;
  padding-left: 30px;
  padding-right: 30px;
}

/* SEÇÃO DAS BOLINHAS - ADAPTADA */
.section-beneficios {
  padding: 25px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  background: none;
}

.section-beneficios h2 {
  color: #F0C56E;
  font-size: 1.7rem;
  margin-bottom: 30px;
  font-weight: 700;
}

.section-beneficios .circle-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.section-beneficios .circle-card {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: #F0C56E;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  position: relative;
}

.section-beneficios .circle-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.section-beneficios .circle-card .circle-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: #fff;
}

.section-beneficios .circle-card .circle-icon svg {
  width: 40px;
  height: 40px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* Específico para coração: preenchimento */
.section-beneficios .circle-card:nth-child(3) .circle-icon svg {
  fill: #fff;
  /* coração cheio */
  stroke: #fff;
}

/* Específico para brilhos/losangos: preenchimento parcial */
.section-beneficios .circle-card:nth-child(1) .circle-icon svg {
  fill: #ffffff;
}

.section-beneficios .circle-card h3 {
  font-size: 1rem;
  color: #ffffff;
  margin: 6px 0 4px;
  font-weight: 700;
}

.section-beneficios .circle-card p {
  font-size: 0.8rem;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}

/* Responsividade */
@media (max-width: 768px) {
  .section-beneficios .circle-card {
    width: 130px;
    height: 130px;
    padding: 12px;
  }

  .section-beneficios .circle-card .circle-icon svg {
    width: 32px;
    height: 32px;
  }
}

/* Esconde o ícone de preenchimento automático do Chrome */
input::-webkit-credentials-auto-fill-button,
input::-webkit-contacts-auto-fill-button {
  visibility: hidden;
  display: none !important;
  pointer-events: none;
  position: absolute;
  right: 0;
}
