body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #333;
}

.header {
  background: #C8102E; /* Vermelho Flamengo */
  color: #fff;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-weight: bold;
  font-size: 28px;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 15px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

.carousel {
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

.content {
  padding: 20px;
}

h2 {
  margin-top: 40px;
  color: #C8102E;
  font-size: 24px;
}

.products {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}



.full-banner img {
  width: 100%;
  height: auto;
  display: block;
}


.product {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  width: 200px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.product img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
}

button {
  background: #C8102E;
  color: #fff;
  border: none;
  padding: 10px;
  margin-top: 10px;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

button:hover {
  background: #a00a20;
}

.apresentacao {
  text-align: center;
  padding: 40px 20px;
  background-color: #f5f5f5;
  color: #333;
}

.apresentacao h1 {
  font-size: 36px;
  color: #C8102E;
  margin-bottom: 10px;
}

.apresentacao p {
  font-size: 20px;
}

.produtos {
  text-align: center;
  padding: 50px 20px;
}

.produtos h2 {
  font-size: 28px;
  color: #C8102E;
  margin-bottom: 40px;
}

.produtos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.produto {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  width: 220px;
  transition: all 0.3s;
}

.produto img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.produto h3 {
  font-size: 18px;
  margin: 10px 0;
}

.produto .preco {
  font-size: 20px;
  color: #C8102E;
  margin: 10px 0;
  font-weight: bold;
}

.btn-comprar {
  background-color: #C8102E;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-comprar:hover {
  background-color: #A00020;
}

.banners-duplos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 40px 0;
  background-color: #fff;
}

.banner {
  flex: 1;
  max-width: 600px;
  overflow: hidden;
  border-radius: 8px;
}

.banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.banner img:hover {
  transform: scale(1.05);
}



.mantos-container {
  text-align: center;
  padding: 40px 20px;
}

.titulo {
  color: #C8102E;
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.mantos {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.manto {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  max-width: 300px;
  position: relative;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.manto img {
  width: 100%;
  display: block;
}

.descricao {
  position: absolute;
  bottom: 10px;
  left: 10px;
  text-align: left;
  color: #fff;
}

.descricao span {
  font-weight: bold;
  font-size: 18px;
  display: block;
}

.descricao strong {
  font-size: 28px;
  display: block;
}


/* style.css ou detalhe-produto.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #000;
}

.container-produto {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    display: flex;
    gap: 50px;
    align-items: start;
}

.container-produto img {
    width: 450px;
    height: auto;
    border-radius: 10px;
}

.produto-info {
    flex: 1;
}

.produto-info h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.produto-info .preco {
    font-size: 28px;
   color: #0a0a0a;
    margin-bottom: 20px;
}

.tamanhos {
    margin: 20px 0;
}

.tamanhos span {
    display: inline-block;
    padding: 10px 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.tamanhos span:hover {
    background-color: #d71920;
    color: #000000;

    border-color: #d71920;
}

button.comprar {
    background-color: #d71920;
    color: #fff;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

button.comprar:hover {
    background-color: #a4161a;
}


.form-pagamento {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 20px auto;
  gap: 15px;
}

.form-pagamento input,
.form-pagamento select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.form-pagamento button {
  padding: 12px;
  background-color: #d91b1b;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-pagamento button:hover {
  background-color: #b01515;
}

HHHHHHHHHHHHH


.produtos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* ou space-around, space-between, depende */
  gap: 20px; /* espaço entre os produtos */
}
.produto {
  width: 250px; /* Largura padrão */
  text-align: center;
}



.footer {
  background-color: #fff; /* fundo branco */
  color: #111; /* texto escuro */
  padding: 40px 20px;
  margin-top: 50px;
  width: 100%;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); /* sombrazinha pra dar destaque */
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 2px;
  color: #c8102e; /* vermelho bonito do seu logo */
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  color: #111; /* texto escuro */
  text-decoration: none;
  margin: 0 10px;
  font-size: 16px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #c8102e; /* muda pra vermelho ao passar o mouse */
}

.footer-social {
  margin-bottom: 20px;
}

.footer-social a {
  display: inline-block;
  margin: 0 8px;
}

.footer-social img {
  width: 24px;
  height: 24px;
  filter: brightness(0); /* imagens pretinhas */
  transition: filter 0.3s;
}

.footer-social img:hover {
  filter: brightness(0) saturate(100%) hue-rotate(-20deg) saturate(500%);
}

.footer-copy {
  font-size: 14px;
  color: #666;
}


.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 350px;
  background: #000;
  color: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  font-size: 14px;
}

.cookie-banner p {
  margin-bottom: 15px;
}

.cookie-banner a {
  color: #f33;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  justify-content: space-between;
}

.cookie-buttons button {
  flex: 1;
  margin: 0 2px;
  padding: 10px;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}

.cookie-buttons button:nth-child(1) {
  background: #222;
}

.cookie-buttons button:nth-child(2) {
  background: #b00000;
}

.cookie-buttons button:nth-child(3) {
  background: #c8102e;
}

.products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 40px 20px;
}

.product {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 220px;
  text-align: center;
  transition: transform 0.2s ease;
}

.product:hover {
  transform: translateY(-5px);
}

.product img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.product h3 {
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0 5px;
}

.product p {
  color: red;
  font-weight: bold;
  margin-bottom: 10px;
}

.product button,
.buy-button {
  background-color: #c8102e;
  color: white;
  border: none;
  padding: 10px 12px;
  border-radius: 6px;
  margin: 6px 0;
  cursor: pointer;
  font-weight: bold;
  width: 100%;
  text-decoration: none;
  display: inline-block;
}

.product button:hover,
.buy-button:hover {
  background-color: #a00c26;
}



aqqqqqqqqqqqqqqqqqqqqqq



.btn {
  background-color: white;
  color: #c8102e;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-left: 10px;
}


.icon {
  margin-right: 5px;
}

.icon.carrinho::before {
  content: "🛒";
}

.icon.login::before {
  content: "👤";
}

aqui tbm 



.produtos-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 40px 20px;
}

.produto {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 16px;
  width: 200px;
  text-align: center;
  transition: transform 0.2s ease;
}

.produto:hover {
  transform: translateY(-5px);
}

.produto img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.produto h2, .produto h3 {
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0 5px;
}

.produto .preco {
  color: red;
  font-weight: bold;
  margin-bottom: 10px;
}

.produto .btn-comprar,
.produto button {
  background-color: #c8102e;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  margin: 5px 0;
  cursor: pointer;
  font-weight: bold;
  width: 100%;
  text-decoration: none;
  display: inline-block;
}

.produto .btn-comprar:hover,
.produto button:hover {
  background-color: #a00c26;
}

ddddddddddddddddddddddddddddddd






/* Container da página */
body {
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Container do conteúdo centralizado */
main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

/* Caixa do formulário */
form {
  background: white;
  padding: 30px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgb(0 0 0 / 0.1);
  width: 100%;
  max-width: 400px;
}

/* Título do formulário */
form h1 {
  margin-bottom: 25px;
  color: #333;
  font-size: 26px;
}

/* Inputs */
input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1.8px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="password"]:focus {
  border-color: #C8102E;
  outline: none;
}

/* Botão */
button {
  width: 100%;
  padding: 12px 0;
  background-color: #C8102E;
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #a10b22;
}


#google_translate_element {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 9999;
  background-color: white;
  padding: 5px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}













/* Link de cadastro */
p.cadastro {
  margin-top: 15px;
  font-size: 14px;
  color: #444;
  text-align: center;
}

p.cadastro a {
  color: #0066cc;
  text-decoration: none;
  font-weight: 600;
}

p.cadastro a:hover {
  text-decoration: underline;
}









