/* =============================================================
   IMPÉRIO CARNES & FRIOS — style.css
   Estrutura:
     1. Reset & variáveis
     2. Base & utilitários
     3. Navbar
     4. Hero
     5. Stats Bar
     6. Seção Sobre
     7. Galeria
     8. Kits de Churrasco
     9. Diferenciais
    10. CTA Band
    11. Footer
    12. Floating WhatsApp
    13. Responsivo
============================================================= */

/* -------------------------------------------------------------
   1. RESET & VARIÁVEIS
------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Cores da marca */
  --red-deep:   #8B0000;
  --red-vivid:  #C1121F;
  --red-light:  #E63946;
  --charcoal:   #1A1A1A;
  --dark:       #111111;
  --dark-2:     #0A0A0A;
  --gold:       #D4A017;
  --white:      #F5F5F5;
  --gray:       #CCCCCC;
  --gray-dark:  #888888;

  /* WhatsApp */
  --wa-green:       #25D366;
  --wa-green-hover: #1ebe5d;

  /* Layout */
  --container:  1100px;
  --radius-sm:  3px;
  --radius-md:  6px;

  /* Transições */
  --transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* -------------------------------------------------------------
   2. BASE & UTILITÁRIOS
------------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 24px;
}

/* Labels de seção */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* Títulos de seção */
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 16px;
}

.section-title em {
  color: var(--red-light);
  font-style: normal;
}

/* Descrição de seção */
.section-desc {
  color: var(--gray-dark);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
}

/* Botões genéricos */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  padding: 16px 36px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition), color var(--transition);
  cursor: pointer;
}

.btn--primary {
  background: var(--red-vivid);
  color: #fff;
  box-shadow: 0 4px 20px rgba(193, 18, 31, 0.4);
}
.btn--primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(193, 18, 31, 0.5);
}

.btn--outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--dark);
}

.btn--lg {
  font-size: 1.15rem;
  padding: 18px 44px;
}

/* -------------------------------------------------------------
   3. NAVBAR
------------------------------------------------------------- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(17, 17, 17, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(193, 18, 31, 0.3);
  transition: padding var(--transition);
}

#navbar.scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-brand {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-decoration: none;
}
.nav-brand span {
  color: var(--red-light);
}

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: var(--gray);
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--wa-green);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover {
  background: var(--wa-green-hover);
  transform: translateY(-1px);
}

/* Hamburger mobile */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(17, 17, 17, 0.98);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid rgba(193, 18, 31, 0.3);
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  color: var(--gray);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-wa {
  margin-top: 8px;
  background: var(--wa-green);
  color: #fff !important;
  text-align: center;
  padding: 14px !important;
  border-radius: var(--radius-sm);
  border: none !important;
}

/* -------------------------------------------------------------
   4. HERO
------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
  background:
    linear-gradient(170deg, rgba(139, 0, 0, 0.55) 0%, rgba(17, 17, 17, 0.95) 60%),
    url('https://images.unsplash.com/photo-1558030006-450675393462?w=1400&q=80') center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212, 160, 23, 0.4);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -1px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hero h1 em {
  color: var(--red-light);
  font-style: normal;
}

.hero-sub {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.7rem);
  font-weight: 400;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-desc {
  font-size: 1.05rem;
  color: #AAAAAA;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* -------------------------------------------------------------
   5. STATS BAR
------------------------------------------------------------- */
.stats-bar {
  background: var(--red-deep);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

/* -------------------------------------------------------------
   6. SOBRE
------------------------------------------------------------- */
.sobre-section {
  background: var(--charcoal);
}

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

/* --- Fotos do estabelecimento --- */
.sobre-fotos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 180px;
  gap: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.foto-slot {
  background: var(--dark);
  border: 2px dashed rgba(193, 18, 31, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), background var(--transition);
}
.foto-slot:hover {
  border-color: rgba(193, 18, 31, 0.7);
  background: rgba(193, 18, 31, 0.05);
}

.foto-slot--principal {
  grid-column: 1 / -1;
  grid-row: 1;
}

/* Slot já com foto real */
.foto-slot--filled {
  border: none;
  cursor: default;
}
.foto-slot--filled:hover {
  border: none;
  background: var(--dark);
}

.foto-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.foto-input {
  display: none;
}

.foto-slot__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.foto-slot__icon  { font-size: 2rem; opacity: 0.5; }
.foto-slot__label { font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); font-weight: 600; }
.foto-slot__hint  { font-size: 0.72rem; color: rgba(255,255,255,0.25); }

/* --- Texto sobre --- */
.sobre-text .section-desc {
  max-width: 100%;
}

.valores {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.valor-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.valor-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(193, 18, 31, 0.15);
  border: 1px solid rgba(193, 18, 31, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.valor-body h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.valor-body p {
  font-size: 0.85rem;
  color: var(--gray-dark);
  line-height: 1.5;
}

/* -------------------------------------------------------------
   7. GALERIA
------------------------------------------------------------- */
.galeria-section {
  background: var(--dark);
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 180px;
  gap: 10px;
}

.galeria-item {
  background: var(--charcoal);
  border: 2px dashed rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: border-color var(--transition);
}
.galeria-item:hover {
  border-color: rgba(212, 160, 23, 0.4);
}

.galeria-item--destaque {
  grid-column: 1 / 3;
}

/* Item já com foto real */
.galeria-item--filled {
  border: none;
  cursor: default;
}
.galeria-item--filled:hover {
  border: none;
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.galeria-item__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 1;
}
.galeria-item__icon  { font-size: 1.6rem; opacity: 0.4; }
.galeria-item__label { font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); font-weight: 600; }

/* -------------------------------------------------------------
   8. KITS DE CHURRASCO
------------------------------------------------------------- */
.kits-section {
  background: var(--charcoal);
}

/* ---------- CARROSSEL DE KITS ---------- */
.kits-carousel {
  --per-view: 3;
  --gap: 24px;
  position: relative;
}

.kits-viewport {
  overflow: hidden;
}

.kits-track {
  display: flex;
  gap: var(--gap);
  transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: transform;
}

.kits-track .kit-card {
  flex: 0 0 calc((100% - (var(--per-view) - 1) * var(--gap)) / var(--per-view));
  min-width: 0;
}

/* Setas */
.kits-arrow {
  position: absolute;
  top: 38%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.75);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}
.kits-arrow:hover {
  background: var(--red-vivid);
  border-color: var(--red-vivid);
}
.kits-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}
.kits-arrow--prev { left: -18px; }
.kits-arrow--next { right: -18px; }

/* Dots */
.kits-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.kits-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s ease;
}
.kits-dot.is-active {
  width: 26px;
  border-radius: 6px;
  background: var(--red-vivid);
}

@media (max-width: 900px) {
  .kits-carousel { --per-view: 2; }
}
@media (max-width: 620px) {
  .kits-carousel { --per-view: 1; }
  .kits-arrow--prev { left: 4px; }
  .kits-arrow--next { right: 4px; }
}
@media (prefers-reduced-motion: reduce) {
  .kits-track { transition: none; }
}

.kit-card {
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.kit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(193, 18, 31, 0.5);
}

.kit-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--red-vivid);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
}
.kit-badge--gold {
  background: var(--gold);
  color: var(--dark);
}

/* Mídia do kit: mostra a arte inteira (9:16) sem cortar,
   com o fundo preenchido por uma cópia desfocada da própria imagem. */
.kit-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0b0b0b;
}
.kit-media__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
  filter: blur(26px) brightness(0.4);
}
.kit-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: zoom-in;
}

/* Lupa que aparece ao passar o mouse sobre a arte */
.kit-media__zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.kit-card:hover .kit-media__zoom {
  opacity: 1;
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 32px 16px;
  background: rgba(0, 0, 0, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: min(92vw, 620px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  transform: scale(0.96);
  transition: transform 0.3s ease;
}
.lightbox.is-open .lightbox__img {
  transform: scale(1);
}

.lightbox__caption {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  pointer-events: none;
}

.lightbox__btn {
  position: absolute;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.85);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.lightbox__btn:hover {
  background: var(--red-vivid);
  border-color: var(--red-vivid);
}
.lightbox__btn--close { top: 20px; right: 20px; }
.lightbox__btn--prev  { left: 20px;  top: 50%; transform: translateY(-50%); }
.lightbox__btn--next  { right: 20px; top: 50%; transform: translateY(-50%); }

@media (max-width: 620px) {
  .lightbox__btn--prev { left: 8px; }
  .lightbox__btn--next { right: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  .lightbox,
  .lightbox__img { transition: none; }
}

.kit-body {
  padding: 24px;
}

.kit-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.kit-desc {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.6;
  margin-bottom: 16px;
}

.kit-items {
  list-style: none;
  margin-bottom: 20px;
}
.kit-items li {
  font-size: 0.85rem;
  color: var(--gray);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}
.kit-items li::before {
  content: '★';
  color: var(--gold);
  font-size: 0.6rem;
}

.kit-price {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}
.kit-price small {
  font-size: 0.9rem;
  color: var(--gray-dark);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.btn-kit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--wa-green);
  color: #fff;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background var(--transition);
}
.btn-kit:hover {
  background: var(--wa-green-hover);
}

/* -------------------------------------------------------------
   9. DIFERENCIAIS
------------------------------------------------------------- */
.diferenciais-section {
  background: var(--dark);
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 56px;
}

.diff-card {
  text-align: center;
  padding: 32px 20px;
}

.diff-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(193, 18, 31, 0.15);
  border: 1px solid rgba(193, 18, 31, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.diff-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--white);
}

.diff-text {
  font-size: 0.88rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

/* -------------------------------------------------------------
   10. CTA BAND
------------------------------------------------------------- */
.cta-band {
  background: linear-gradient(135deg, var(--red-deep) 0%, var(--charcoal) 100%);
  padding: 80px 24px;
  border-top: 1px solid rgba(193, 18, 31, 0.3);
  border-bottom: 1px solid rgba(193, 18, 31, 0.3);
}

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

.cta-band__desc {
  color: #AAAAAA;
  max-width: 480px;
  margin: 0 auto 40px;
  font-size: 1rem;
  line-height: 1.7;
}

/* -------------------------------------------------------------
   11. FOOTER
------------------------------------------------------------- */
.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 56px 24px 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__logo {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.footer__logo em {
  color: var(--red-light);
  font-style: normal;
}

.footer__brand p {
  font-size: 0.88rem;
  color: #777777;
  line-height: 1.7;
}

.footer__social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform var(--transition), opacity var(--transition);
}
.social-btn:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}
.social-btn--instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}
.social-btn--whatsapp {
  background: var(--wa-green);
}

.footer__col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__col ul {
  list-style: none;
}
.footer__col ul li {
  margin-bottom: 10px;
}
.footer__col ul li a {
  font-size: 0.88rem;
  color: #777777;
  text-decoration: none;
  transition: color var(--transition);
}
.footer__col ul li a:hover {
  color: var(--white);
}

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: #555555;
}
.footer__bottom a {
  color: #555555;
  text-decoration: none;
  transition: color var(--transition);
}
.footer__bottom a:hover {
  color: var(--gold);
}

/* -------------------------------------------------------------
   12. FLOATING WHATSAPP
------------------------------------------------------------- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wa-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float svg {
  width: 28px;
  height: 28px;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

/* -------------------------------------------------------------
   13. RESPONSIVO
------------------------------------------------------------- */
@media (max-width: 960px) {
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sobre-fotos {
    grid-template-rows: 200px 150px;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  #navbar {
    padding: 14px 20px;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }

  .stats-bar {
    flex-direction: column;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .stat-item:last-child {
    border-bottom: none;
  }

  .galeria-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }
  .galeria-item--destaque {
    grid-column: 1 / -1;
  }

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

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

@media (max-width: 480px) {
  section {
    padding: 64px 16px;
  }
  .sobre-fotos {
    grid-template-columns: 1fr;
    grid-template-rows: 200px 150px 150px;
  }
  .foto-slot--principal {
    grid-column: 1;
  }
  .galeria-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 160px);
  }
  .galeria-item--destaque {
    grid-column: 1;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}
