/* Fundo geral */
body {
  background-color: #49166E;
  margin: 0;
  font-family: 'Press Start 2P', monospace;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  animation: fadeIn 1s ease-in-out;
  flex-direction: column;

}

/* Container principal */
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 140px;
  width: 100%;
  max-width: 1400px;
  padding: 40px;
  box-sizing: border-box;
  animation: slideUp 1.2s ease-in-out;
}

/* Lado esquerdo (logo + redes sociais) */
.left-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  flex-shrink: 0;
  animation: fadeIn 1.5s ease-in-out;
}

.logo {
  width: 260px;
  height: auto;
}

.social-icons {
  display: flex;
  gap: 25px;
  justify-content: center;
  animation: fadeIn 1.8s ease-in-out;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
}

/* Lado direito (menu) */
.right-side {
  display: flex;
  justify-content: center;
  animation: fadeIn 2s ease-in-out;
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 340px;
  text-align: center;
}

/* Itens do menu */
.menu li {
  font-size: 14px;
  letter-spacing: 1.5px;
  transition: transform 0.2s ease, opacity 0.3s ease;
}

/* Cores do menu */
.menu li.purple {
  background-color: #7204D7;
  color: white;
}

.menu li.black {
  background-color: black;
  color: white;
}

/* Links dentro do menu */
.menu a {
  color: white;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  padding: 24px 10px;
}


/* Hover */
.menu li:hover {
  opacity: 0.9;
  transform: scale(1.05);
  cursor: pointer;
}

/* Animações */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsividade para tablets e laptops */
@media (max-width: 900px) {
  .container {
    flex-direction: column;
    gap: 60px;
    text-align: center;
  }

  .logo {
    width: 200px;
  }

  .menu {
    width: 260px;
  }

  .menu li {
    font-size: 12px;
    padding: 20px 8px;
  }

  .icon {
    width: 40px;
    height: 40px;
  }
}

/* Responsividade para celulares */
@media (max-width: 500px) {
  body {
    padding: 20px;
  }

  .container {
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    align-items: center;
  }

  .menu {
    width: 200px;
  }

  .menu li {
    padding: 15px 5px;
    font-size: 14px;
  }

  .logo {
    width: 140px;
  }

  .social-icons {
    gap: 15px;
  }
}

/* TELA ULTRALARGA (1600px ou mais) */
@media (min-width: 1600px) {
  .container {
    gap: 200px;
    max-width: 1800px;
  }

  .logo {
    width: 320px;
  }

  .menu {
    width: 420px;
  }

  .menu li {
    font-size: 16px;
  }

  .icon {
    width: 60px;
    height: 60px;
  }
}
/* Container principal da página Sobre */
.sobre-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Seção Hero */
.sobre-hero {
    background-color: #49166E;
    font-family: 'Press Start 2P', monospace;
    color: white;
    text-align: center;
    padding: 20px 20px;
    width: 100%;
    animation: fadeIn 1s ease-in-out;
}

/* Bloco branco */
.sobre-bloco-branco {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: #F4F0FE;
    color: #333;
    padding: 20px;
    width: 100%;
    flex-wrap: wrap;
    animation: slideUp 1.2s ease-in-out;
}

.sobre-bloco-branco .sobre-texto {
    max-width: 600px;
    padding: 20px;
    font-family: "Varela Round", sans-serif;
}

.sobre-bloco-branco .sobre-imagem img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

/* Bloco roxo */
.sobre-bloco-roxo {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    background-color: #49166E;
    color: white;
    padding: 60px 20px;
    width: 100%;
    flex-wrap: wrap;
    animation: fadeIn 1.2s ease-in-out;
}

.sobre-bloco-roxo .sobre-texto-roxo {
    flex: 1 1 400px;
    max-width: 600px;
    padding: 20px;
    font-family: "Varela Round", sans-serif;
}

.sobre-bloco-roxo .sobre-imagem-roxa img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
}

/* Botão */
.botao {
    background-color: white;
    color: #4b0082;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}
.botao:hover {
    background-color: #eee;
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Responsividade */
@media (max-width: 768px) {
    .sobre-bloco-branco,
    .sobre-bloco-roxo {
        flex-direction: column;
        text-align: center;
    }

    .sobre-bloco-branco img,
    .sobre-bloco-roxo img {
        max-width: 90%;
    }
}
.varela-round-regular {
  font-family: "Varela Round", sans-serif;
  font-weight: 400;
  font-style: normal;
}
p a {
  color: inherit;        /* herda a cor do texto do parágrafo */
  text-decoration: underline; /* opcional: mantém o sublinhado padrão */
}

p a:hover {
  color: inherit;        /* mantém a cor mesmo ao passar o mouse */
  opacity: 0.9;          /* leve efeito visual opcional */
}

/* ==== MENU HAMBÚRGUER ==== */
.hamburger-menu {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 20;
}

/* Ícone de abrir */
.menu-icon {
  font-size: 2rem;
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-icon:hover {
  transform: scale(1.1);
}

/* Overlay (fundo escuro ao abrir o menu) */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 9;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Menu lateral */
.menu-content {
  position: fixed;
  top: 0;
  left: -270px;
  width: 250px;
  height: 100%;
  background-color: #49166E;
  padding-top: 80px;
  transition: left 0.3s ease;
  z-index: 10;
}

/* Cores do menu */
.menu-content li.purple {
  background-color: #7204D7;
  color: white;
}

.menu-content li.black {
  background-color: black;
  color: white;
}

.menu-content.active {
  left: 0;
}

/* Ícone de fechar (X) */
.close-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* Estilo da lista */
.menu-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-content li {
  margin: 0 0;
}

.menu-content a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 10px 20px;
  display: block;
  transition: background-color 0.2s ease;
}

.menu-content a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ==== RESPONSIVIDADE ==== */
@media (max-width: 768px) {
  .menu-content {
    width: 220px;
  }

  .menu-content a {
    font-size: 1rem;
  }

  .menu-icon {
    font-size: 1.8rem;
  }

  .close-icon {
    font-size: 1.8rem;
  }
}


/* --- SEÇÃO CAMISETAS --- */
.camisetas-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: white;
}

.camisetas-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* preenche a tela mantendo proporção */
  object-position: center; /* centraliza a imagem */
  max-width: 100%;
  max-height: 100%;
}


.camisetas-hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.camisetas-hero p {
  font-size: 1.2em;
  opacity: 0.9;
}

/* --- BLOCOS PRINCIPAIS --- */
.camisetas-bloco {
  width: 100%;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 10vh;
  animation: slideUp 1s ease;
  flex-direction: column;
}

.camisetas-bloco.branco {
  background: #fff;
  color: #333;
}

.camisetas-bloco.roxo {
  background: #49166E;
  color: #fff;
  font-family: "Varela Round", sans-serif;
}

.camisetas-conteudo {
  display: flex;
  flex-direction: row-reverse;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.camisetas-tamanho {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}


.camisetas-conteudo.invertido {
  flex-direction: row-reverse;
}

.camisetas-imagem {
  flex: 1;
  min-height: 350px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.camisetas-texto {
  flex: 1;
  font-family: "Varela Round", sans-serif;
}
.camisetas-texto-branco {
  flex: 1;
  font-family: "Varela Round", sans-serif;
  color: #fff;
}

.camisetas-texto h2 {
  font-size: 2em;
  margin-bottom: 15px;
}

.camisetas-texto p {
  font-size: 1.1em;
  line-height: 1.6;
}


/* --- RESPONSIVIDADE --- */

/* Tablets (até 1024px) */
@media (max-width: 1024px) {
  .camisetas-hero {
    padding: 80px 15px;
  }

  .camisetas-hero h1 {
    font-size: 2.2em;
  }

  .camisetas-bloco {
    padding: 60px 15px;
  }

  .camisetas-conteudo {
    flex-direction: column;
    text-align: center;
  }

  .camisetas-imagem {
    width: 90%;
    min-height: 300px;
    margin: 0 auto 30px;
  }

  .camisetas-texto h2 {
    font-size: 1.8em;
  }

  .camisetas-texto p {
    font-size: 1.05em;
  }


  .galeria-item {
    flex: 1 1 calc(45% - 10px);
    height: 250px;
  }
}

/* Celulares grandes (até 768px) */
@media (max-width: 768px) {
  .camisetas-hero {
    padding: 60px 10px;
  }

  .camisetas-hero h1 {
    font-size: 2em;
  }

  .camisetas-hero p {
    font-size: 1em;
  }

  .camisetas-bloco {
    min-height: auto;
    padding: 60px 10px;
  }

  .camisetas-conteudo {
    flex-direction: column;
    text-align: center;
  }

  .camisetas-imagem {
    width: 100%;
    min-height: 250px;
    margin-bottom: 25px;
  }

  .camisetas-texto h2 {
    font-size: 1.6em;
  }

  .camisetas-texto p {
    font-size: 1em;
  }

  .galeria-item {
    width: 100%;
    height: 220px;
  }
}

/* Celulares pequenos (até 480px) */
@media (max-width: 480px) {
  .camisetas-hero h1 {
    font-size: 1.8em;
  }

  .camisetas-texto h2 {
    font-size: 1.4em;
  }

  .camisetas-texto p {
    font-size: 0.95em;
  }

  .galeria-item {
    width: 100%;
    height: 200px;
  }
}

/* --- ANIMAÇÕES --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==== GALERIA DE IMAGENS ==== */
.galeria-bloco {
  background-color: #ffffff; /* ou #5c358d, dependendo do bloco */
  color: #000;
  padding: 20px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.galeria-conteudo {
  max-width: 1000px;
  width: 100%;
  text-align: center;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
  justify-items: center;
}

.galeria-grid img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeria-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ==== Responsividade ==== */
@media (max-width: 900px) {
  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .galeria-grid img {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 600px) {
  .galeria-grid {
    grid-template-columns: 1fr;
  }

  .galeria-grid img {
    width: 90%;
    height: auto;
  }
}

/* ==== BLOCO DE DUAS COLUNAS ==== */
.texto-duas-colunas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #49166E; /* altere para #5c358d se quiser um bloco roxo */
  color: #ffffff;
  font-family: "Varela Round", sans-serif;
  }

.texto-duas-colunas .coluna {
  text-align: left;
  font-size: 1rem;
  line-height: 1.6;
}

.texto-duas-colunas h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* ==== Responsividade ==== */
@media (max-width: 900px) {
  .texto-duas-colunas {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .texto-duas-colunas .coluna {
    text-align: center;
  }
}
/* ==== BOTÃO ROXO ==== */
.botao-roxo {
  display: inline-block;
  align-content: center;
  background-color: #5c358d;
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.botao-roxo:hover {
  background-color: #7a4fb8;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
/* ==== BOTÃO WHATSAPP ==== */
.botao-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #25D366;
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.botao-whatsapp:hover {
  background-color: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.icone-whatsapp {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* ==== GALERIA TAMANHOS ==== */
.galeria-tamanhos {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.galeria-tamanhos img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-position: top; /* 🔹 Mostra o topo da imagem */
}

.galeria-tamanhos img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* ==== LIGHTBOX TAMANHOS ==== */
.lightbox-tamanhos {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  animation: fadeInTamanhos 0.4s ease;
}

.lightbox-tamanhos:target {
  display: flex;
}

.lightbox-tamanhos img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(255,255,255,0.3);
  animation: zoomInTamanhos 0.4s ease;
}

.fechar-tamanhos {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 2.5rem;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease;
}

.fechar-tamanhos:hover {
  color: #ff4d4d;
}

/* ==== ANIMAÇÕES TAMANHOS ==== */
@keyframes fadeInTamanhos {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomInTamanhos {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ==== RESPONSIVO ==== */
@media (max-width: 850px) {
  .galeria-tamanhos img {
    width: 100%;
    height: auto;
  }
}
#fechar-tam {
  display: none;
}

/* ===== CAMISETA PREÇO ===== */
.camiseta-preco {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px; /* Espaço entre as colunas */
  margin: 50px auto;
  max-width: 1000px;
  flex-wrap: wrap; /* Responsivo: empilha em telas pequenas */
  padding: 0 20px;
  color: #383636;
}

.camiseta-preco-coluna {
  background-color: #ffffff;
  border-radius: 10px;
  flex: 1;
  min-width: 300px; /* Garante boa aparência no mobile */
  padding: 40px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.camiseta-preco-coluna p {
  font-size: 1.1rem;
  line-height: 3;
  margin: 0;
}
.camiseta-preco-cor {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  color:#49166E;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .camiseta-preco {
    flex-direction: column;
    gap: 20px;
  }
}

.kv-ee-line {
    width: 4rem;
    height: 2px;
    border-radius: .25rem;
    background:#4b0082;
    display: inline-block;
}

.camisetas-contato {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px; /* Espaço entre as colunas */
  margin: 50px auto;
  max-width: 1000px;
  flex-wrap: wrap; /* Responsivo: empilha em telas pequenas */
  padding: 0 20px;
  color: #383636;
}

@media (max-width: 850px) {
  .camiseta-contato {
    flex-direction: column;
    gap: 20px;
  }
}