/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body e fontes */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #2a2a2a;
  color: white;
}

/* Header */
header {
  position: relative;
  background-color: #111;
  height: 400px;
}

/* Navegação */
nav {
  position: absolute;
  top: 20px;
  right: 30px;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-size: 1.1rem;
  transition: color 0.3s;
  font-weight: bold;
}

nav a:hover {
  color: blue;
}

/* Botão do carrinho */
.botao-carrinho {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  padding: 5px;
  background-color: transparent;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.botao-carrinho img {
  width: 30px;
  height: 30px;
  transition: transform 0.2s ease;
}

.botao-carrinho img:hover {
  transform: scale(1.1);
}

/* Logo */
.logo-container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-container img {
  width: 400px;
  max-width: 100%;
}

/* Home */
.home {
  margin: 0;
  padding: 0;
  background: #2a2a2a;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-size: 1.6rem;
  flex-direction: column;
  gap: 20px;
}

.home h1 {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 100px;
}

/* Slideshow */
.slideshow-container {
  position: relative;
  width: 100%;
  max-width: 2000px;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background-color: #333;
}

#grid-conteudo {
  background-color: #2a2a2a;
  color: #f5f5dc;
  padding: 2rem 1rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  justify-items: center;
  align-items: start;
}

.grid div {
  background-color: #1e1e1e;
  padding: 10px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  text-align: center;
}

.imagens-site {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease;
}

.imagens-site:hover {
  opacity: 0.85;
  transform: scale(1.03);
}

figcaption {
  margin-top: 10px;
  color: white;
  font-size: 0.9rem;
}

.conteudo h2 {
  text-align: center;
  margin: 2rem 0 1rem 0;
}


.botao-adicionar {
  margin-top: 10px;
  padding: 12px 25px;
  background: linear-gradient(135deg, #1e90ff, #00bfff);
  border: none;
  border-radius: 25px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 191, 255, 0.4);
  display: inline-block;
}

.botao-adicionar:hover {
  background: linear-gradient(135deg, #00bfff, #1e90ff);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 191, 255, 0.6);
}

.footer {
  background-color: #111;
  color: #ccc;
  padding: 30px 20px;
  font-size: 0.9rem;
}

.footer-top {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-column {
  flex: 1 1 200px;
  margin: 10px;
}

.footer-column h4 {
  color: white;
  margin-bottom: 15px;
  font-weight: 700;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #1e90ff;
}

.payment-methods img,
.app-links img {
  height: 30px;
  margin-right: 10px;
  vertical-align: middle;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  border-top: 1px solid #333;
  padding-top: 10px;
  color: #777;
}

.footer-bottom a {
  color: #777;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #1e90ff;
}
