/* ===========================================================
   RESET GLOBAL E CONFIGURAÇÕES BÁSICAS
   =========================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fff;
  color: #111;
  overflow-x: hidden;
}

/* ===========================================================
   BARRA SUPERIOR PRETA (FRASES ROTATIVAS)
   =========================================================== */
.top-bar {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 6px 0;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  height: 32px;
}

/* ===========================================================
   CABEÇALHO BRANCO FIXO (MENU PRINCIPAL)
   =========================================================== */
.menu {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  height: 70px;
  border-bottom: 1px solid #e5e5e5;
  position: fixed;
  top: 32px;
  left: 0;
  width: 100%;
  z-index: 1500;
}

/* Lado esquerdo */
.menu-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  font-size: 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #111;
  transition: transform .3s;
}

.hamburger:hover {
  transform: scale(1.15);
}

/* Logo texto */
.logo-nome {
  height: 40px;
  width: auto;
  object-fit: contain;
  cursor: pointer;
  transition: opacity .3s;
}

.logo-nome:hover {
  opacity: .8;
}

/* Logo centro */
.logo {
  height: 45px;
  width: auto;
}

/* Ícones da direita */
.menu-icons {
  display: flex;
  gap: 18px;
  align-items: center;
}

.icon {
  font-size: 1.1rem;
  cursor: pointer;
  transition: opacity .3s;
}

.icon:hover {
  opacity: .6;
}

/* ===========================================================
   BANDEIRAS
   =========================================================== */
.flags {
  display: flex;
  align-items: center;
  gap: 6px;
}

.flag {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  object-fit: cover;
  cursor: pointer;
  transition: transform .2s, opacity .2s;
  border: 1px solid rgba(0,0,0,.06);
}

.flag:hover {
  transform: scale(1.1);
  opacity: .85;
}

/* ===========================================================
   MENU LATERAL — DISTRIBUIÇÃO APRIMORADA
   (substitui o bloco antigo do menu lateral)
   =========================================================== */
.side-menu {
  position: fixed;
  top: 0;
  left: -30%;                 /* mantém a largura de 30% fora da tela */
  width: 30%;                 /* NÃO alterado, conforme pedido */
  height: 100vh;
  background: rgba(0,0,0,.95);
  backdrop-filter: blur(4px);
  color: #fff;
  z-index: 2500;
  transition: all .45s cubic-bezier(.77,0,.175,1);
  padding: 80px 40px;         /* padding original mantido */
  box-shadow: 8px 0 40px rgba(0,0,0,.35);
  opacity: 0;
  visibility: hidden;

  /* Deixa o conteúdo mais organizado verticalmente */
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.side-menu.active {
  left: 0;
  opacity: 1;
  visibility: visible;
}

/* Lista interna do menu
   Agora em coluna com espaçamento controlado (gap) */
.side-menu-list {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;                  /* controla o espaço entre os itens */
}

/* Cada item do menu */
.menu-item {
  /* corrigindo typo "5x" -> "6px" para consistência */
  margin: 6px 0;
  font-weight: 300;
  transition: .3s;
}

/* Link padrão do menu */
.menu-item a {
  text-decoration: none;
  color: #f3f3f3;
  font-size: 0.98rem;         /* levemente maior para “preencher” mais */
  letter-spacing: 1.4px;      /* um pouco mais de presença */
  display: block;
  padding: 6px 0;             /* aumenta a área clicável vertical */
  line-height: 1.5;           /* deixa o bloco mais cheio, sem exagero */
  transition: .3s;
}

/* Mantém o hover original, apenas organizado */
.menu-item a:hover {
  color: #ffffff;
  background: transparent;
  letter-spacing: 2px;
  transform: translateX(4px);
}

/* Linha divisória central reequilibrada */
.menu-divider {
  border-top: 1px solid rgba(255,255,255,.06);
  margin: 24px 0 10px;        /* um pouco mais de respiro em cima */
  width: 100%;
}

/* Destaque da Central de Atendimento */
.menu-item.atendimento a {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 0.9rem;
}

/* Hover da Central de Atendimento mantido */
.menu-item.atendimento a:hover {
  background: rgba(255,255,255,.08);
}

/* Espaçamento levemente maior abaixo do STYLIST DIGITAL
   para separar o “serviço premium” do restante das categorias */
.side-menu-list .menu-item:first-child {
  margin-bottom: 14px;
}

/* ===========================================================
   MENU LATERAL — RESPONSIVIDADE
   (apenas ajustes finos de distribuição, sem mudar largura)
   =========================================================== */
@media (max-width: 768px) {
  .side-menu-list {
    gap: 6px;                 /* aproxima um pouco os itens em telas menores */
  }

  .menu-item a {
    font-size: 0.9rem;        /* segura o tamanho da fonte no mobile */
    letter-spacing: 1.2px;
  }

  .menu-item.atendimento a {
    font-size: 0.86rem;
    letter-spacing: 1.6px;
  }
}
/* ===========================================================
   POLIMENTO FINO — DISTRIBUIÇÃO ELEGANTE
   =========================================================== */

/* Melhor espaçamento entre cada item de categoria */
.side-menu-list .menu-item:not(:first-child):not(.atendimento) a {
  padding: 8px 0;  /* aumenta a área clicável */
}

/* STYLIST DIGITAL mais isolado como serviço premium */
.side-menu-list .menu-item:first-child {
  margin-bottom: 24px;   /* separa bem do restante */
}

/* Distância maior entre as categorias e a seção de atendimento */
.menu-divider {
  margin: 32px 0 18px;   /* linha com mais importância visual */
}

/* Central de Atendimento mais afastado da borda esquerda,
   dando hierarquia */
.menu-item.atendimento a {
  padding-left: 2px;     /* micro ajuste de alinhamento */
}

/* Balanceia o menu na vertical
   (evita que tudo fique grudado no topo da tela) */
.side-menu-list {
  padding-top: 16px;     /* leve descida no bloco principal */
}

/* Pequeno refinamento no hover:
   deixa mais macio e com sensação glam */
.menu-item a:hover {
  transform: translateX(6px);  /* micro movimento maior */
  letter-spacing: 2.2px;       /* comunicação mais forte */
}



/* ===========================================================
   BANNER
   =========================================================== */
.banner {
  position: relative;
  height: 720px;
  overflow: hidden;
  margin-top: calc(32px + 70px);
}

.slides {
  width: 100%;
  height: 100%;
}

.slide {
  position: relative;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Texto do interior do banner */
.banner-text {
  position: absolute;
  top: 63%;        /* desce um pouco pra ficar abaixo do subtítulo da arte */
  left: 20%;       /* desloca para a área do texto à esquerda */
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.banner-text .btn {
  margin-top: 140px;
}
.banner-text h2 {
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: none;

  background: linear-gradient(180deg, #ffffff 25%, #d6d6d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0px 6px 14px rgba(0, 0, 0, 0.35),
    0px 0px 22px rgba(255, 255, 255, 0.08);

  margin-bottom: 28px;
  opacity: 0;
  animation: fadeInText 1.4s ease forwards;
}

@keyframes fadeInText {
  from { opacity: 0; filter: blur(3px); }
  to { opacity: 1; filter: blur(0px); }
}



.btn {
  padding: 14px 42px;
  border-radius: 40px;

  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(12px);

  color: #fff;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 1px;

  cursor: pointer;
  transition: all 0.35s ease;
}

.btn:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
  box-shadow: 0px 6px 18px rgba(0,0,0,0.25);
}
.banner-slogan {
  font-size: 0.95rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  margin-bottom: -10px;
  animation: fadeInText 1.8s ease forwards;
  opacity: 0;
}



/* ===========================================================
   FORMAS DE PAGAMENTO — NOVO
   =========================================================== */
.pagamentos {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.container-pagamentos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
}

.pagamento-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: default;
  user-select: none;
  width: 160px;
}

.icone-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(0,0,0,.06);
  background: transparent;
  transition: .3s;
}

.pagamento-item img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  opacity: .93;
  transition: .35s;
  pointer-events: none;
  user-select: none;
}

.pagamento-item p {
  margin-top: 12px;
  font-size: 1rem;
  font-weight: 400;
}

.pagamento-item:hover .icone-wrapper {
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(0,0,0,.1);
  background: rgba(0,0,0,.03);
}

.pagamento-item:hover img {
  transform: scale(1.08);
  opacity: 1;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.2));
}

/* ===========================================================
   MAIS VENDIDOS — ESTILO HAUSPORT (NOVO)
   =========================================================== */
.mais-vendidos {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
}

.mais-vendidos h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 35px;
}

.produtos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  width: 95%;
  max-width: 1250px;
  margin: 0 auto;
}

.produto {
  cursor: pointer;
  transition: .3s ease;
}

.produto:hover {
  transform: translateY(-6px);
}

.produto img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  border-radius: 8px;
  background: #f8f8f8; /* fundo neutro premium */
}


.nome-produto {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 12px;
}

.cores {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.cor {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: .25s;
}

.cor:hover {
  transform: scale(1.2);
  border-color: #000;
}

/* ===========================================================
   SOBRE
   =========================================================== */
.sobre {
  text-align: center;
  padding: 70px 20px;
}

.sobre p {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===========================================================
   RODAPÉ
   =========================================================== */
.rodape {
  background: #000;
  color: #bbb;
  text-align: center;
  padding: 40px 10px;
}

.rodape p:first-child {
  color: #fff;
}

/* ===========================================================
   ANIMATIONS
   =========================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===========================================================
   RESPONSIVIDADE
   =========================================================== */
@media (max-width: 992px) {
  .produtos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .produtos {
    grid-template-columns: 1fr;
  }
}
.cores {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.cor {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.45); /* borda premium visível */
  cursor: pointer;
  transition: all 0.25s ease;
  background: #fff; /* fundo neutro caso seja cor clara */
}

.cor:hover {
  transform: scale(1.18);
  border-color: #000;
}


/* Quando selecionada (opcional, se quiser implementar depois) */
.cor.active {
  border: 2px solid #111;
}

/* Hover fino e elegante */
.cor:hover {
  transform: scale(1.15);
  border-color: #111;
}
/* PAGAMENTOS — MICROCARDS PREMIUM */
.pagamentos {
  background: #fff;
  padding: 90px 0;
  text-align: center;
}

.pagamentos-title {
  font-size: 1.35rem;
  font-weight: 300;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 42px;
  color: #111;
}

/* Container */
.pagamentos-badges {
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
}

/* Cada card de pagamento */
.badge-item {
  width: 160px;
  background: #f4f4f4;
  border-radius: 14px;
  padding: 20px 18px;
  text-align: center;
  transition: .35s ease;
  user-select: none;
}

.badge-item img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  opacity: .75;
  transition: .3s ease;
  margin-bottom: 8px;
}

.badge-item span {
  font-size: .85rem;
  color: #222;
  font-weight: 300;
  letter-spacing: 0.4px;
}

/* Hover premium */
.badge-item:hover {
  background: #e9e9e9;
  transform: translateY(-6px);
  box-shadow: 0px 8px 22px rgba(0,0,0,.08);
}

.badge-item:hover img {
  opacity: 1;
  transform: scale(1.12);
}
.mais-vendidos h3 {
  font-size: 1.35rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 42px;
  color: #111;
}
/* ===========================================================
   📱 RESPONSIVIDADE REAL — MOBILE E TABLETS
   (SEM ALTERAR O DESKTOP — APENAS COMPLEMENTO)
   =========================================================== */

/* 🔹 SIDEMENU — ocupa tela cheia no mobile */
@media (max-width: 992px) {
  .side-menu {
    left: -100% !important;
    width: 100% !important;
    top: 0 !important;
    height: 100vh !important;
    padding: 90px 32px !important;
  }
  .side-menu.active {
    left: 0 !important;
  }
  .menu-item a {
    font-size: 1.1rem !important;
    letter-spacing: 1px !important;
    padding: 12px 0 !important;
  }
  .menu-divider {
    margin: 28px 0 14px !important;
  }
}

/* 🔹 BANNER — proporcional em celulares */
@media (max-width: 992px) {
  .banner {
    height: 540px !important;
  }
  .banner-text {
    top: 58% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 90% !important;
    gap: 22px !important;
  }
  .banner-text h2 {
    font-size: clamp(2rem, 6vw, 3rem) !important;
  }
}

@media (max-width: 600px) {
  .banner {
    height: 460px !important;
  }
  .banner-text {
    gap: 16px !important;
  }
  .banner-text h2 {
    font-size: clamp(1.8rem, 7vw, 2.5rem) !important;
  }
  .banner-text .btn {
    margin-top: 0 !important;
    padding: 12px 34px !important;
    font-size: .85rem !important;
  }
}

/* 🔹 PRODUTOS — grid automático */
@media (max-width: 1250px) {
  .produtos {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 992px) {
  .produtos {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 600px) {
  .produtos {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .produto img {
    height: 290px !important;
  }
}

/* 🔹 Pagamentos — melhor espaçamento no mobile */
@media (max-width: 992px) {
  .container-pagamentos {
    gap: 50px !important;
  }
}
@media (max-width: 600px) {
  .container-pagamentos {
    gap: 28px !important;
  }
  .pagamento-item {
    width: 140px !important;
  }
  .icone-wrapper {
    width: 110px !important;
    height: 110px !important;
  }
}

/* 🔹 Tipografia geral — melhor leitura no mobile */
@media (max-width: 600px) {
  .nome-produto {
    font-size: 0.95rem !important;
  }
  .sobre p {
    font-size: 0.95rem !important;
    padding: 0 12px !important;
  }
}

/* 🔹 Footer — mais espaçamento */
@media (max-width: 600px) {
  .rodape {
    padding: 50px 14px !important;
  }
}
/* ===========================================================
   BANNER — Mobile Premium FINAL (Balanceado Visualmente)
   =========================================================== */
@media (max-width: 768px) {

  /* tamanho do banner */
  .banner { 
    height: 290px !important;
  }

  .banner-text {
    top: 38% !important; /* SOBE TODO O BLOCO */
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 90% !important;
    gap: 8px !important;
    text-align: left !important; /* alinhamento de revista */
  }

  /* Texto principal menor e sem empurrar o botão */
  .banner-text h2 {
    font-size: clamp(1.45rem, 6vw, 2.2rem) !important;
    line-height: 1.10 !important;
    max-width: 240px !important;
  }

  /* Slogan com menos altura visual */
  .banner-slogan {
    font-size: 0.65rem !important;
    letter-spacing: 2px !important;
    margin-bottom: -4px !important;
    opacity: .85 !important;
  }

  /* Botão posicionado PERFEITO — leve e menor */
  .banner-text .btn {
    margin-top: 210px !important;
    padding: 10px 26px !important;
    font-size: 0.58rem !important;
    border-radius: 38px !important;
    align-self: flex-start !important; /* botão fica com alinh. editorial */

    background: rgba(255,255,255,0.12) !important;
    border: 1px solid rgba(255,255,255,0.40) !important;
    backdrop-filter: blur(10px) !important;

    box-shadow: 0px 4px 12px rgba(0,0,0,0.20) !important;
  }

  .banner-text .btn:hover {
    background: rgba(255,255,255,0.24) !important;
  }
}
/* ===========================================================
   BOTÃO "X" — FECHAR MENU LATERAL (ESTILO YP Premium)
   =========================================================== */
.side-menu-close {
  position: absolute;
  top: 26px;
  right: 28px;
  font-size: 1.6rem;
  font-weight: 300;
  color: #ffffff;              /* branco premium */
  cursor: pointer;
  z-index: 3000;
  opacity: 0.85;
  transition: transform .35s ease, opacity .3s ease;
}

.side-menu-close:hover {
  transform: scale(1.18);
  opacity: 1;
}

/* Animação suave de saída horizontal */
.side-menu.closing {
  transform: translateX(-12%);
  transition: transform .45s cubic-bezier(.77,0,.175,1);
}

/* Responsividade — mantém posição e elegância no mobile */
@media (max-width: 992px) {
  .side-menu-close {
    top: 22px;
    right: 22px;
    font-size: 1.55rem;
  }
}
/* Cores de variação de produtos */
.cores .cor {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  margin: 0 4px;
  border: 2px solid transparent;
  transition: .25s;
}

.cores .cor.active {
  border: 2px solid #333;
  transform: scale(1.15);
}

/* Link Stylist Digital */
.stylist-link {
  font-size: 1.3rem;
  font-weight: 600;
  color: #00eaff !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: .3s;
}

.stylist-link:hover {
  padding-left: 14px;
  color: #7af9ff !important;
  text-shadow: 0 0 8px rgba(0,255,255,.6);
}


