* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff;
  color: #111;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  position: fixed;
  width: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  z-index: 999;
}

.header nav a {
  color: #fff;
  font-weight: 500;
}


.logo {
  height: 50px;

}



.btn-whatsapp {
  background: #25d366;
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
}

.hero {
  height: 100vh;
  background: url("../images/banner.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 100px 40px;
  position: relative;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-text {
  position: relative;
  max-width: 500px;
}


.hero h1 {
  font-size: 48px;
}

.hero p {
  margin: 20px 0;
}


.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
}

.hero h1 span {
  color: #f5a623; /* cor laranja da identidade */
}

.hero p {
  font-size: 18px;
  margin: 20px 0 30px;
}
.btn {
  background: #000;
  color: #fff;
  padding: 14px 26px;
  border-radius: 6px;
  font-weight: bold;
}

.btn:hover {
  background: #111;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 26px;
  border-radius: 6px;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}


.btn, .btn-outline {
  padding: 12px 20px;
  text-decoration: none;
  margin-right: 10px;
}

.btn {
  background: #000;
  color: #fff;
}

.btn-outline {
  border: 2px solid #000;
  color: #000;
}

.servicos, .colecoes, .personalizados, .clientes {
  padding: 80px 40px;
  text-align: center;
}

.cards, .produtos {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.card, .produto {
  padding: 20px;
  border: 1px solid #ddd;
  width: 200px;
}

.produto img {
  width: 100%;
}

footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.whats-fixo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  padding: 15px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 22px;
}
.categoria {
  margin: 40px 0;
}

.carrossel {
  display: flex;
  align-items: center;
  gap: 10px;
}

.carrossel-track {
  display: flex;
  overflow: hidden;
  gap: 15px;
  scroll-behavior: smooth;
  width: 80%;
}

.carrossel-track img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.carrossel button {
  border: none;
  background: #000;
  color: white;
  font-size: 22px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 8px;
}
.titulo-categoria {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

/* linha estilo streetwear */
.titulo-categoria::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #000;
  margin-top: 6px;
}
.titulo-categoria {
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  border-left: 5px solid #000;
  padding-left: 12px;
}
.colecoes {
  padding: 80px 20px;
  text-align: center;
}

.colecoes h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.colecoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.colecao-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.colecao-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.colecao-card img {
  width: 100%;
  display: block;
}

.colecao-info {
  padding: 20px;
}

.colecao-info h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.colecao-info p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.colecao-info button {
  padding: 10px 22px;
  border: none;
  background: #000;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.colecao-info button:hover {
  background: #222;
}
.personalizar {
  text-align: center;
  padding: 80px 20px;
}

.form-personalizar {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-personalizar select,
.form-personalizar textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.form-personalizar textarea {
  min-height: 100px;
  resize: vertical;
}

.form-personalizar button {
  background: #000;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.form-personalizar button:hover {
  opacity: 0.85;
}
.clientes {
  padding: 80px 20px;
  text-align: center;
  background: #f8f8f8;
}

.clientes h2 {
  margin-bottom: 40px;
}

.avaliacoes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.card-cliente {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.card-cliente img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.avaliacao {
  color: #f5b301;
  font-size: 16px;
  margin-bottom: 10px;
}

.depoimento {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.nome {
  font-weight: 600;
  font-size: 13px;
}
footer {
  background: #111;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

.copy {
  font-size: 13px;
  margin-bottom: 15px;
  opacity: 0.7;
}

.social {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.9;
  transition: 0.3s;
}

.social-link:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.social-link img {
  width: 22px;
  height: 22px;
}
section, footer {
  scroll-margin-top: 100px;
}
/* MODAL */

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal-content {
  background: #fff;
  max-width: 900px;
  width: 90%;
  border-radius: 12px;
  padding: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  position: relative;
}

.close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  cursor: pointer;
}

.modal-galeria {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-galeria img {
  width: 100%;
  max-height: 350px;
  object-fit: contain;
}

/* Botões flutuantes */
.modal-galeria button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.8);
  color: #fff;
  border: none;
  font-size: 22px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
}

/* Esquerda */
.modal-galeria button:first-child {
  left: 10px;
}

/* Direita */
.modal-galeria button:last-child {
  right: 10px;
}


.modal-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-info select,
.modal-info textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.modal-info button {
  background: #000;
  color: #fff;
  padding: 12px;
  border: none;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}
@media (max-width: 700px) {

  .modal-content {
    grid-template-columns: 1fr;
  }

  .modal-galeria img {
    max-height: 250px;
  }
}
#fardamento .produto {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

#fardamento .produto:hover {
  transform: translateY(-5px);
}

#fardamento .produto img {
  width: 100%;
  max-width: 220px;
  margin-bottom: 15px;
}
#fardamento button {
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
}

#fardamento button:hover {
  background: #222;
}
.quem-somos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.quem-img img {
  max-width: 220px;
  width: 100%;
}

.quem-texto {
  max-width: 500px;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}
/* ================= RESPONSIVIDADE GLOBAL ================= */

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER MOBILE */
@media (max-width: 900px) {

  .header {
    flex-direction: column;
    gap: 15px;
    padding: 15px 20px;
  }

  .header nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero {
    padding: 120px 20px 60px;
    text-align: center;
    justify-content: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 15px;
  }

  .btn, .btn-outline {
    display: inline-block;
    margin-bottom: 10px;
  }
}

/* CARDS E PRODUTOS MOBILE */
@media (max-width: 768px) {

  .cards,
  .produtos {
    flex-direction: column;
    align-items: center;
  }

  .card,
  .produto {
    width: 100%;
    max-width: 320px;
  }

  .carrossel-track {
    width: 100%;
  }

  .carrossel-track img {
    width: 160px;
    height: 160px;
  }
}

/* QUEM SOMOS */
@media (max-width: 768px) {

  .quem-somos {
    flex-direction: column;
    text-align: center;
  }

  .quem-texto {
    max-width: 100%;
  }
}

/* FOOTER MOBILE */
@media (max-width: 600px) {

  .social {
    gap: 15px;
  }

  .social-link {
    font-size: 13px;
  }
}
