* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
}

:root {
  --cor-primaria: #7b1b38;
}

img {
  max-width: 100%;
  height: auto;
}

/* ==== Mini carrossel de mensagens ==== */
#header {
  background-color: var(--cor-primaria);
  width: 100%;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

/* área visível */

.msg-slider {
  width: 100%;
  height: 34px;
  overflow: hidden;
}

/* trilho */

.msg-track {
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease;
}

/* mensagens */

.msg-item {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
}

.msg-track div {
  min-height: 34px;
}

/* animação */

@keyframes sliderMsg {
  0% {
    transform: translateY(0);
  }

  33% {
    transform: translateY(0);
  }

  38% {
    transform: translateY(-34px);
  }

  66% {
    transform: translateY(-34px);
  }

  71% {
    transform: translateY(-68px);
  }

  100% {
    transform: translateY(-68px);
  }
}

#menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;

  position: fixed;
  top: 34px;
  left: 0;
  width: 100%;

  background: white;
  z-index: 999;
}

.leftMenu {
  display: flex;
  gap: 10px;
  flex: 1;
}

.rightMenu {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex: 1;
}

.centerLogo {
  font-family: "DM Serif Display", serif;
  color: var(--cor-primaria);
  font-size: 20px;
  text-align: center;
  flex: 1;
}

#menu a {
  color: var(--cor-primaria);
  font-size: 20px;
}

#menu img {
  width: 75px;
  height: auto;
  margin: 10px 10px;
}

.banner {
  position: relative;
  overflow: hidden;
  margin-top: 90px;
}

.banner img {
  width: 100%;
  height: auto;
  display: block;
}

.banner h2 {
  position: absolute;
  top: 5%;
  right: 4%;
  color: #346d6f;
  font-size: 28px;
  max-width: 260px;
  text-align: right;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.lingerie p {
  color: var(--cor-primaria);
  font-size: 1.5rem;
  text-align: center;
  margin: 25px;
  font-weight: bold;
}

.carrossel {
  position: relative;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 40px;
  overflow: hidden;
}

.carrossel-container {
  width: 100%;
}

.carrossel-fotos {
  display: flex;
  transition: transform 0.5s ease-in-out;
  touch-action: pan-y;
}

.carrossel-fotos img {
  height: auto;
  flex: 0 0 25%;
  padding: 10px;
  border-radius: 18px;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.2);
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
  z-index: 10;
}

.arrow:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.1);
}

.left {
  left: 10px;
}

.right {
  right: 10px;
}

/* Gid Lançamento */
.lancamento p {
  color: var(--cor-primaria);
  font-size: 1.5rem;
  text-align: center;
  margin: 25px;
  font-weight: bold;
}

.produto {
  flex: 0 0 25%;
  padding: 10px;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.produto:hover {
  transform: translateY(-15px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.produto img {
  width: 100%;
  border-radius: 18px;
  transition: transform 0.4s ease;
}

.produto:hover img {
  transform: scale(1.05);
}

.produto h3 {
  font-size: 14px;
  margin-top: 8px;
  color: #333;
}

.produto .ref {
  font-size: 12px;
  color: #777;
}

.produto .preco {
  font-size: 14px;
  font-weight: bold;
  color: var(--cor-primaria);
}

/* BOTÃO WHATSAPP */
.btn-whats {
  width: 55px;
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 999;
  animation: pulseWhats 2.5s infinite;
  transition: transform 0.3s ease;
}

.btn-whats img {
  width: 100%;
  display: block;
}

/* efeito quando passa o mouse */

.btn-whats:hover {
  transform: scale(1.12);
}

/* animação profissional */

@keyframes pulseWhats {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ======= RESPONSIVIDADE =======*/
@media (max-width: 900px) {
  .produto {
    flex: 0 0 50%;
  }
}

@media (max-width: 768px) {
  .centerLogo {
    font-size: 13px;
  }

  .msg {
    font-size: 11px;
  }

  #menu a {
    font-size: 18px;
  }

  .banner h2 {
    top: 5%;
    right: 5%;
    font-size: 17px;
    max-width: 170px;
    text-align: center;
  }

  .carrossel {
    width: 95%;
  }

  .produto {
    flex: 0 0 50%;
    padding: 5px;
  }

  .btn-whats {
    width: 40px;
    bottom: 20px;
    right: 15px;
  }
}

/* ======= FOOTER =======*/

.footer {
  background: #6f0f25;
  color: white;
  margin-top: 20px;
  padding-top: 15px;
}

/* Container principal */

.footer-container {
  width: 85%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

/* Lado esquerdo */

.footer-left {
  max-width: 700px;
}

.footer-logo {
  width: 320px;
  margin-bottom: 2px;
}

.footer-left p {
  font-size: 20px;
  line-height: 1.6;
}

/* Lado direito */

.footer-right {
  text-align: left;
}

.social-title {
  font-size: 24px;
  margin-bottom: 10px;
}

/* Ícones redes sociais */

.social-icons {
  display: flex;
  justify-content: left;
  gap: 20px;
  margin-bottom: 60px;
}

.social-icons i {
  font-size: 30px;
  color: white;
  transition: 0.3s;
}

.social-icons i:hover {
  transform: scale(1.2);
}

/* Atendimento */

.titulo-atendimento {
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 35px;
}

.telefone {
  text-align: left;
  font-size: 22px;
  margin-bottom: 15px;
}

.contato {
  text-align: left;
  color: white;
  text-decoration: none;
  font-size: 18px;
}

/* Parte inferior */

.footer-bottom {
  border-top: 3px solid rgba(255, 255, 255, 0.3);
  margin-top: 30px;
  padding: 30px;
  text-align: center;
}

/* Loja segura */

.loja-segura {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.loja-segura img {
  width: 120px;
}

.loja-segura .pix {
  width: 70px;
}

.loja-segura .cadeado {
  width: 20px;
}

.loja-segura p {
  font-size: 22px;
}

/* Copyright */

.copyright {
  margin-top: 20px;
  font-size: 14px;
}

/* ===== RESPONSIVIDADE DO FOOTER ======= */

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-left {
    max-width: 100%;
  }

  .footer-left p {
    font-size: 16px;
    line-height: 1.7;
    margin-top: 10px;
  }

  .footer-right {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .social-icons {
    margin-bottom: 0;
  }

  .atendimento {
    text-align: left;
  }

  .footer-logo {
    width: 220px;
  }

  .titulo-atendimento {
    font-size: 20px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 15px;
  }

  .copyright {
    margin-top: 15px;
    font-size: 12px;
  }

  .cidade {
    margin-top: 3px;
    font-size: 14px;
  }
}
