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

:root {
  --amarelo: #ffe600;
  --azul: #2e3099;
  --azul-escuro: #1e2070;
  --branco: #ffffff;
  --cinza-claro: #f5f5f5;
  --cinza-medio: #e0e0e0;
  --cinza-texto: #444444;
  --sombra: 0 4px 24px rgba(46, 48, 153, 0.10);
  --radius: 12px;
  --font: 'Montserrat', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--cinza-texto);
  background: var(--branco);
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==============================
   UTILITÁRIOS
============================== */
.highlight {
  color: var(--amarelo);
  -webkit-text-stroke: 1px var(--azul);
}

.highlight--dark {
  color: var(--amarelo);
}

.tag {
  display: inline-block;
  background: var(--amarelo);
  color: var(--azul-escuro);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

/* ==============================
   BOTÕES
============================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  border: none;
}

.btn--yellow {
  background: var(--amarelo);
  color: var(--azul-escuro);
  box-shadow: 0 4px 16px rgba(255, 230, 0, 0.35);
}

.btn--yellow:hover {
  background: #f0d800;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 230, 0, 0.45);
}

.btn--white {
  background: var(--branco);
  color: var(--azul-escuro);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn--white:hover {
  background: var(--cinza-claro);
  transform: translateY(-2px);
}

.btn i {
  font-size: 1.1rem;
}

/* ==============================
   HEADER
============================== */
.header {
  background: var(--azul);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.header__logo img {
  height: 50px;
  width: auto;
}

.header__nav ul {
  display: flex;
  gap: 32px;
}

.header__nav a {
  color: var(--branco);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  position: relative;
}

.header__nav a::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--amarelo);
  width: 0;
  transition: width 0.2s;
  position: absolute;
  bottom: -4px;
  left: 0;
}

.header__nav a:hover {
  color: var(--amarelo);
}

.header__nav a:hover::after {
  width: 100%;
}

.header__cta {
  font-size: 0.88rem;
  padding: 10px 20px;
  white-space: nowrap;
}

/* ==============================
   HERO BANNER
============================== */
.hero {
  width: 100%;
  line-height: 0; /* remove espaço fantasma abaixo da imagem */
  overflow: hidden;
}

.hero__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Mobile: troca para o banner menor */
@media (max-width: 768px) {
  .hero__img {
    height: 400px; /* mantém altura; a <picture> já troca a imagem */
    object-position: center;
  }
}

/* ==============================
   SOBRE / NOSSA HISTÓRIA
============================== */
.sobre {
  padding: 90px 0;
  background: var(--branco);
}

.sobre__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sobre__texto h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--azul);
  line-height: 1.25;
  margin-bottom: 20px;
}

.sobre__texto h2 .highlight {
  color: var(--amarelo);
  -webkit-text-stroke: 1px var(--azul);
}

.sobre__texto p {
  color: var(--cinza-texto);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.destaque-frase {
  background: var(--azul);
  color: var(--branco) !important;
  padding: 16px 20px;
  border-radius: var(--radius);
  border-left: 5px solid var(--amarelo);
  font-size: 0.95rem !important;
  margin-top: 24px !important;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.destaque-frase i {
  color: var(--amarelo);
  margin-top: 3px;
  flex-shrink: 0;
}

.sobre__imagem img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--sombra);
  object-fit: cover;
  height: 650px;
}

/* ==============================
   DIFERENCIAIS
============================== */
.diferenciais {
  background: var(--azul);
  padding: 64px 0;
}

.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.diferencial__card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 230, 0, 0.2);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
}

.diferencial__card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.diferencial__card i {
  font-size: 2.4rem;
  color: var(--amarelo);
  margin-bottom: 16px;
  display: block;
}

.diferencial__card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 10px;
}

.diferencial__card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* ==============================
   LOJAS
============================== */
.lojas {
  padding: 90px 0;
  background: var(--cinza-claro);
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--azul);
  margin-bottom: 10px;
}

.section__header h2 .highlight {
  color: var(--amarelo);
  -webkit-text-stroke: 1px var(--azul);
}

.section__header p {
  color: var(--cinza-texto);
  font-size: 1rem;
}

/* CARD DA LOJA */
.loja__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--branco);
  border-radius: var(--radius);
  box-shadow: var(--sombra);
  overflow: hidden;
  margin-bottom: 40px;
  border: 1px solid var(--cinza-medio);
  transition: box-shadow 0.2s, transform 0.2s;
}

.loja__card:hover {
  box-shadow: 0 8px 40px rgba(46, 48, 153, 0.15);
  transform: translateY(-3px);
}

.loja__card--reverse {
  direction: rtl;
}

.loja__card--reverse > * {
  direction: ltr;
}

.loja__info {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.loja__numero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--amarelo);
  color: var(--azul-escuro);
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
}

.loja__info h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--azul);
  line-height: 1.3;
  margin-top: 4px;
}

.loja__detalhes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.loja__detalhes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--cinza-texto);
  line-height: 1.5;
}

.loja__detalhes li i {
  color: var(--azul);
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
}

.loja__mapa {
  height: 100%;
  min-height: 350px;
  overflow: hidden;
}

.loja__mapa iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 0;
  display: block;
}

/* Link do Instagram dentro da lista de detalhes */
.loja__detalhes li a {
  color: var(--azul);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.loja__detalhes li a:hover {
  color: #c13584; /* roxo Instagram */
  text-decoration: underline;
}

/* Ícone do Instagram com gradiente ao passar o mouse */
.loja__detalhes li:has(a) i {
  color: var(--azul);
  transition: color 0.2s;
}

.loja__detalhes li:has(a):hover i {
  color: #c13584;
}

/* ==============================
   CTA FINAL
============================== */
.cta-final {
  background: var(--azul);
  padding: 72px 0;
}

.cta-final__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-final__texto h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--branco);
  margin-bottom: 10px;
}

.cta-final__texto p {
  color: rgba(255, 255, 255, 0.80);
  font-size: 1rem;
  max-width: 100%;
}

/* ==============================
   FOOTER
============================== */
.footer {
  background: var(--azul-escuro);
  padding-top: 56px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.footer__logo img {
  height: 48px;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.footer__logo p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer__links h4,
.footer__contato h4 {
  color: var(--amarelo);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  color: rgba(255,255,255,0.70);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--amarelo);
}

.footer__contato p {
  color: rgba(255,255,255,0.70);
  font-size: 0.88rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__contato i {
  color: var(--amarelo);
}

.footer__bottom {
  padding: 20px 0;
  text-align: center;
}

.footer__bottom p {
  color: rgba(255,255,255,0.40);
  font-size: 0.80rem;
}

/* ==============================
   RESPONSIVO
============================== */
@media (max-width: 1024px) {
  .diferenciais__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sobre__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sobre__imagem img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
  }

  .header__inner {
    justify-content: space-between;
  }

  .hero {
    height: 400px;
  }

  .hero__content h1 {
    font-size: 1.8rem;
  }

  .loja__card,
  .loja__card--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .loja__mapa {
    min-height: 280px;
  }

  .loja__mapa iframe {
    min-height: 280px;
  }

  .cta-final__inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-final__texto h2 {
    font-size: 1.6rem;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .diferenciais__grid {
    grid-template-columns: 1fr;
  }

  .section__header h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .hero__content h1 {
    font-size: 1.5rem;
  }

  .loja__info {
    padding: 28px 20px;
  }

  .btn {
    font-size: 0.85rem;
    padding: 12px 20px;
  }
}