@charset "UTF-8";
:root {
  --primary: #0a0a0a;
  /* Preto absoluto para contraste máximo */
  --secondary: #555555;
  /* Cinza médio para textos secundários */
  --accent: #d4af37;
  /* Opcional: Dourado sutil para detalhes, ou mantenha neutro */
  --bg-light: #f9f9f9;
  /* Fundo suave */
  --white: #ffffff;
  --border: #e5e5e5;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container-width: 1240px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  /* Curva de animação suave */
}

/* --- RESET & BASE --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  color: var(--primary);
  background-color: var(--white);
  margin: 0;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  /* Renderização de fonte nítida */
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

/* --- TOP BAR --- */
.top-bar {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* --- HEADER --- */
.site-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  /* Efeito de vidro fosco */
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header-container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
}

.logo {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.logo span {
  font-weight: 300;
  /* Contraste de peso na logo */
}

/* Navegação com efeito de sublinhado animado */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: var(--primary);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 5px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  transition: var(--transition);
}

.main-nav a:hover::after {
  width: 100%;
}

.header-icons {
  display: flex;
  gap: 25px;
  align-items: center;
  font-size: 18px;
  cursor: pointer;
}

/* --- HERO SECTION --- */
.hero-section {
  height: 85vh;
  /* Altura ligeiramente maior */
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.4) 60%, rgba(255, 255, 255, 0) 100%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 5%;
}

.hero-content {
  max-width: 550px;
  padding-left: 5%;
  animation: fadeInUp 1s ease-out;
  /* Animação de entrada */
}

.hero-subtitle {
  display: block;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 15px;
}

.hero-content h1 {
  font-size: clamp(40px, 5vw, 72px);
  /* Tamanho responsivo fluido */
  margin: 0 0 25px 0;
  font-weight: 800;
  line-height: 1.1;
  color: var(--primary);
}

.hero-content p {
  font-size: 16px;
  color: var(--secondary);
  margin-bottom: 35px;
  max-width: 400px;
}

/* Botões Modernos */
.hero-btns {
  display: flex;
  gap: 15px;
}

.btn-dark,
.btn-outline {
  padding: 16px 40px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
}

.btn-dark:hover {
  background: transparent;
  color: var(--primary);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* --- LAYOUT & GRID --- */
.container {
  max-width: var(--container-width);
  margin: 80px auto;
  padding: 0 24px;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}

.section-title h2 {
  font-size: 28px;
  margin: 0;
  font-weight: 600;
}

.section-title a {
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
}

/* Grid Inteligente */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Desktop: 4 colunas */
  gap: 30px;
  row-gap: 50px;
}

/* --- PRODUCT CARD --- */
.product-item {
  group: product;
  /* Identificador lógico */
}

.product-thumb {
  position: relative;
  overflow: hidden;
  background: #f4f4f4;
  aspect-ratio: 3/4;
  /* Proporção moderna de moda */
  margin-bottom: 20px;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s ease;
}

/* Zoom suave na imagem ao passar o mouse */
.product-item:hover .product-thumb img {
  transform: scale(1.08);
}

.quick-view {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  border: none;
  padding: 15px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateY(100%);
  /* Escondido embaixo */
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}

/* Botão sobe ao passar o mouse no CARD todo */
.product-item:hover .quick-view {
  transform: translateY(0);
}

.product-details {
  text-align: left;
}

.category {
  font-size: 10px;
  text-transform: uppercase;
  color: #888;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 8px;
}

.product-details h3 {
  font-size: 15px;
  margin: 0 0 8px 0;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.4;
}

.price {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

/* --- FOOTER --- */
.site-footer {
  background: #fcfcfc;
  border-top: 1px solid var(--border);
  padding: 100px 0 40px;
  margin-top: 120px;
  font-size: 14px;
}

.footer-container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  /* Adicionei mais uma coluna para equilíbrio */
  gap: 60px;
  padding: 0 24px;
}

.footer-col h4 {
  font-size: 13px;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 15px;
}

.footer-col a {
  color: var(--secondary);
}

.footer-col a:hover {
  color: var(--primary);
  padding-left: 5px;
  /* Sutil movimento à direita */
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--border);
  margin-top: 80px;
  padding-top: 30px;
  color: #aaa;
  font-size: 12px;
}

/* --- RESPONSIVIDADE (MEDIA QUERIES) --- */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    /* Tablet: 3 colunas */
  }
  .header-container {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  /* Ajustes Mobile */
  .header-container {
    flex-wrap: wrap;
  }
  .main-nav {
    order: 3;
    width: 100%;
    margin-top: 15px;
    display: none;
    /* Em produção, use JS para toggle */
    overflow-x: auto;
    /* Scroll horizontal se necessário */
  }
  .hero-section {
    height: 600px;
    text-align: center;
  }
  .hero-overlay {
    background: rgba(255, 255, 255, 0.85);
    /* Mais sólido no mobile para leitura */
    justify-content: center;
    padding: 0 20px;
  }
  .hero-content {
    padding-left: 0;
    margin: 0 auto;
  }
  .hero-btns {
    justify-content: center;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    /* Mobile: 2 colunas */
    gap: 15px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    /* Footer empilhado */
    gap: 40px;
    text-align: center;
  }
}
/* Animação Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=style.css.map */