/* ============================================================
   DISK CONCEPT — Stylesheet
   Paleta: areia #EAE6DF · branco #FAFAF8 · escuro #2C2C2C
   Tipografia: Cormorant Garamond (títulos) + Jost (corpo)
   ============================================================ */

:root {
  --sand: #EAE6DF;
  --sand-dark: #D8D3CA;
  --white: #FAFAF8;
  --dark: #2C2C2C;
  --mid: #7A7568;
  --accent: #5A5147;
  --radius: 8px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.2rem;
}

p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 1rem;
}

.eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.6rem;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px 20px;
}

.text-center { text-align: center; }

.section { background: var(--white); }
.section--sand { background: var(--sand); }
.section--charcoal { background: #606060; }
.section--charcoal h2,
.section--charcoal .eyebrow { color: rgba(255,255,255,0.75); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  height: min(100svh, 760px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  background: var(--dark);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video--desktop { display: block; }
.hero-video--mobile { display: none; }

@media (max-width: 900px) {
  .hero-video--desktop { display: none; }
  .hero-video--mobile { display: block; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding: 0 18px;
}

.main-logo {
  width: min(260px, 55vw);
  filter: brightness(0) invert(1);
}

.hero-tagline {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

.scroll-down {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.25);
  transition: transform 0.25s ease, background 0.25s ease;
  text-decoration: none;
}

.scroll-down:hover {
  transform: translateX(-50%) translateY(-2px);
  background: rgba(255,255,255,0.15);
}

.scroll-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: rgba(255,255,255,0.95);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================================
   BOTÕES
   ============================================================ */
.btn-outline {
  display: inline-block;
  margin-top: 28px;
  padding: 13px 36px;
  border: 1px solid var(--dark);
  color: var(--dark);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: background var(--transition), color var(--transition);
}

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

.btn-outline--light {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.btn-outline--light:hover {
  background: #fff;
  color: var(--dark);
}

/* ============================================================
   BOAS-VINDAS
   ============================================================ */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .welcome-grid { grid-template-columns: 1fr 1fr; }
  .container { padding: 90px 24px; }
}

.text-block p { max-width: 480px; }

/* ============================================================
   CARROSSEL 
   ============================================================ */
.carousel-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.carousel {
  display: flex;
  gap: 12px;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.carousel::-webkit-scrollbar { display: none; }
.carousel.is-dragging { cursor: grabbing; scroll-snap-type: none; }

.carousel-item {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.carousel-item img {
  width: 100%;
  height: clamp(260px, 40vw, 460px);
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  pointer-events: none;
}

.carousel-controls {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  justify-content: flex-end;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--sand-dark);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}

.carousel-btn:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

/* ============================================================
   CATEGORIAS
   ============================================================ */
.categories-grid {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}

@media (min-width: 600px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
}

.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.category-card:hover img { transform: scale(1.04); }

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,25,20,0.65) 0%, transparent 55%);
}

.category-card span {
  position: absolute;
  bottom: 20px;
  left: 22px;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  z-index: 2;
  letter-spacing: 0.02em;
}

/* ============================================================
   MARCAS
   ============================================================ */
.brands-track-wrapper {
  overflow: hidden;
  padding: 32px 0 64px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.brands-track {
  display: flex;
  width: max-content;
  animation: brandScroll 31s linear infinite;
  will-change: transform;
}

.brands-list {
  display: flex;
  align-items: center;
  gap: 40px;
}

.brands-list img {
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.35s ease;
}

.brands-list img:hover {
  filter: grayscale(0) opacity(1);
}

@keyframes brandScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.logo-box {
  max-width: 230px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 25px;
  margin-right: 55px;
}

.logo-box img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ============================================================
   INSTA
   ============================================================ */
.insta-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 32px;
}

/* ============================================================
   LOCALIZAÇÃO
   ============================================================ */
.location-grid {
  display: grid;
  gap: 32px;
  align-items: stretch;
  grid-auto-rows: minmax(min-content, auto);
}

@media (min-width: 900px) {
  .location-grid { grid-template-columns: 1fr 1fr; }
}

.map-box,
.info-box {
  min-width: 0;
}

.info-box {
  background: var(--white);
  padding: 30px 32px;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-box .btn-outline {
  align-self: flex-start;
}

.map-box {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  min-height: 420px;
  max-width: 100%;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: none;
  display: block;
}

.info-box address {
  font-style: normal;
  margin-bottom: 24px;
}

.info-box address p {
  margin-bottom: 0;
  line-height: 1.9;
}

.hours {
  margin-bottom: 4px;
  border-top: 1px solid var(--sand-dark);
  border-bottom: 1px solid var(--sand-dark);
  padding: 16px 0;
  margin-top: 8px;
}

.hours p {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--mid);
  max-width: 600px;
}

.hours p:last-child { margin-bottom: 0; }

.hours p span {
  font-weight: 500;
  color: var(--dark);
  min-width: 85px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.55);
  text-align: center;
  padding: 64px 24px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 130px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 6px;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
}

.footer-link {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
}

.footer-link a {
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}

.footer-link a:hover { color: #fff; }

.footer-copy {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVO GERAL
   ============================================================ */
@media (max-width: 900px) {
  .hero { min-height: 72svh; }
  .hero-video--desktop { display: none; }
  .hero-video--mobile { display: block; }
  .hero { background: #1e1b18 url("assets/Header.jpg") center/cover no-repeat; background-size: cover; }
  .hero-content { padding: 0 18px; }
  .main-logo { width: min(220px, 55vw); }
  .hero-tagline { font-size: 0.65rem; letter-spacing: 0.3em; }
  .btn-outline { padding: 12px 30px; }
  .carousel-item img { height: clamp(300px, 52vw, 520px); }
  .carousel-controls { justify-content: center; margin-top: 18px; }
  .carousel-btn { width: 48px; height: 48px; }
  .location-grid { grid-template-columns: 1fr; }
  .info-box { order: 1; }
  .map-box { order: 2; }
}

@media (max-width: 600px) {
  .container { padding: 64px 20px; }
  h2 { font-size: 2rem; }
  .main-logo { width: 200px; }
  .hero { min-height: 68svh; }
  .map-box { aspect-ratio: 1 / 1; min-height: 360px; }
}