/* Reset básico */
* {
  margin: 1;
  padding: 0;
  box-sizing: border-box;
}

/* Remover o header dos mobiles */

@media (max-width: 768px) {
  .header {
    display: none;
  }
} 

/* Remover o header dos mobiles */

/* CSS Menu Hamburguer da pagina inicial */

.hamburger-menu {
  position: relative;
  margin-left: 20px;
  margin-right: 20px;
}

#hamburgerBtn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
}

/* Dropdown do menu */
.hamburger-dropdown {
  display: none;
  position: absolute;
  top: 40px;
  right: 0;
  background-color: white;
  border: 1px solid #ddd;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  z-index: 1000;
}

.hamburger-dropdown a {
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  white-space: nowrap;
  display: inline-block;
  transition: color 0.3s ease, background-color 0.7s ease;
}

.hamburger-dropdown a:hover {
  background-color: #f0f0f0;
  color:#ff4e91;
}

/* CSS Menu Hamburguer da pagina inicial */

.logo-img {
  height: 60px;
  width: auto;
  vertical-align: middle;
  max-width: 150px;
}

.banner-inicial {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  justify-content: center;
}

.banner-inicial img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

html {
  scroll-behavior: smooth;
}

/* Estilo do corpo */
body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

.destaques {
  background-color: #fff7f9;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.destaques .titulo h2 {
  font-size: 3.5rem;
  color: #ff4e91;
  margin-bottom: 10px;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
}

.destaques .titulo p {
  color: #5c5c5c;
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto 40px;
  font-family: 'Playfair Display', serif;
  font-weight: bold;
}

.carrossel {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.produto {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 20px;
  width: 300px;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.produto:hover {
  transform: translateY(-5px);
}

.produto img {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  object-fit: contain;
}

.imagem-container {
  height: 220px; /* altura fixa */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* impede que imagens maiores quebrem o layout */
  padding: 10px;
}

.imagem-container img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.produto img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.produto:hover img {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&display=swap');

.servicos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 60px 20px;
  background-color: #fff7f9;
  text-align: center;
  gap: 30px;
  font-family: 'Playfair Display', serif;
  margin-top: 40px;
}

.servico {
  flex: 1 1 200px;
  max-width: 250px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}

.servico:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
  background-color: #fff7f9;
}

html {
  scroll-behavior: smooth;
}

.servico img {
  width: 40px;
  /* Já está correto */
  height: 40px;
  /* Já está correto */
  margin-bottom: 20px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.servico:hover img {
  opacity: 1;
}

.servico h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #222;
}

.servico p {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}

.category-showcase {
  padding: 60px 0;
  background-color: #fff7f9;
    margin-top: 40px;
}

.category-showcase .container {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}


.category-item {
  flex: 1;
  text-align: center;
  position: relative;
  overflow: hidden;
}


.category-item img {
  width: 120px;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  transition: transform 0.3s ease;
}

.category-item:hover img {
  transform: scale(1.05);
}

.category-item .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: transparent;
  color: #333333;
  text-decoration: none;
  border: 1px solid #333;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
}

.category-item .btn:hover {
  background-color: #ff5c93;
  color: #fff;
}


@media (max-width: 768px) {
  .category-showcase .container {
    flex-direction: column;
    align-items: center;
  }

  .category-item {
    margin-bottom: 30px;
    width: 100%;
    max-width: 400px;
  }
}

.produto h3 {
  font-size: 1.2rem;
  color: #333;
  margin-top: 15px;
  font-size: 20px;
}

.produto p {
  font-size: 0.95rem;
  color: #777;
  margin: 10px 0;
}

.produto .preco {
  font-size: 1rem;
  color: #ff4e91;
  margin: 10px 0;
  font-weight: bold;
  margin-top: 20px;
}

.preco {
  font-weight: bold;
}

.produto a {
  display: inline-block;
  margin-top: 10px;
  color: #ff4e91;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid #ff4e91;
  transition: 0.3s;
}

.produto a:hover {
  color: #d93c75;
  border-color: #d93c75;
}



/* Header Styles */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.menu-btn {
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s;
}

.menu-btn:hover {
  background: var(--secondary);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  margin-right: auto;
  /* Empurra a logo para a esquerda */
  padding-left: 20px;
  /* Espaçamento da borda */
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 50%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  animation: glow 2s ease-in-out infinite alternate;
}

.logo h1 {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 50%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.nav {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  font-size: 1.1rem;
  font-family: 'Oswald';
  margin: 0 15px;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: #000000;
  /* ou sua cor desejada */
  padding: 4px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: #ff4eb5;
  /* Rosa */
  transform: scaleX(0);
}


.nav-link:hover::after {
  transform: scaleX(1);
}


.nav-link:hover {
  color: #ff4eb5;
  /* opcional, muda a cor do texto também */
}

/* Header */

.search-container {
  flex: 1;
  max-width: 28rem;
  margin: 0 2rem;
}

.search-box {
  position: relative;
  width: 100%;
}

.search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.search-input {
  width: 100%;
  padding: 0.5rem 0.75rem 0.5rem 2.5rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  background: white;
  font-size: 0.875rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(236, 84, 144, 0.1);
}

.mobile-search {
  margin-top: 1rem;
}

.actions {
  display: flex;
  gap: 0.5rem;
}

.action-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.2s;
  position: relative;
}

.action-btn:hover {
  color: var(--primary);
  background: var(--secondary);
}

.cart-count {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
}

/* Menu hambúrguer */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  margin-right: 30px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #333;
}

/* Estilo para a nova seção "New Collections" com imagem */
.new-collections {
  background-image: url('/imagens/imagemdocomeco.png');
  background-size: cover;
  /* cobre toda a área */
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  /* altura opcional */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.new-collections .collections-content {
  max-width: 100%;
  /* Permite que a imagem ocupe a largura máxima do contêiner */
  margin: 0 auto;
  /* Centraliza o bloco de conteúdo */
}

/* Estilo para a imagem */
.collections-image {
  display: block;
  /* Remove qualquer espaço extra abaixo da imagem */
  width: 100%;
  /* Faz a imagem ser responsiva e ocupar a largura do .collections-content */
  height: auto;
  /* Mantém a proporção da imagem */
  max-width: 1200px;
  /* Defina uma largura máxima para a imagem, se desejar */
  /* max-height: 600px; /* Defina uma altura máxima, se desejar, para controlar a altura da seção */
  object-fit: contain;
  /* Ou 'cover' dependendo de como você quer que a imagem se ajuste */
}

/* Remova os estilos específicos para h1 e p dentro de .new-collections */
.new-collections h1 {
  display: none;
  /* Ou remova completamente a regra */
}

.new-collections p {
  display: none;
  /* Ou remova completamente a regra */
}

/* Responsividade (ajuste conforme necessário) */
@media (max-width: 768px) {
  .new-collections {
    padding: 40px 15px;
    /* Ajuste o preenchimento em telas menores */
  }
}

/* Responsividade para a seção "New Collections" */
@media (max-width: 768px) {
  .new-collections {
    padding: 60px 15px;
    /* Menos preenchimento em telas menores */
    min-height: 300px;
  }

  .new-collections h1 {
    font-size: 2.5rem;
    /* Reduz o tamanho do título em telas menores */
  }

  .new-collections p {
    font-size: 1rem;
    /* Reduz o tamanho do parágrafo */
  }
}

@media (max-width: 480px) {
  .new-collections h1 {
    font-size: 2rem;
    /* Mais redução para celulares */
  }
}

/* Rodapé */

.footer {
  background-color: #000000;
  padding: 30px 0 20px 0;
  font-size: 0.9rem;
  color: #ffffff;
  border-top: 1px solid #333333;
  width: 100%;
  margin: 0;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 20px;
}

/* Brand Section */
.footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 200px;
  min-width: 200px;
}

.footer .footer-brand h3 {
  font-size: 1.3rem;
  margin: 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  color: #ffffff;
}

.footer .logo-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* Description */
.footer .footer-description {
  flex: 2 1 250px;
  margin: 0;
  font-size: 0.85rem;
  color: #cccccc;
  line-height: 1.5;
  max-width: 300px;
}

/* Links Section */
.footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 200px;
  min-width: 200px;
}

.footer .footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer .footer-link {
  color: #dddddd;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
  padding: 2px 0;
}

.footer .footer-link:hover {
  color: #ff69b4;
  text-decoration: underline;
}

/* Social Icons */
.footer .social-icons {
  display: flex;
  gap: 20px;
  flex: 1 1 250px;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footer .social-icons img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.2s ease-in-out;
}

.footer .social-icons img:hover {
  transform: scale(1.1);
}

/* Footer Bottom */
.footer .footer-bottom {
  text-align: center;
  font-size: 0.75rem;
  color: #aaaaaa;
  padding-top: 20px;
  border-top: 1px solid #333333;
  margin-top: 20px;
}

.footer .feito-por {
  text-align: center;
  font-size: 0.7rem;
  color: #888888;
  margin-top: 8px;
  font-style: italic;
}

/* Tablets */
@media (max-width: 1024px) {
  .footer .footer-content {
    gap: 25px;
  }
  
  .footer .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .footer .social-icons {
    justify-content: center;
    gap: 25px;
  }
}

/* Mobile Large (768px) */
@media (max-width: 768px) {
  .footer {
    padding: 25px 0 15px 0;
  }
  
  .footer .container {
    padding: 0 15px;
  }
  
  .footer .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }
  
  .footer .footer-brand {
    justify-content: center;
    flex: none;
    width: 100%;
  }
  
  .footer .footer-description {
    flex: none;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  
  .footer .footer-links {
    flex: none;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .footer .footer-link-group {
    flex-direction: row;
    gap: 20px;
  }
  
  .footer .social-icons {
    flex: none;
    width: 100%;
    justify-content: center;
    gap: 25px;
  }
}

/* Mobile Medium (480px) */
@media (max-width: 480px) {
  .footer {
    padding: 20px 0 15px 0;
    font-size: 0.85rem;
  }
  
  .footer .container {
    padding: 0 12px;
  }
  
  .footer .footer-content {
    gap: 20px;
  }
  
  .footer .footer-brand h3 {
    font-size: 1.1rem;
  }
  
  .footer .logo-icon img {
    width: 45px;
    height: 45px;
  }
  
  .footer .footer-description {
    font-size: 0.8rem;
    padding: 0 10px;
  }
  
  .footer .footer-links {
    gap: 15px;
  }
  
  .footer .footer-link-group {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .footer .footer-link {
    font-size: 0.8rem;
  }
  
  .footer .social-icons {
    gap: 20px;
  }
  
  .footer .social-icons img {
    width: 35px;
    height: 35px;
  }
  
  .footer .footer-bottom {
    font-size: 0.7rem;
    padding-top: 15px;
  }
  
  .footer .feito-por {
    font-size: 0.65rem;
  }
}

/* Mobile Small (320px) */
@media (max-width: 360px) {
  .footer .container {
    padding: 0 10px;
  }
  
  .footer .footer-content {
    gap: 18px;
  }
  
  .footer .footer-brand h3 {
    font-size: 1rem;
  }
  
  .footer .logo-icon img {
    width: 40px;
    height: 40px;
  }
  
  .footer .footer-description {
    font-size: 0.75rem;
  }
  
  .footer .footer-link {
    font-size: 0.75rem;
  }
  
  .footer .social-icons {
    gap: 15px;
  }
  
  .footer .social-icons img {
    width: 32px;
    height: 32px;
  }
}

/* Correção para quemsomos.css - largura excessiva */
.page-container .footer {
  width: 100% !important;
  left: auto !important;
  position: static !important;
}

/* Garantir que o footer não cause overflow horizontal */
.footer, .footer * {
  box-sizing: border-box;
}

/* Prevenir quebras de layout em containers pequenos */
.footer .footer-content > * {
  min-width: 0;
  word-wrap: break-word;
}

.footer .footer-link:focus {
  outline: 2px solid #ff69b4;
  outline-offset: 2px;
  border-radius: 2px;
}

.footer .social-icons a:focus {
  outline: 2px solid #ff69b4;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Melhorar contraste em telas pequenas */
@media (max-width: 480px) {
  .footer .footer-link {
    color: #eeeeee;
  }
  
  .footer .footer-description {
    color: #dddddd;
  }
}

/* Rodapé */


/* Seção do Carrossel de Produtos Mais Vendidos */
.best-selling-items {
  padding: 80px 20px;
  /* Preenchimento superior/inferior */
  background-color: #fff7f9;
  /* Fundo levemente diferente para destacar a seção */
  font-family: Arial, sans-serif;
  /* Fonte base */
    margin-top: 40px;
}

.best-selling-items .header-selling-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  /* Centraliza e adiciona margem inferior */
}

.best-selling-items .header-selling-items h2 {
  font-size: 1.8rem;
  font-weight: normal;
  /* Para um estilo mais clean, como na imagem */
  color: #333;
  letter-spacing: 2px;
  /* Espaçamento entre letras */
}

.best-selling-items .header-selling-items .view-all-products {
  font-size: 0.9rem;
  color: #555;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid #555;
  /* Linha de sublinhado */
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.best-selling-items .header-selling-items .view-all-products:hover {
  color: #ff69b4;
  /* Cor ao passar o mouse */
  border-color: #ff69b4;
}


.carousel-container {
  display: flex;
  align-items: center;
  /* Alinha as setas com os produtos */
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  /* Para posicionar as setas */
  overflow: hidden;
  padding: 0 50px;
  transition: transform 0.5s ease;
}

.products-wrapper {
  display: flex;
  overflow-x: auto;
  /* Permite a rolagem horizontal se houver muitos itens */
  scroll-behavior: smooth;
  /* Rolagem suave */
  -webkit-overflow-scrolling: touch;
  /* Melhora a rolagem em dispositivos móveis */
  gap: 30px;
  /* Espaçamento entre os cartões de produto */
  padding: 10px;
  /* Um pouco de padding para evitar que os itens "colem" nas bordas ao rolar */
  /* Esconder a barra de rolagem (opcional, pode variar entre navegadores) */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
  transition: opacity 0.5s ease;
  opacity: 1;
}

.products-wrapper.hidden {
  opacity: 0;
}

.products-wrapper::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.product-card {
  flex: 0 0 250px;
  /* Não cresce, não encolhe, largura base de 250px */
  background-color: #fff;
  border: 1px solid #eee;
  /* Borda sutil */
  border-radius: 5px;
  text-align: center;
  padding-bottom: 20px;
  /* Preenchimento inferior para as infos */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  /* Sutil sombra */
  transition: transform 0.3s ease;
  min-width: 250px;
  max-width: 250px;
  perspective: 1000px;
}

.product-card:hover {
  transform: translateY(-5px);
  /* Efeito de elevação ao passar o mouse */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  height: 300px;
  /* Altura fixa para as imagens dos produtos */
  object-fit: cover;
  /* Recorta a imagem para preencher a área */
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  margin-bottom: 15px;
}

.product-card .product-title {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
  text-transform: uppercase;
  /* Para combinar com a imagem */
  opacity: 0;
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    /* Faz o texto aparecer */
  }
}

.product-card .product-price {
  font-size: 1.1rem;
  color: #ff69b4;
  /* Sua cor de destaque */
  font-weight: bold;
}

.carousel-arrow {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  /* Faz um círculo */
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 1.5rem;
  color: #555;
  position: absolute;
  /* Posição absoluta em relação ao carousel-container */
  z-index: 10;
  /* Garante que as setas fiquem acima dos produtos */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.carousel-arrow:hover {
  background-color: #ff69b4;
  color: #fff;
  transform: scale(1.1);
}

.left-arrow {
  left: 10px;
  /* Posição fora do container para que fique igual a imagem */
}

.right-arrow {
  right: 10px;
  /* Posição fora do container para que fique igual a imagem */
}

/* Responsividade para o Carrossel */
@media (max-width: 1240px) {

  /* Ajusta as setas para dentro do container se a tela for menor que o max-width + margem das setas */
  .left-arrow {
    left: 0px;
  }

  .right-arrow {
    right: 0px;
  }
}

/* ... outras regras de media query abaixo ... */

/* Animação de clique para as setas do carrossel */
.carousel-arrow.clicked {
  animation: arrowClick 0.2s ease-out;
  /* Nome da animação, duração e timing function */
}

@keyframes arrowClick {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.9);
    /* Diminui um pouco para dar a sensação de "pressionar" */
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .products-wrapper {
    justify-content: flex-start;
    /* Alinha os produtos ao início em telas menores */
  }

  .product-card {
    flex: 0 0 220px;
    /* Diminui um pouco o tamanho dos cartões em mobile */
  }

  .best-selling-items .header-selling-items {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .product-card {
    flex: 0 0 90%;
    /* Ocupa quase toda a largura para exibir um produto por vez */
  }

  .carousel-arrow {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }
}

.social-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-links a {
  text-decoration: none;
  color: #ff69b4;
  font-weight: bold;
}


/* Responsividade */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #fff;
    width: 200px;
    display: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }


  nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}