/* ═══════════════════════════════════════════════════════════
   SHOPPING DOS QUEIJOS — style.css responsivo
   Layout: sacola à esquerda · texto e botão centralizados
   ═══════════════════════════════════════════════════════════ */

/* ─── RESET ─────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: inherit;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Raleway', 'Source Sans Pro', sans-serif;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background: url('background.png') no-repeat center center;
  background-size: cover;
  position: relative;
  color: #fff;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 0, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ─── LOGO (topo, centralizado) ─────────────────────────── */
.logo {
  position: absolute;
  top: clamp(1rem, 3vw, 2.5rem);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 320px;
  display: flex;
  justify-content: center;
  z-index: 2;
}

.logo img {
  width: clamp(160px, 30vw, 291px);
  height: auto;
}

/* ─── CONTEÚDO PRINCIPAL ────────────────────────────────── */
/* Grid em 3 colunas: sacola à esquerda | texto centralizado | espaço à direita
   isso garante que o texto fique no MEIO da tela mesmo com a sacola à esquerda */
.content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  margin-top: clamp(4rem, 9vw, 7rem);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}

/* ─── SACOLA (coluna esquerda) ──────────────────────────── */
.bag {
  grid-column: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.bag img {
  width: 140%;
  max-width: clamp(280px, 38vw, 600px);
  height: auto;
  filter: drop-shadow(0px 20px 30px rgba(0, 0, 0, 0.5));
}

/* ─── TEXTO (coluna central — meio da tela) ─────────────── */
.text {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1rem, 2.4vw, 1.75rem);
  max-width: 480px;
  margin: 0 auto;
}

.text h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 4vw, 2.625rem);
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.005em;
}

.text .highlight {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  color: #e5e5e5;
  line-height: 1.45;
}

.text .small {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  color: #cfcfcf;
  line-height: 1.55;
}

/* ─── BOTÃO CTA (no centro, junto com o texto) ──────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.85rem, 2vw, 1rem) clamp(1.75rem, 4vw, 2.25rem);
  margin-top: clamp(0.5rem, 1.5vw, 0.75rem);
  border: 2px solid #f2c94c;
  border-radius: 30px;
  background: #01071f;
  color: #fff;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
  min-height: 44px;
  white-space: nowrap;
}

.btn:hover,
.btn:focus-visible {
  background: #f2c94c;
  color: #0b0f2a;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(242, 201, 76, 0.4);
  outline: none;
}

.btn:active {
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   BREAKPOINTS
   ═══════════════════════════════════════════════════════════ */

/* Desktop wide */
@media (min-width: 1500px) {
  .content {
    max-width: 1500px;
  }

  .bag img {
    width: 140%;
  }

  .text {
    max-width: 520px;
  }
}

/* Tablet — diminui a sacola, mantém layout em 3 colunas */
@media (max-width: 1100px) {
  .content {
    grid-template-columns: 1fr 1.2fr 0.5fr;
    gap: 1rem;
  }

  .bag img {
    width: 140%;
  }
}

/* Tablet pequeno — colapsa em coluna única */
@media (max-width: 820px) {
  .content {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: clamp(5rem, 14vw, 7rem);
  }

  .bag {
    grid-column: 1;
    justify-content: center;
  }

  .bag img {
    max-width: clamp(260px, 55vw, 380px);
  }

  .text {
    grid-column: 1;
    max-width: 600px;
  }
}

/* Mobile */
@media (max-width: 540px) {
  .hero {
    padding: 5rem 1rem 2rem;
    justify-content: flex-start;
  }

  .logo {
    top: 1.25rem;
    max-width: 220px;
  }

  .logo img {
    width: clamp(150px, 45vw, 200px);
  }

  .content {
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .bag img {
    max-width: clamp(220px, 65vw, 300px);
  }

  .text {
    gap: 0.9rem;
  }

  .btn {
    width: 100%;
    max-width: 320px;
  }
}

/* Mobile extra-pequeno (iPhone SE, etc.) */
@media (max-width: 360px) {
  .hero {
    padding: 4.5rem 0.75rem 1.5rem;
  }

  .logo {
    max-width: 170px;
  }

  .logo img {
    width: 140px;
  }

  .bag img {
    max-width: 200px;
  }

  .text h1 {
    font-size: 1.4rem;
  }

  .text .highlight {
    font-size: 1rem;
  }

  .text .small {
    font-size: 0.9rem;
  }
}

/* Paisagem em mobile (telas baixas) */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 4rem 2rem 1.5rem;
  }

  .logo {
    top: 0.75rem;
    max-width: 160px;
  }

  .logo img {
    width: 130px;
  }

  .content {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .bag {
    grid-column: 1;
    justify-content: flex-start;
  }

  .bag img {
    max-width: 220px;
  }

  .text {
    grid-column: 2;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
  }
}

/* Reduz animação para quem prefere */
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
  .btn:hover {
    transform: none;
  }
}
