/* RESET E TIPOGRAFIA */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* VARIÁVEL DE COR */
:root {
  --cor-menu: #ec4401;
}

/* BODY */
body {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* HEADER */
header {
  color: white;
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(to right, var(--cor-menu), #888);
}

header h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2rem;
  margin-bottom: 15px;
}

header p {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
/* container-cards */


/* BOTÃO PADRÃO */
.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 24px;
  background-color: white;
  box-shadow: 4px 4px 8px #411a0b;
  color: var(--cor-menu);
  border-radius: 40px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  text-align: center;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #e4dfdd;
  transform: translateY(-2px);
  color: black;
}

.btn-amazon {
  display: inline-block;
  width: 150px;
  height: 40px;
  background-image: url("/fundo-btn/amazon.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  text-indent: -9999px;
  padding: 10px;
  margin-top: 15px;
  cursor: pointer;
  box-shadow: 4px 4px 8px var(--cor-menu);
  border: 1px solid var(--cor-menu);
}


.btn-amazon:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px var(--cor-menu);
}



.btn-shopee {
  display: inline-block;
  width: 150px;
  height: 40px;
  background-image: url("/fundo-btn/shoopee.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  text-indent: -9999px;
  padding: 0;
  margin-top: 15px;
  cursor: pointer;
  box-shadow: 4px 4px 8px var(--cor-menu);
  border: 1px solid var(--cor-menu);
}
.btn-shopee:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px var(--cor-menu);
}
.btn-mercado {
  display: inline-block;
  width: 150px;
  height: 40px;
  background-image: url("/fundo-btn/mercado-livre.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  text-indent: -9999px;
  padding: 0;
  margin-top: 15px;
  cursor: pointer;
  box-shadow: 4px 4px 8px var(--cor-menu);
  border: 1px solid var(--cor-menu);
}

.btn-mercado:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px var(--cor-menu);
}
.btns {
  display: flex;
  gap: 10px;
  flex-direction: row;
  justify-content: space-evenly;
}
.btns p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--cor-menu);
}

.logopltaformas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  gap: 20px;
  padding: 20px;
  width: 100%;
}
.logopltaformas img {
  width: 140px;
  height: 50px;
  border-radius: 18px;
}

/* SEÇÕES */
section {
  padding: 40px 20px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.porQue h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
}

.porQue p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
}

.porQue h2, #products h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
}

/* GRID DE PRODUTOS */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 10px;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid var(--cor-menu);
}
@keyframes piscarSombras {
  0% {
    box-shadow: 0 0 10px 2px var(--cor-menu);
  }
  50% {
    box-shadow: 0 0 20px 5px var(--cor-menu);
  }
  100% {
    box-shadow: 0 0 10px 2px var(--cor-menu);
  }
}

/* CARTÕES */
.product-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px var(--cor-menu);
  text-align: center;
  padding: 13px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  animation: piscarSombras 1s infinite;

}

.btn-cursos {
 width: 150px;
 height: 40px;
 display: flex;
 justify-content: center;
 align-items: center;
 border: 1px solid var(--cor-menu);
}
.btn-cursos:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px var(--cor-menu);
}

.div-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; /* ou o tamanho que quiser */
}
.div-img img {
  max-width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  padding: 10px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px var(--cor-menu);
}

.product-card img {
  width: 100%;
  height: 340px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--cor-menu);
  margin-bottom: 15px;
  box-shadow: 4px 4px 8px var(--cor-menu);
}
.product-card h1 {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  color: var(--cor-menu);
  margin: 10px 0;
}

.product-card .descricao h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  margin: 10px 0;
  color: black;
  font-weight: bold;
}
.product-card .descricao {
  cursor: pointer;
  text-decoration: none;
}
.descricao {
  cursor: pointer;
  text-decoration: none;
}
.product-card .descricao h4:hover {
  color: var(--cor-menu);
}
.descricao h4:hover {
  color: var(--cor-menu);
}

.product-card p {
  margin: 10px 0;
}

/* CATEGORIAS */
.categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.category {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.category:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(236, 68, 1, 0.3);
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.feature {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

/* NEWSLETTER */
.newsletter {
  background: #f1f1f1;
  padding: 40px 20px;
  border-radius: 10px;
  text-align: center;
  margin: 40px auto;
  max-width: 800px;
}

.newsletter h2 {
  margin-bottom: 15px;
}

.newsletter p {
  margin-bottom: 20px;
}

.newsletter form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter input {
  padding: 12px 15px;
  flex-grow: 1;
  min-width: 250px;
  border: 1px solid #ccc;
  border-radius: 30px;
  font-size: 1rem;
}

.newsletter button {
  padding: 12px 25px;
  background-color: var(--cor-menu);
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.newsletter button:hover {
  background-color: #d13b01;
}

#feedback {
  margin-top: 15px;
  width: 100%;
}

/* RODAPÉ */
footer {
  text-align: center;
  padding: 25px;
  background: #ddd;
  font-size: 0.9rem;
  margin-top: 40px;
}

/* CARD-PAGINA */
.card-pagina {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(215, 10, 10, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-pagina:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(236, 68, 1, 0.3);
}

.card-pagina h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.card-pagina p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  flex-grow: 1;
}

.card-pagina .btn {
  display: inline-block;
  background-color: var(--cor-menu);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.card-pagina .btn:hover {
  background-color: #d13b01;
  color: white;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  header h1 {
    font-size: 1.6rem;
  }
  
  header p {
    font-size: 1rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 1rem;
  }
  
  section {
    padding: 30px 15px;
    width: 95%;
  }
  
  .newsletter {
    padding: 30px 15px;
  }
  
  .newsletter form {
    flex-direction: column;
  }
  
  .newsletter input,
  .newsletter button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  header {
    padding: 30px 15px;
  }
  
  header h1 {
    font-size: 1.4rem;
  }
  
  .product-grid,
  .categories,
  .features {
    grid-template-columns: 1fr;
  }
  
  .card-pagina {
    padding: 1.5rem;
  }
}

.tecnologia {
  background-color: #e9e7e7;
}

.moda {
  background-color: #efd3db;
}

.beleza {
  background-color: #d5cfe5;
}

.alimentacao {
  background-color: #def1dc;
}

.pet {
  background-color: #eeefcc;
}

.cursos-ebooks {
  background-color: #dbeaf4;
}

.esporte {
  background-color: #caedd5;
}

.pesca {
  background-color: #ddd1ed;
}

.btn-maisvendidos:hover {
  box-shadow:
    0 0 15px #000,
    0 0 30px #000,
    0 0 45px #000,
    0 0 60px #000;
  transform: scale(1.02);
}
/* BOTÃO SABER MAIS */

.botao-saber-mais {
  background-color: #ec4401;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 4px 20px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow:
    0 0 10px #000,
    0 0 20px #000;
  transition: all 0.3s ease;
}

.botao-saber-mais:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 15px #000,
    0 0 30px #000;
}

.botao-saber-mais .seta {
  font-size: 1.5rem;
}

