/*PAGINA PRINCIPAL*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.site {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f4f6f9;
  color: #222;
}
.site::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #d9d0e8 0%, #f0f0f5 100%);
  pointer-events: none; 
  z-index: -1; 
}

.topo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  border-bottom: 2px solid #8aa0ff;
  background: linear-gradient(to top, #914bd6,#122273);
  color: #8aa0ff;
}

.logo img {
  width: 300px;
  height: 160px;
  object-fit: contain;
}

.pesquisa {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 15px;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.2);
}

.pesquisa input {
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  width: 300px;
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 500;
}

.pesquisa input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.btn-pesquisa {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-pesquisa:hover {
  background-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.btn-pesquisa img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}
.acoes {
  display: flex;
  gap: 12px; 
  align-items: center;
}

.btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 13px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  transform: scale(1.05);
}


.btn img {
  width: 45px;
  height: 45px;
  filter: brightness(0) invert(1); 
}

.categoria{
    background-color: #969cf6; 
    width: 100%;
}

.categoria2{ 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    
    list-style: none;
    display: flex; 
    justify-content: space-around;
}

.categoria1{

    font-size: 1.2em;
    color: white; 
    font-weight: bold;
    padding: 10px 15px;
    transition: background-color 0.2s;
    text-transform: uppercase;
    display: block;
}
.categoria1:hover{
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    color: #122273;
}

.conteiner {
  display: flex;
  flex-wrap: wrap;               
  justify-content: center;       
  gap: 20px;                     
  max-width: 1000px;             
  margin: 40px auto;
}

.item {
  background-color: #fff;
  width: 220px;                  
  border: 1px solid #ccc;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;

  display: flex;
  flex-direction: column; 
  justify-content: flex-start;
  min-height: 350px; 
}

.item:hover {
  transform: scale(1.05);
}

.item img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-bottom: 1px solid #ddd;
  border-radius: 10px 10px 0 0;
}

.item p {
  margin: 15px 10px 5px; 
  padding: 0 5px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
  flex-grow: 1; 
}


.item .ver-produto {
  margin-top: auto;
  margin: 15px;
}

.item .ver-produto a {
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  background-color: #1834c1;
  border: 2px solid #1834c1;
  padding: 10px 0;
  font-size: 14px;
  letter-spacing: 1px;
  display: block;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 3px 10px rgba(98, 109, 249, 0.5);
}

.item .ver-produto a:hover {
  background-color: #1834c1;
  border-color: #1834c1;
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(98, 109, 249, 0.6);
}

.item .ver-produto a:active {
  transform: scale(1);
  box-shadow: 0 3px 10px rgba(98, 109, 249, 0.5);
}

.rodape {
  background: linear-gradient(to top, #122273, #914bd6);
  color: #fff;
  padding: 40px 60px;
  margin-top: 50px;
  font-size: 14px;
}


.rodape-inferior {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 25px;
  margin-bottom: 30px;
}


.rodape h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
}

 .bandeiras {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bandeiras img {
  width: 55px;
  height: 35px;
  object-fit: contain;
  filter: brightness(0) invert(1);
} 

.certificados {
  text-align: right;
}


.imagens-certificados {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px; 
  flex-wrap: wrap;
  margin-top: 10px;
}

.imagens-certificados img {
  width: 120px;
  height: 40px; 
  object-fit: contain;
  border-radius: 6px;
  filter: none; 
}


.rodape-final {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.rodape-final img {
  height: 60px;
  object-fit: contain;
}

.social a img {
  width: 30px;
  height: 30px;
  margin: 0 8px;
  filter: brightness(0) invert(1);
}


.copyright {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

/*MINHA CONTA*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.logo-login {
    position: absolute;
    top: 30px; 
    left: 40px; 
    z-index: 100; 
}

.logo-login img {
    height: 100px; 
    width: auto;
    transition: transform 0.2s;
}

.logo-login img:hover {
    transform: scale(1.05);
}
.pagina-login-cadastro {
    background: linear-gradient(to bottom right, #122273, #914bd6); 
    display: flex;
    font-family: 'Roboto', 'Inter', Arial, sans-serif;
    color: #333;
    flex-direction: row; 
    align-items: center;
    justify-content: center; 
    min-height: 100vh;
    width: 100%;
    gap: 40px; 
    padding: 40px 20px;
}

.login-card, .cadastro-card {
    width: 400px; 
    background-color: #ffffff; 
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3); 
    text-align: left; 
    flex-shrink: 0;
}

.card-icon {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    margin-bottom: 20px;
}

.card-icon2 {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    margin-bottom: 20px; 
}

.icon {
    width: 30px;
    height: 30px;
    margin-bottom: 10px; 
    object-fit: contain; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon img {
    width: 25px;
    height: 25px;
}

.icon2 {
    width: 45px;
    height: 45px;
    margin-bottom: 10px; 
    object-fit: contain; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon2 img {
    width: 28px;
    height: 28px;
}

.card-titulo-central {
    font-size: 24px;
    font-weight: 700;
    color: #122273;
    margin-bottom: 5px; 
    text-align: center;
    text-transform: uppercase;
}

.card-subtitulo {
    font-size: 14px;
    color: #555;
    margin-bottom: 30px;
    text-align: center; 
}

.form-cadastro label {
    display: block;
    font-size: 13px;
    color: #333;
    margin-bottom: 3px;
    margin-top: 10px;
    font-weight: 600; 
}

.form-cadastro input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd; 
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    background-color: #f9f9f9; 
}

.form-login label, .form-cadastro label {
    display: block;
    font-size: 13px;
    color: #333;
    margin-bottom: 5px;
    margin-top: 15px; 
    font-weight: 600; 
}

.form-login input, .form-cadastro input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd; 
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    background-color: #f9f9f9; 
    margin-bottom: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none; 
}

.form-login input:focus, .form-cadastro input:focus {
    border-color: #1834c1;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(98, 109, 249, 0.15);
}

.form-row {
    display: flex;
    gap: 20px;
}
.form-column {
    flex: 1; 
}
.form-column label {
    margin-top: 10px;
}
.form-column input {
    margin-bottom: 15px;
}

.termos {
    display: flex;
    align-items: flex-start;
    font-size: 13px;
    color: #555;
    margin-top: 20px;
}
.termos input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
    margin-top: 2px;
    accent-color: #1834c1; 
    transform: scale(1.1);
}
.termos label {
    margin: 0; 
    font-weight: 400;
}
.termos a {
    color: #122273;
    text-decoration: none;
    font-weight: 600;
}
.termos a:hover {
    text-decoration: underline;
}

.btn-cadastrar {
    width: 100%; 
    padding: 14px 15px; 
    background-color: #1834c1;
    color: white; 
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    display: block; 
    margin: 35px auto 0 auto; 
    transition: background-color 0.2s, transform 0.1s, box-shadow 0.2s;
}

.btn-cadastrar:hover {
    background-color:#1834c1; 
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(98, 109, 249, 0.4);
}

.link-esqueceu-senha {
    display: block;
    text-align: right;
    font-size: 12px;
    color: #122273; 
    text-decoration: none;
    margin-top: 5px;
    margin-bottom: 25px;
    transition: color 0.2s;
}

.link-esqueceu-senha:hover {
    color: #1834c1;
}

.btn-entrar {
    width: 100%; 
    padding: 14px 15px;
    background-color: #1834c1;
    color: white; 
    border: none;
    border-top: 1px solid #eee;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    display: block;
    padding-top: 20px; 
    margin: 35px auto 20px auto;
    transition: background-color 0.2s, transform 0.1s, box-shadow 0.2s;
}

.btn-entrar:hover {
    background-color: #1834c1; 
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(98, 109, 249, 0.4);
}

.social-text {
    font-size: 14px;
    color: #444;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.social-buttons {
    display: flex;
    justify-content: center; 
    gap: 20px; 
    margin-bottom: 10px; 
}

.social-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    background-color: #fff; 
    border: 2px solid #1834c1; 
    border-radius: 50%; 
    text-decoration: none;
    transition: background-color 0.2s, border-color 0.2s;
}

.face{
    width: 30px;
    height: 30px;
}
@media (max-width: 950px) {
    .pagina-login-cadastro {
        flex-direction: column; 
        gap: 30px;
        padding: 40px 20px;
    }
    .login-card, .cadastro-card {
        width: 100%; 
        max-width: 450px; 
    }
}
@media (max-width: 950px) {
    .logo-login img {
        height: 70px; 
    }
    .pagina-login-cadastro {
        padding-top: 120px;
    }
}
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/*CARRRINHO*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}



.carrinho {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to top, #d9d0e8 0%, #f0f0f5 100%); 
    color: #333;
    min-height: 100vh;
}

.cabeçalho-topo {
    background: linear-gradient(to right, #122273 0%, #914bd6 100%);
    padding: 15px 80px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid #8aa0ff; 
}

.logo-gaia img {
    height: 90px;
    width: auto;
}

.pesquisa {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 15px;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.2);
}

.pesquisa input {
    padding: 10px 15px;
    border: none;
    border-radius: 6px;
    width: 300px;
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 500;
}

.pesquisa input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.btn-pesquisa {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-pesquisa img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icons img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
    transition: transform 0.2s;
}

.icons img:hover {
    transform: scale(1.1);
}

.icones5 {
    position: absolute;
    top: -5px; 
    right: -5px;
    background-color: hwb(230 50% 0%); 
    color: #fff; 
    border-radius: 50%;
    padding: 2px 5px;
    font-size: 0.8rem; 
    font-weight: bold;
    line-height: 1;
}

.carrinho-conteudo {
    max-width: 1250px;
    margin: 30px auto;
    padding: 0 20px;
}

.titulo-pagina {
    display: flex;       
    align-items: center;  
    color: #122273;
    gap: 15px;             
    margin-bottom: 30px;
    font-size: 4.5em; 
    
}
.cesta-icon {
    font-weight: 700;  
    color: #122273;
    margin: 0; 
    line-height: 1; 
    text-transform: uppercase;
}

.icone-cesta {
    height: 35px;         
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 0 #122273); 
}

.cesta-titulo h1 { 
    font-size: 2.5em;
    font-weight: 700;
    color: #122273;
    margin: 0; 
    line-height: 1; 
    text-transform: uppercase;
}

.carrinho-grid {
    display: flex;
    gap: 30px;
    align-items: flex-start; 
}

.lista-produtos {
    flex: 2; 
    min-width: 600px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.carrinho-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 40px; 
    font-weight: 700;
    color: #666;
    padding: 10px 0;
    text-transform: uppercase;
    font-size: 0.9em;
}

.produto-col {
    grid-column: 1 / span 1;
    padding-left: 100px; 
}

.quantidade-col, .preco-col {
    text-align: center;
}

.preco-col {
    padding-right: 50px;
}

.separator {
    border: none;
    border-top: 1px solid #ddd;
    margin: 15px 0;
}


.carrinho-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 40px; 
    align-items: center;
    padding: 15px 0;
}

.produto-detalhes {
    display: flex;
    align-items: center;
    gap: 15px;
}

.item-imagem-grande {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid #eee;
    border-radius: 4px;
}

.item-nome {
    font-size: 1em;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.item-vendido-por {
    font-size: 0.85em;
    color: #666;
}


.item-quantidade-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.btn-quantidade-menos, .btn-quantidade-mais {
    background-color: #f0f0f5;
    border: 1px solid #ccc;
    color: #333;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-quantidade-menos:hover, .btn-quantidade-mais:hover {
    background-color: #e0e0e0;
}

.input-quantidade-custom {
    width: 40px;
    padding: 5px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

.item-preco {
    text-align: center;
}

.preco-riscado {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9em;
    margin: 0;
}

.preco-final {
    font-size: 1.1em;
    font-weight: 700;
    color: #122273;
    margin: 0;
}

.preco-unitario {
    font-size: 0.8em;
    color: #888;
}

.item-remover {
    display: flex;
    justify-content: center;
}

.btn-remover-x {
    background-color: #122273; 
    border: 1px solid #122273; 
    color: #fff;   
    font-size: 1.2em; 
    cursor: pointer;           
    width: 30px;        
    height: 30px;           
    border-radius: 50%;      
    display: flex;            
    justify-content: center; 
    align-items: center;      
    transition: all 0.2s ease;
}
.btn-remover-x:hover {
    background-color: #fff; 
    color: #122273;     
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); 
}

.secao-entrega {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.secao-entrega h3 {
    color: #122273;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 1.2em;
}

.entrega-descricao {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 15px;
}

.form-cep {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cep-label {
    font-weight: 700;
    text-transform: uppercase;
    color: #122273;
    white-space: nowrap;
}

.cep-input {
    padding: 10px;
    border: 1px solid #122273;
    border-radius: 4px;
    width: 120px;
    text-align: center;
}

.btn-calcular-frete {
    background-color: #122273;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.2s;
}

.btn-calcular-frete:hover {
    background-color: #914bd6;
    color: white;
}

.aviso-cep-link a {
    font-size: 0.8em;
    color: #969cf6;
    text-decoration: none;
}
.aviso-cep-link {
    margin-left: 10px;
}
.aviso-cep-erro {
    font-size: 0.8em;
    color: #969cf6;
    margin-left: 10px;
}

.resumo-pedido {
    flex: 1; 
    min-width: 300px;
}

.resumo-pedido-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: sticky; 
    top: 20px; 
}

.resumo-titulo {
    font-size: 1.2em;
    color: #122273;
    margin-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.cupom-form {
    display: flex;
    margin-bottom: 25px;
    gap: 5px;
}

.input-cupom {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-transform: uppercase;
}

.btn-aplicar {
    background-color: #1834c1; 
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    transition: background-color 0.2s;
}

.resumo-linha {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 1em;
    border-top: 1px solid #eee;
}

.resumo-linha:first-of-type {
    border-top: none;
}

.resumo-label {
    color: #666;
    text-transform: capitalize;
}

.resumo-valor, .resumo-valor-desconto {
    font-weight: 700;
    color: #333;
}

.resumo-valor-desconto {
    color: #008000; 
}

.resumo-total {
    border-top: 2px solid; 
    margin-top: 15px;
    padding-top: 15px;
    font-size: 1.2em;
}

.resumo-total .resumo-valor {
    color: #122273;
    font-size: 1.3em;
}

.btn-continuar-final {
    background-color:#1834c1;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    margin-top: 20px;
    transition: background-color 0.2s;
}

.btn-adicionar-mais {
    padding: 12px 15px;
    background-color: transparent;
    color: #122273;
    border: 2px solid #1834c1; 
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    display: block; 
    text-align: center;
    text-decoration: none;
    margin: 5px auto 0 auto; 
    transition: background-color 0.2s, color 0.2s;
    outline: none;
}

.btn-adicionar-mais:hover {
    background-color: #1834c1;
    color: white;
}

.aviso-privacidade {
    font-size: 0.75em;
    color: #777;
    margin-top: 20px;
    text-align: center;
}

.aviso-privacidade a {
    color: #666;
}

@media (max-width: 1100px) {
    .cabeçalho-topo {
        padding: 15px 40px;
    }
    .pesquisa input {
        width: 200px;
    }
    .lista-produtos {
        min-width: 400px;
    }
}

@media (max-width: 900px) {
    .carrinho-grid {
        flex-direction: column;
        gap: 20px;
    }
    .lista-produtos, .resumo-pedido {
        flex: 100%;
        min-width: auto;
    }
    .resumo-pedido-box {
        position: static; 
    }
    .carrinho-header {
        grid-template-columns: 2fr 1fr 1fr 30px; 
    }
    .carrinho-item {
        grid-template-columns: 2fr 1fr 1fr 30px;
    }
    .produto-col {
        padding-left: 0;
    }
    .preco-col {
        padding-right: 20px;
    }
    .item-imagem-grande {
        width: 60px;
        height: 60px;
    }
    .produto-detalhes {
        gap: 10px;
    }
}

@media (max-width: 650px) {
    .cabeçalho-topo {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 20px;
    }
    .pesquisa {
        width: 100%;
        margin: 10px 0;
    }
    .pesquisa input {
        flex-grow: 1;
        width: auto;
    }
    .seguranca {
        width: 100%;
        justify-content: space-around;
        gap: 10px;
    }
    
    .carrinho-conteudo {
        padding: 0 10px;
    }

    .carrinho-header, .carrinho-item {
        grid-template-columns: 3fr 1fr 1fr 20px; 
        font-size: 0.8em;
    }
    
    .item-nome {
        font-size: 0.9em;
        white-space: normal;
    }
    
    .item-vendido-por {
        display: none; 
    }

    .secao-entrega h3, .resumo-titulo {
        font-size: 1.1em;
    }
}

@media (max-width: 400px) {
    .carrinho-header, .carrinho-item {
        grid-template-columns: 4fr 1fr 2fr; 
    }
    .item-remover {
        display: none; 
    }
    .preco-col {
        text-align: right;
    }
    .item-preco {
        text-align: right;
    }
    .form-cep {
        flex-wrap: wrap;
    }
    .cep-input {
        flex-grow: 1;
        width: auto;
    }
    .btn-calcular-frete {
        width: 100%;
    }
}
 /*CADASTRO DO PRODUTO*/
 .admin-cadastro {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    display: block; 
    min-height: 100vh;
    background: linear-gradient(to top, #d9d0e8 0%, #f0f0f5 100%); 
    background-attachment: fixed; 
    color: #333;
}

.admin {
    background: linear-gradient(to right, #122273 0%, #914bd6 100%); 
    color: white;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-admin {
    font-size: 1.5em;
    font-weight: 700;
    color: white;
    margin-right: 15px; 
    flex-shrink: 0;
}

.modelo5 {
    flex-shrink: 0;
    height: 75px;
    width: auto;
    object-fit: contain;
}
.modelo5:hover{
     transform: scale(1.05);
}

.pesquisa {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 15px;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.2);
}

.pesquisa input {
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  width: 300px;
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 500;
}

.pesquisa input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.btn-pesquisa {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-pesquisa:hover {
  background-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.btn-pesquisa img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}
.admin-icons {
    background: #969cf6;
    padding: 15px; 
    display: flex;
    justify-content: flex-end; 
    align-items: center;
    width: auto;
    font-size: 1.1em;  
    padding-bottom: 7px; 
}

.admin-icons1 {
    display: flex;
    align-items: center;
    gap: 20px;  
}
.admin-icons2 {
    color: white; 
    text-decoration: none; 
    transition: color 0.2s;
    white-space: nowrap; 
    border: none !important; 
    outline: none !important; 
}
.admin-icons2:hover {
    color: #eee;
    transform: scale(1.05);
}

.admin-detalhes1 {
    display: flex;
    max-width: 1400px; 
    margin: 20px auto;
    background-color: white; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.admin-detalhes2 {
    width: 250px; 
    background-color: #f7f7f7; 
    padding: 30px 20px; 
    box-sizing: border-box;
    border-right: 1px solid #ddd;
}

.alteracao {
    margin-bottom: 20px;
    padding: 0 20px;
}

.titulos3 {
    font-size: 2.0em; 
    font-weight: 500;
    color: #122273; 
    margin-top: 25px; 
    margin-bottom: 10px; 
    text-transform: capitalize;
}

.menu-divisor{
    border: none;
    height: 1px;
    background-color: #ccc;
    margin: 20px 0;
}

.link{
    display: block; 
    font-size: 1em; 
    font-weight: 400; 
    color: #999; 
    text-decoration: none;
    padding: 5px 0; 
    transition: color 0.2s;
}

.link :hover{
    color: #333;
}

.relatorios {
    display: block;
    padding: 8px 0;
    color: #666;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.2s;
    text-transform: capitalize;
}

.relatorios:hover {
    color: #969cf6;
}

.admin1 {
    flex-grow: 1;
    padding: 30px; 
}

.admintitulo {
    font-size: 3.0em;
    font-weight: 500;
    color: #122273;
    margin-bottom: 35px; 
    text-transform: capitalize;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.cadastro-produto-form {
    max-width: 700px;
    margin: 0;
}

.grupo1 {
    margin-bottom: 20px; 
}

.grupo3 {
    display: block;
    font-size: 1em; 
    font-weight: 500;
    color: #333; 
    margin-bottom: 8px; 
    text-transform: capitalize;
}

.C1{
    border: 1px solid #ccc;
}
.cadastro-produto-form input[type="text"],
.cadastro-produto-form input[type="number"],
.cadastro-produto-form select,
.cadastro-produto-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px; 
    box-sizing: border-box;
    font-size: 1em;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    background-color: #f9f9f9; 
}

.cadastro-produto-form input:focus,
.cadastro-produto-form select:focus,
.cadastro-produto-form textarea:focus {
    border-color: #969cf6;
    box-shadow: 0 0 5px lch(53.94% 81.12 297.35 / 0.3); 
    background-color: white;
}

.grupo4 {
    margin-top: 30px;
}

.grupo5 {
    display: flex;
    align-items: center;
    gap: 5px; 
}

.campo-exibicao-arquivo {
    flex-grow: 2; 
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-right: none; 
    border-top-left-radius: 4px; 
    border-bottom-left-radius: 4px;
    border-top-right-radius: none; 
    border-bottom-right-radius: none;
    background-color: white; 
    color: #555;
    font-size: 2em;
    outline: none;
}

.campo-exibicao-arquivo::placeholder {
    color: #999;
}

.btn-config{
    background-color: #1834c1; 
    border: 1px solid #1834c1;
    color: white; 
    padding: 10px 15px;
    border-top-left-radius: 4px; 
    border-bottom-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    line-height: 1;
    transition: background-color 0.2s;
    flex-shrink: 0; 
}

.btn-config:hover {
 transform: scale(1.05);
}

.btn-cadastrar {
    width: 100%; 
    padding: 14px 15px; 
    background-color: #1834c1;
    color: white; 
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    display: block; 
    margin: 35px auto 0 auto; 
    transition: background-color 0.2s, transform 0.1s, box-shadow 0.2s;
}

.btn-cadastrar:hover {
 transform: scale(1.05);
}

/*PRODUTOS CADASTRADOS*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif; 
}
.admin-produtos{
    margin: 0;
    padding: 0;
    display: block; 
    min-height: 100vh;
    background: linear-gradient(to top, #d9d0e8 0%, #f0f0f5 100%); 
    background-attachment: fixed; 
    color: #333;
}

.admin {
    background: linear-gradient(to right, #122273 0%, #914bd6 100%); 
    color: white;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-admin {
    font-size: 1.5em;
    font-weight: 700;
    color: white;
    margin-right: 15px; 
    flex-shrink: 0;
}

.modelo5 {
    flex-shrink: 0;
    height: 75px;
    width: auto;
    object-fit: contain;
}
.modelo5:hover{
     transform: scale(1.05);
}
.pesquisa {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 15px;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.2);
}

.pesquisa input {
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  width: 300px;
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 500;
}

.pesquisa input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.btn-pesquisa {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-pesquisa:hover {
  background-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.btn-pesquisa img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.admin-icons {
    background: #969cf6;
    padding: 15px; 
    display: flex;
    justify-content: flex-end; 
    align-items: center;
    width: auto;
    font-size: 1.1em;  
    padding-bottom: 7px; 
}

.admin-icons1 {
    display: flex;
    align-items: center;
    gap: 20px;  
}
.admin-icons2 {
    color: white; 
    text-decoration: none; 
    transition: color 0.2s;
    white-space: nowrap; 
    border: none !important; 
    outline: none !important; 
}
.admin-icons2:hover {
    color: #eee;
    transform: scale(1.05);
}

.admin-detalhes1 {
    display: flex;
    max-width: 1400px; 
    margin: 20px auto;
    background-color: white; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.admin-detalhes2 {
    width: 250px; 
    background-color: #f7f7f7; 
    padding: 30px 20px; 
    box-sizing: border-box;
    border-right: 1px solid #ddd;
}

.alteracao {
    margin-bottom: 20px;
    padding: 0 20px;
}

.titulos3 {
    font-size: 2.0em; 
    font-weight: 500;
    color: #122273; 
    margin-top: 25px; 
    margin-bottom: 10px; 
    text-transform: capitalize;
}

.menu-divisor{
    border: none;
    height: 1px;
    background-color: #ccc;
    margin: 20px 0;
}

.link{
    display: block; 
    font-size: 1em; 
    font-weight: 400; 
    color: #999; 
    text-decoration: none;
    padding: 5px 0; 
    transition: color 0.2s;
}

.link :hover{
    color: #333;
}

.relatorios {
    display: block;
    padding: 8px 0;
    color: #666;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.2s;
    text-transform: capitalize;
}

.relatorios:hover {
    color: #969cf6;
}

.admin-produtos-lista {
    flex-grow: 1;
    padding: 30px;
    background-color: #fcfcfc;
}

.admintitulo {
    font-size: 2.0em;
    font-weight: 550;
    color: #122273;
    margin-bottom: 35px; 
    text-transform: capitalize;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.tabela-produtos {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.separador{
    padding: 20px 0;
    vertical-align: middle;
    border-bottom: 1px solid #e0e0e0; 
    font-size: 1em;
    color: #333;
    text-align: center;
}

.descricao1 {
    font-weight: normal;
    font-size: 0.9em;
    color: #666;
    text-align: left;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
    text-transform: uppercase;
}

.codprodu{ 
    width: 45%; 
} 
.codesto{ 
    width: 10%; 
    text-align: center; 
}

.cod_preco1{ 
    width: 15%;
    text-align: center;
    font-weight: 700; 
}

.codacoes{ 
    width: 25%; 
    text-align: center;
    padding: 15px;
}

.descricao2 td {
    padding: 15px 10px;
    border-bottom: 1px solid #eee;
    vertical-align: middle; 
    color: #333;
    font-size: 1em;
}

.codesto { 
    text-align: center; 
}
.cod_preço{ 
    text-align: center; 
    font-weight: 500; 
}
.codacao { 
    text-align: right; 
    padding: 15px 5px;
}

.produto-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.p1{
    width: 70px; 
    height: 70px; 
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 4px;
    flex-shrink: 0;
}
.p2{
    width: 70px;
    height: 70px; 
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 4px;
    flex-shrink: 0;  
}
.p3{
    width: 70px; 
    height: 70px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 4px;
    flex-shrink: 0;  
}

.produto-nome {
    font-weight: 500;
    margin: 0 0 3px 0;
    line-height: 1.2;
}

.produto-desc {
    font-size: 0.85em;
    color: #777;
    margin: 0;
}

.btn-deletar, .btn-editar {
    padding: 8px 15px;
    font-size: 0.9em;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.2s;
    width: 90px;
}

.btn-editar {
    background-color:#b6bafa; 
    color: #122273;
    border: 1px solid #b6bafa; 
}

.btn-editar:hover {
    transform: scale(1.05);
    background-color: #a8b0f9; 
}

.btn-deletar {
    background-color: #122273;
    color: white;
    border: 1px solid #122273;
}

.btn-deletar:hover{
    transform: scale(1.05);
    background-color: #0c184d;
}

/*PRODUTOS*/
.produto {
    margin: 0;
    padding: 0;
    display: block; 
    min-height: 100vh;
    background: linear-gradient(to top, #d9d0e8 0%, #f0f0f5 100%); 
    background-attachment: fixed; 
    color: #333;
}

.imagens {
    display: flex; 
    flex-wrap: wrap; 
    max-width: 1250px; 
    margin: 40px auto; 
    background-color: #fff;
    padding: 40px; 
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}

.cabeçalho {
    width: 100%;

    background: linear-gradient(to right, #122273 0%, #914bd6 100%); 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky; 
    top: 0;
    z-index: 1000;

    border-bottom: 3px solid #969cf6;
}

.cabeçalho1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px; 
    width: 100%; 
    margin: 0 auto;
    gap: 20px;
}


.logo {

    flex-shrink: 0;
}
.logo img {
    height: 115px; 
    width: auto;
    object-fit: contain;
}

.pesquisa {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 15px;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.2);
}

.pesquisa input {
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  width: 300px;
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 500;
}

.pesquisa input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.btn-pesquisa {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-pesquisa:hover {
  background-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.btn-pesquisa img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.icones {
    background: #969cf6;
    padding: 10px 50px; 
    display: flex;
    justify-content: flex-end; 
    align-items: center;
    width: 100%; 
    font-size: 1.1em; 
}

.icones1 {
    display: flex;
    align-items: center;
    gap: 20px; 
}

.icones3 {
    color: white; 
    text-decoration: none; 
    transition: color 0.2s;
    white-space: nowrap; 
    border: none !important; 
    outline: none !important; 
}

.icones3:hover {
    color: #ffe600; 
}
.icones4 {
    position: relative;
    display: flex;
    align-items: center;
    border: none !important; 
    outline: none !important; 
}

.icones4 img { 
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1); 
}

.icones5 {
    position: absolute;
    top: -5px; 
    right: -5px;
    background-color: #122273; 
    color: #fff; 
    border-radius: 50%;
    padding: 2px 5px;
    font-size: 0.8rem; 
    font-weight: bold;
    line-height: 1;
}
.imagens1 {

    flex: 4; 
    min-width: 350px; 
    margin-right: 30px; 
}

.imagens2 {
    width: 100%;
    max-height: 550px; 
    border: 1px solid #ccc; 
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 15px;
}

.bola {
    width: 100%;
    height: auto;
    object-fit: cover; 
    display: block; 
}

.imagens3 {
    display: flex;
    gap: 10px; 
    justify-content: center; 
    flex-wrap: wrap; 
}

.imagens3a { 
    border: 2px solid #969cf6; 
    box-shadow: 0 0 5px rgba(98, 109, 249, 0.5);
    width: 90px; 
    height: 90px; 
    border-radius: 5px; 
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s;
}

.imagens4 { 
    width: 90px; 
    height: 90px; 
    border: 2px solid #ccc; 
    border-radius: 5px; 
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s;
}

.imagens3a img, .imagens4 img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.imagens4:hover {
    border-color: #969cf6; 
}


.info {

    flex: 6; 
    min-width: 400px; 
}

.infoname {
    font-size: 1.8em;
    font-weight: 700;
    color: #333; 
    margin-top: 0;
    margin-bottom: 10px;
}

.infopreço {
    font-size: 2.5em; 
    font-weight: 700;
    color: #333; 
    margin: 0;
    line-height: 1; 
}

.estrela {
    color: orange; 
    font-size: 1.2em;
}

.infocod, .infocartao {
    font-size: 0.9em;
    color: #666; 
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.infocartao {
    font-size: 1.1em;
    margin: 0;
    white-space: nowrap;
}

.infobotao {
    display: flex;
    flex-direction: column; 
    align-items: flex-start; 
    gap: 10px; 
    margin-bottom: 20px;
}

.infodetalhes {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.combotao {
    background-color: #122273;
    color: white; 
    border: none;
    padding: 12px 25px; 
    font-size: 1.1em;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.2s;
    width: 100%; 
    max-width: 350px; 
    text-align: center;
    outline: none !important;
}

.quantidade {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px; 
    margin-bottom: 15px;
}

.quanti {
    width: 60px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
    font-size: 1em;
}

.carbotao {
    background-color: white; 
    color: #122273; 
    border: 2px solid #122273; 
    padding: 12px 25px;
    font-size: 1.1em;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.2s, color 0.2s;
    width: 100%; 
    max-width: 350px; 
    display: block; 
    margin-bottom: 30px;
    outline: none !important; 
}

.descircaoproduto {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
}

.tituloh3 {
    margin-top: 20px;
    color: #333; 
    font-weight: 700;
}

/*CATEGORIAS*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.academia{
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f6f9;
    color: #222;
}

.academia::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #d9d0e8 0%, #f0f0f5 100%);
  pointer-events: none; 
  z-index: -1; 
}

.topo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  border-bottom: 2px solid #8aa0ff;
  background: linear-gradient(to top, #914bd6,#122273);
  color: #8aa0ff;
}

.logo img {
  width: 300px;
  height: 160px;
  object-fit: contain;
}

.pesquisa {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 15px;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.2);
}

.pesquisa input {
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  width: 300px;
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 500;
}

.pesquisa input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.btn-pesquisa {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-pesquisa:hover {
  background-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.btn-pesquisa img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}
.acoes {
  display: flex;
  gap: 12px; 
  align-items: center;
}

.btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 13px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  transform: scale(1.05);
}


.btn img {
  width: 25px;
  height: 25px;
  filter: brightness(0) invert(1); 
}

.categoria{
    background-color: #969cf6; 
    width: 100%;
}

.categoria2{ 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    
    list-style: none;
    display: flex; 
    justify-content: space-around;
}

.categoria1{

    font-size: 1.2em;
    color: white; 
    font-weight: bold;
    padding: 10px 15px;
    transition: background-color 0.2s;
    text-transform: uppercase;
    display: block;
}
.categoria1:hover{
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    color: #122273;
}

.conteiner {
  display: flex;
  flex-wrap: wrap;               
  justify-content: center;       
  gap: 20px;                     
  max-width: 1000px;             
  margin: 40px auto;
}
.item {
    background-color: #fff;
    width: 220px; 
    flex-basis: 220px; 
    border: 1px solid #ccc;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex; 
    flex-direction: column; 
    justify-content: flex-start;
    min-height: 350px; 
} 

.item:hover {
  transform: scale(1.05);
}

.item img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-bottom: 1px solid #ddd;
  border-radius: 10px 10px 0 0;
}

.item p {
  margin: 15px 10px 5px; 
  padding: 0 5px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
  flex-grow: 1; 
}


.item .ver-produto {
  margin-top: auto;
  margin: 15px;
}

.item .ver-produto a {
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  background-color: #1834c1;
  border: 2px solid #1834c1;
  padding: 10px 0;
  font-size: 14px;
  letter-spacing: 1px;
  display: block;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 3px 10px rgba(98, 109, 249, 0.5);
}

.item .ver-produto a:hover {
  background-color: #1834c1;
  border-color: #1834c1;
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(98, 109, 249, 0.6);
}

.item .ver-produto a:active {
  transform: scale(1);
  box-shadow: 0 3px 10px rgba(98, 109, 249, 0.5);
}
