@charset "UTF-8";

/* ============================================================
   SITE-B — STYLESHEET CONSOLIDADO
   ============================================================ */


/* ============================================================
   1. RESET
   ============================================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-color: transparent transparent;
  scrollbar-width: 0px;
  -ms-overflow-style: none;
}

*::-webkit-scrollbar { width: 0; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb { background: transparent; border: none; }

ol, li {
  list-style: none;
  margin: 0;
  padding: 0;
}


/* ============================================================
   2. VARIÁVEIS
   ============================================================ */

:root {
  /* Colors */
  --color-primary:       #0D3B66;
  --color-secondary:     #F4D35E;
  --color-background:    #FAF0CA;
  --color-text:          #0D3B66;
  --color-border:        #0D3B66;
  --color-interest-button: #F63E02;
  --color-border-subtle: rgba(0, 0, 0, 0.15);

  /* Typography */
  --font-family-heading: 'Chango', cursive;
  --font-family-body:    'Lilita One', cursive;

  /* Border radius */
  --radius-md: 12px;
  --radius-lg: 18px;
}


/* ============================================================
   3. BASE
   ============================================================ */

html {
  height: 100%;
}

body {
  font-family: var(--font-family-body);
  background: var(--color-background);
  color: var(--color-text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding-top: 130px; /* espaço para o header fixo */
}

body.home {
  padding-top: 0;
  background: var(--color-primary);
}


/* ============================================================
   4. HEADER & NAVEGAÇÃO
   ============================================================ */

.site-header {
  background-color: var(--color-primary);
  border-bottom: 1px solid var(--color-secondary);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

/* Enable click-open dropdowns when `.open` is toggled by JS */
.gen-nav > ul > li.open > ul {
  display: block;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  gap: 16px;
}

.pagetitle {
  display: flex;
  align-items: center;
}

.pagetitle h1 {
  font-family: var(--font-family-heading);
  font-size: 52px;
  letter-spacing: 6px;
  color: var(--color-secondary);
  line-height: 1;
  white-space: nowrap;
  src: url(index.html);
}

.pagetitle h1:hover {
  cursor: pointer;
  animation: pulse-grow var(--hover-duration, 0.5s) ease;
}

/*.search-group {
   ============================================================ 

.clothes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  padding: 24px 16px;
}

.clothes-grid__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-subtle);
  background: var(--color-background);
  cursor: pointer;
  aspect-ratio: 3 / 4;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.clothes-grid__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.clothes-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.clothes-grid__item:hover img {
  transform: scale(1.04);
}

.clothes-grid__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(13, 59, 102, 0.82));
  color: var(--color-secondary);
  font-family: var(--font-family-body);
  font-size: 0.9rem;
  padding: 20px 12px 10px;
  transform: translateY(100%);
  transition: transform 0.25s ease;
}

.clothes-grid__item:hover .clothes-grid__caption {
  transform: translateY(0);
}*/
/* ============================================================
   6. HERO DA INDEX — exclusivo, não afeta outras páginas
   ============================================================ */

.site-header.home-hero {
  position: relative;
  height: 100vh;
  justify-content: space-between;
  flex: 1;
}

.home-hero .site-header-inner {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 40px 20px 20px;
  gap: 24px;
}

.home-hero .pagetitle h1 {
  font-size: clamp(72px, 14vw, 160px);
  letter-spacing: 12px;
  text-align: center;
}

.home-hero .search-group {
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
}

.home-hero #search-input {
  width: 280px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 24px;
  text-align: center;
}

.hero-tagline {
  font-family: var(--font-family-body);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--color-secondary);
}

.hero-sub {
  font-family: var(--font-family-body);
  font-size: 0.95rem;
  color: rgba(244, 211, 94, 0.75);
}

.hero-sub:hover {
  color: #F4D35E; 
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 15px;
}

.hero-cta a {
  padding: 10px 24px;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: var(--font-family-body);
  font-size: 1rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hero-contact {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: auto;
  margin-top: 30px;
  margin-bottom: 50px; 
  gap:30px;
}

.hero-contact p {
  font-family: var(--font-family-body);
  color: rgba(244, 211, 94, 0.75);
  font-size: 1.1rem;
}

.hero-contact p:hover {
  color: var(--color-secondary);
}
/* ============================================================
   7. ANIMAÇÕES
   ============================================================ */

@keyframes pulse-grow {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.1); }
}


/* ============================================================
   8. RESPONSIVO - MOBILE FIRST
   ============================================================ */

/* Tablets (768px to 1024px) */
@media (max-width: 1024px) {
  .pagetitle h1 {
    font-size: 40px;
    letter-spacing: 4px;
  }

  .hero-cta {
    gap: 8px;
  }

  .hero-cta a {
    padding: 8px 18px;
    font-size: 0.9rem;
  }
}

/* Tablets/Small Screens (480px to 768px) */
@media (max-width: 768px) {
  body {
    padding-top: 100px;
  }

  .site-header {
    min-height: auto;
  }

  .site-header-inner {
    padding: 12px 16px;
    gap: 12px;
  }

  .gen-nav > ul > li.open > ul {
    position: static;
    box-shadow: none;
    display: block;
  }

  .pagetitle h1 {
    font-size: 32px;
    letter-spacing: 3px;
  }

  .home-hero .site-header-inner {
    padding: 30px 16px 16px;
    gap: 16px;
  }

  .home-hero .pagetitle h1 {
    font-size: clamp(48px, 12vw, 80px);
    letter-spacing: 8px;
  }

  .hero-tagline {
    font-size: clamp(1rem, 2vw, 1.3rem);
  }

  .hero-sub {
    font-size: 0.85rem;
  }

  .hero-cta {
    gap: 8px;
    margin-top: 10px;
  }

  .hero-cta a {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .hero-contact {
    padding: 16px;
  }

  .hero-contact p {
    margin-bottom: 12px;
  }
}

/* Mobile (max 480px) */
@media (max-width: 480px) {
  body {
    padding-top: 80px;
  }

  .site-header-inner {
    padding: 10px 12px;
    gap: 8px;
    
  }
  .pagetitle h1 {
    font-size: 24px;
    letter-spacing: 2px;
    
  }

  .home-hero .site-header-inner {
    padding: 20px 12px 12px;
    gap: 12px;
  }

  .home-hero .pagetitle h1 {
    font-size: clamp(36px, 10vw, 56px);
    letter-spacing: 4px;
    
  }

  .hero-content {
    padding: 16px 12px;
    gap: 8px;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-sub {
    font-size: 0.8rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
    width: 100%;
  }

  .hero-cta a {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.8rem;
    text-align: center;
  }

  .hero-contact {
    padding: 12px;
    text-align: center;
  }

  .hero-contact p {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .hero-contact div {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .hero-contact a {
    font-size: 14px;
  }
}


/* ============================================================
   8. RESPONSIVO
   ============================================================ */

@media (max-width: 480px) {
  .clothes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 16px 8px;
  }
}
