/* =========================================
LOJAS HAVILAR — STYLE.CSS
Premium Furniture & Electronics Store
========================================= */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Poppins:wght@300;400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap");

/* ---- CSS VARIABLES ---- */
:root {
  --navy: #223d5b;
  --navy-dark: #162a3e;
  --navy-light: #2e5277;
  --yellow: #ffe001;
  --yellow-dark: #e6ca00;
  --white: #ffffff;
  --off-white: #faf6f4;
  --light-gray: #faf6f4;
  --mid-gray: #faf6f4;
  --text-dark: #1a1a1a;
  --text-mid: #444444;
  --text-light: #888888;
  --shadow-sm: 0 2px 12px rgba(34, 61, 91, 0.08);
  --shadow-md: 0 8px 32px rgba(34, 61, 91, 0.12);
  --shadow-lg: 0 20px 60px rgba(34, 61, 91, 0.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: "DM Serif Display", serif;
  --font-heading: "Playfair Display", serif;
  --font-body: "Poppins", sans-serif;
}

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: light;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--mid-gray);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---- UTILITY ---- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-pad {
  padding: 96px 0;
}

.section-pad-sm {
  padding: 72px 0;
}

.tag-label {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 2px;
  margin-bottom: 15px;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}

.section-header > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin: 0; /* Remove margem desnecessária */
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--navy);
  border-bottom: 1.5px solid var(--navy);
  padding-bottom: 2px;
  transition: var(--transition);
  margin-top: 12px; /* Espaçamento entre título e botão */
}

.view-all-btn:hover {
  color: var(--yellow-dark);
  border-color: var(--yellow-dark);
}

.view-all-btn svg {
  transition: transform 0.3s ease;
}

.view-all-btn:hover svg {
  transform: translateX(4px);
}

/* SCROLL REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* BUTTONS HEADER */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  padding: 15px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.btn-primary:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  color: var(--navy);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.arrow-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  transition: var(--transition);
}

.arrow-btn .arrow-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.arrow-btn:hover .arrow-icon {
  background: var(--yellow);
  border-color: var(--yellow);
}

.arrow-btn:hover .arrow-icon svg {
  transform: translateX(3px) translateY(-3px);
}

.arrow-btn .arrow-icon svg {
  transition: transform 0.3s ease;
}

/* ====================== AVISO DE MELHORIAS ====================== */
/* ====================== TELA DE MANUTENÇÃO BLOQUEADA ====================== */
.maintenance-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 61, 91, 0.97);
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    overflow: hidden;
}

.maintenance-box {
    background: var(--light-gray);
    border: 5px solid var(--yellow);
    max-width: 480px;
    margin: 20px;
    padding: 50px 35px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.maintenance-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.maintenance-box h2 {
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 18px;
    line-height: 1.2;
}

.maintenance-box p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--navy);
    margin-bottom: 30px;
}

.maintenance-info {
    font-size: 22px;
    color: var(--navy);
    margin-top: 20px;
    font-weight: 700;
}

.maintenance-info small {
    display: block;
    margin-top: 8px;
    color: var(--navy-light);
    font-size: 17px;
}

/* Impede qualquer interação com o site atrás */
body.maintenance-active {
    overflow: hidden;
}

/* ========================================= */
/* MOBILE MENU OVERLAY */
/* ========================================= */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  bottom: 0;
  width: 300px;
  list-style: none;
  background: var(--yellow);
  z-index: 999;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0; /* Remove padding superior que estava criando espaço */
}

.mobile-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-nav-item {
  border-bottom: 1px solid var(--navy-dark);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy); /* Azul também no menu mobile */
  cursor: pointer;
  transition: background 0.2s;
}

.mobile-nav-link:hover {
  background: var(--light-gray);
}

.mobile-dropdown {
  display: none;
  background: var(--yellow);
}

.mobile-dropdown.open {
  display: block;
}

.mobile-dropdown a {
  display: block;
  padding: 14px 32px;
  font-size: 20px;
  color: var(--navy);
  border-bottom: 1px solid var(--navy-dark);
  transition: color 0.2s;
  font-weight: 500 !important;
}

.mobile-dropdown a:hover {
  color: var(--navy);
  background: var(--light-gray);
}

.mobile-chevron {
  stroke: var(--navy);
  transition: transform 0.3s ease;
}

/* ========================================= */
/* 1. HEADER */
/* ========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #f6e035;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  background: #f6e035 !important;
  box-shadow: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
}

/* MEGA DROPDOWN - 4 Colunas */
.mega-dropdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;    /* AQUI AUMENTA O ESPAÇAMENTO ENTRE COLUNAS */
  padding: 35px 45px;
  min-width: 980px;
  background: white;
  border-top: 3px solid var(--navy);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 100%;
  left: 50%;    /* AQUI CENTRALIZA */
  transform: translateX(-48%);    /* AJUSTE FINO PARA FICAR BOM */
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;   /* SUAVE E SEM "PULO" */
  z-index: 100;
}

/* Para evitar pulo do menu */
.nav-item:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-48%);
}

.mega-column {
  min-height: 290px; /* Evita mudança de altura */
}

.mega-column h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 8px;
}

/* EFEITO LINHA AMARELA */
.mega-column a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: var(--navy);
  position: relative;
}

.mega-column a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.3s ease;
}

.mega-column a:hover {
  color: var(--navy);
}

.mega-column a:hover::after {
  width: 100%;
}

/* Logo */
.logo {
  height: 100px !important;
  width: auto;
}

.logo-img {
  height: 100px !important;
  width: auto;
}

/* NAV LINKS */
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 28px 18px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  position: relative;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-item {
  position: relative;
}

.nav-link:hover {
  color: #0f2a4a;
}

/* Linha amarela nos links principais (Móveis, Eletro, Sobre) */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 18px;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: calc(100% - 36px);
}

.nav-link .chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
  opacity: 0.6;
  stroke: var(--navy);
}

.nav-item:hover .chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* BOTÃO "ENTRAR EM CONTATO" NA NAV */
.nav-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--navy);
  color: var(--yellow);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 25px;
  transition: all 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  z-index: 1;
}

.nav-contact-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.nav-contact-btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact-btn span {
  position: relative;
  z-index: 1;
}

.nav-contact-btn span,
.nav-contact-btn svg {
  position: relative;
  z-index: 1;
}

.nav-contact-btn:hover {
  color: var(--navy);
}

/* Dropdown (Eletro e Sobre) */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: white;
  border-top: 3px solid var(--navy);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 100;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  color: var(--navy);
  position: relative;
}

.dropdown li a::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 20px;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.3s ease;
}

.dropdown li a:hover::after {
  width: calc(100% - 40px);
}

.dropdown li a:hover {
  background: var(--off-white);
  color: var(--navy);
}

.dropdown li:last-child a {
  border-bottom: none;
}

/* MOBILE NAV TOGGLE */
.nav-toggle {
  display: none;    /* Escondido no desktop */
  flex-direction: column;
  gap: 5.5px;
  padding: 10px 8px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3.2px;
  background: #223d5b;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* MOSTRA SÓ NO MOBILE */
@media (max-width: 992px) {
  .nav {
    display: none !important;
  }

  .nav-contact-btn {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

/* ANIMAÇÃO DO HAMBÚRGUER VIRANDO X */
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================= */
/* 2. HERO SLIDER */
/* ========================================= */
.hero {
  margin-top: 68px;
  position: relative;
  height: calc(100dvh - 68px);
  min-height: 520px;
  overflow: hidden;
}

/* Container dos slides */
.hero-slides-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  transition: transform 0.85s cubic-bezier(0.32, 0.72, 0, 1);
  will-change: transform;   /* Melhora performance */
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero-slide {
  position: relative;
  min-width: 100%;
  width: 100%;    /* Força largura exata */
  height: 100%;
  display: flex;
  align-items: center;    /* Centraliza verticalmente */
  padding-top: 0;
  flex-shrink: 0;
  overflow: hidden;   /* Bloqueia vazamento */
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  z-index: 0;
}

/* Overlay escuro em todos */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.468);
  z-index: 1;
}

/* CONTEÚDO CENTRALIZADO EM TODOS OS SLIDES */
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
  margin-top: -20px;
}

.hero-content h1 {
  font-size: clamp(70px, 8.8vw, 48px);
  line-height: 1.05;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-content h1 em {
  font-style: normal;
  color: var(--yellow);
}

.hero-content p {
  font-size: 17px;
  line-height: 1.55;
  max-width: 520px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.92);
}

/* Estilos dos textos (iguais para todos) */
.hero-content .hero-tag {
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 17px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 7px;
}

/* SLIDE CONTROLS BOTÕES DE NAVEGAÇÃO (SETAS LATERAIS ESQUERDA E DIREITA */
.hero-controls {
  position: absolute;
  top: 50%; /* ← Subi setas para cima */
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 15;
  display: flex;
  justify-content: space-between;
  padding: 0 25px;
}

.hero-ctrl-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--yellow);
  color: white;
  backdrop-filter: blur(6px);
}

.hero-ctrl-btn:hover {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
  transform: scale(1.1);
}

/* Botão */
.hero-btns .btn-primary {
  padding: 14px 32px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 12;
}

.hero-dot {
  width: 26px;
  height: 3.5px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
}

.hero-dot.active {
  background: #f6e035;
  width: 52px;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 18px; /* Desci um pouco mais */
  left: 50%; /* Lado direito */
  transform: translateX(-50%);
  text-align: center; /* Alinhamento vertical perfeito */
  color: rgba(255, 255, 255, 0.9);
  font-size: 10.8px;
  letter-spacing: 1.8px;
  z-index: 13;
  white-space: nowrap;
}

/* DICA DE ROLAGEM COM SETA ANIMADA */
.scroll-text {
  display: block;
  font-size: 12px;
  margin-bottom: -10px;
  font-weight: 600;
  color: var(--white);
}

.scroll-arrow {
  font-size: 25px;
  animation: bounce 2s infinite;
  padding-bottom: 4px;
  margin-bottom: 12px;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

/* RESPONSIVO MOBILE - HERO */
@media (max-width: 768px) {
  .hero {
    margin-top: 68px !important;
    position: relative;
    height: calc(100dvh - 82px) !important;
    min-height: 702px !important;
    overflow: hidden;
  }

  .hero-controls {
    position: absolute;
    top: 50%; /* ← Subi setas para cima */
    transform: translateY(-50%);
    left: -7px;
    right: -7px;
    z-index: 15;
    display: flex;
    justify-content: space-between;
    padding: 0 25px; /* melhora resposta ao toque */
  }

  .hero-ctrl-btn {
    transition: all 0.25s ease !important;
    -webkit-tap-highlight-color: transparent; /* remove destaque azul padrão do android */
    cursor: pointer;
    user-select: none;
  }

  /* Estado pressionado */
  .hero-ctrl-btn:active {
    background-color: var(--yellow) !important;
    color: var(--navy) !important;
    border-color: var(--yellow) !important;
    transform: scale(0.75) !important;
    box-shadow: 0 0 0 10px rgba(246, 224, 53, 0.35) !important;
  }

  /* Força ainda mais (backup) */
  .hero-controls button:active {
    background-color: #f6e035 !important;
    color: var(--navy) !important;
    transform: scale(0.82) !important;
  }

  .hero-content {
    margin-top: 0 !important;
    padding-top: 17px !important; /* ← Mude este valor para ajustar */
    padding-right: 20px !important;
    padding-bottom: 160px !important; /* espaço para as setas */
    padding-left: 20px !important;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: clamp(28px, 8.5vw, 42px) !important;
    margin-bottom: 12px;
  }

  .hero-content p {
    margin-bottom: 28px;
    font-size: 15.2px;
    line-height: 1.55;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.92);
  }

  /* Garante que todas as imagens usem cover corretamente */
  .hero-slide-bg {
    background-size: cover !important;
    background-position: center center !important;
  }

  /* Overlay escuro em todos */
  .hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.445);
    z-index: 1;
  }

  .hero-slide {
    overflow: hidden !important;
    align-items: center !important;
    padding-top: 0 !important;
  }

  /* SLIDE 3 - QUARTO */
  .hero-slide-2:nth-child(3) .hero-slide-bg,
  .hero-slide.hero-slide-2:nth-of-type(3) .hero-slide-bg {
    background-position: center 50% !important;
    background-size: cover !important;
  }

  /* SLIDE 4 - ESCRITÓRIO */
  .hero-slide-2:nth-child(4) .hero-slide-bg,
  .hero-slide.hero-slide-2:nth-of-type(4) .hero-slide-bg {
    background-position: center 82% !important;
    background-size: cover !important;
  }

  /* SLIDE 5 - ELETROS */
  .hero-slide-2:nth-child(5) .hero-slide-bg,
  .hero-slide.hero-slide-2:nth-of-type(5) .hero-slide-bg {
    background-position: center 82% !important;
    background-size: cover !important;
  }

  .hero-dots {
    bottom: 36px !important;
    margin-bottom: -12px;
  }

  .hero-scroll {
    bottom: -2px !important;
  }

  .scroll-text {
    display: block;
    font-size: 17px;
    margin-bottom: -10px;
    margin-left: -10px;
    font-weight: 600;
    color: var(--white);
  }

  .scroll-arrow {
    font-size: 27px;
    animation: bounce 2s infinite;
    padding-bottom: 25px;
    margin-bottom: 22px;
  }
}

/* ========================================= */
/* SECAO 3. CATEGORIAS POPULARES              */
/* ========================================= */
.categories-track-wrap {
  position: relative;
  padding: 25px 0 30px;
  overflow: hidden;
}

.categories-track {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* CARD */
.category-card {
  flex: 1 1 180px; /* base menor e flexível */
  max-width: 200px; /* limita pra não ficar gigante */
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

/* ÁREA DA IMAGEM */
.category-card-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background: var(--light-gray);
}

.category-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.category-card:hover .category-card-img img {
  transform: scale(1.2); /* Zoom suave, não exagerado */
}

/* TITULO DA CATEGORIA */
.category-card-label {
  font-family: Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  padding: 18px 12px 22px;
  line-height: 1.3;
}

.category-card:hover .category-card-label {
  color: var(--navy);
}

/* RESPONSIVIDADE MOBILE - SECAO CATEGORIAS POPULARES */
@media (max-width: 768px) {
  .categories-track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 10px 0 20px;
    margin-left: -24px;
  }

  .category-card {
    flex: unset;
    min-width: unset;
    width: 100%;
    background: transparent;
    cursor: default;
  }

  .category-card:hover {
    cursor: pointer;
  }

  .category-card-img {
    height: 200px; /* aumenta aqui */
    padding: 12px; /* diminui padding pra imagem crescer mais */
    background: var(--white);
  }

  .category-card-label {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 12px 5px 0;
  }

  /* remove scroll horizontal */
  .categories-track-wrap {
    overflow: visible;
    padding-left: 0;
    padding-right: 0;
  }

  .categories.section-pad {
    padding-top: 72px; /* diminui espaço de cima */
    padding-bottom: 30px;
  }

  .section-header {
    margin-bottom: 8px;
  }
}

/* ========================================= */
/* SECAO 4. COLEÇÃO EM DESTAQUE              */
/* ========================================= */
.collection {
  background: var(--navy);
  overflow: hidden;
}

.collection .section-header {
  margin-bottom: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.collection .section-header h2 {
  color: var(--mid-gray);
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
}

.collection .section-header .tag-label {
  color: var(--yellow);
  margin-bottom: 8px;
}

/* Track */
.collection-track-wrap {
  position: relative;
  padding: 0 20px;
}

/* Track Cards */
.collection-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0 25px;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}

/* scrollbar visível (estilo moderno) */
.collection-track::-webkit-scrollbar {
  height: 7px;
}

.collection-track::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

/* Agrupamento Card + Título */
.collection-item {
  display: flex;
  flex-direction: column;
  flex: 0 0 50%;
  min-width: 50%;
}

/* Card clicável */
.collection-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  flex-grow: 1;
  display: block; /* Permite ser link */
  text-decoration: none;
}

/* Cards - Desktop */
.collection-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover; /* Aqui controla a proporção da imagem */
  background-position: center; /* Centraliza melhor */
  transition: transform 0.8s ease;
}

.collection-card:hover .collection-card-bg {
  transform: scale(1.05);
}

/* Título abaixo do card */
.collection-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--yellow);
  text-align: center;
  margin-top: 12px;
  padding: 0 10px;
}

/* Hover Overlay */
.collection-card-hover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 3;
  pointer-events: none; /* Não interfere no clique do link */
}

.collection-card:hover .collection-card-hover-overlay {
  opacity: 1;
  visibility: visible;
}

.hover-content {
  text-align: center;
  width: 282px; /* Aqui ajusta a largura ou p/ fixo */
  min-height: 192px; /* Altura mínima fixa (pode ser ajustado) */
  max-height: 232px; /* Altura máxima fixa */
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.742);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Aqui evita crescimento */
}

.hover-content h3 {
  font-size: 24px;
  line-height: 1.2;
}

.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    transparent 100%
  );
  z-index: 1;
}

.collection-card-glass {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  z-index: 2;
}

.collection-card-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}

.collection-card:hover .collection-card-tag {
  opacity: 1;
  transform: translateY(0);
}

.collection-card-title {
  font-size: 22px; /* Título com tamanho fixo */
  line-height: 1.15;
  min-height: 58px; /* Garante altura mínima do título */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.collection-card-subtitle {
  font-size: 14.5px;
  min-height: 44px; /* Evita variação */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.collection-card-hover {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.collection-card:hover .collection-card-hover {
  max-height: 100px;
}

.collection-card-quote {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  font-style: italic;
  margin-bottom: 16px;
}

/* Botão "Compre agora" agora é span */
.collection-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: white;
  padding: 12px 32px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.4s ease;
  pointer-events: auto; /* Permite clique */
}

.collection-card-btn:hover {
  background: var(--yellow);
  color: var(--navy);
}

.view-all-btn-secao4 {
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-bottom: 1.5px solid var(--yellow);
  padding-bottom: 2px;
  transition: var(--transition);
  margin-top: 12px;
}

.view-all-btn-secao4:hover {
  color: var(--mid-gray);
  border-color: var(--mid-gray);
}

/* RESPONSIVIDADE MOBILE - SECAO 4. COLEÇÃO EM DESTAQUE */
@media (max-width: 768px) {
  .categories-track-wrap {
    padding: 0 40px;
  }

  .category-card {
    flex: 0 0 145px;
    min-width: 145px;
    padding: 22px 12px 16px;
  }

  .carousel-nav-btn {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .collection-card-hover-overlay {
    display: none;
  }

  .collection-track {
    flex-direction: column;
    overflow: visible;
    gap: 20px;
    padding: 0 15px;
  }

  .collection-track-wrap {
    padding: 0;
  }

  .collection-card {
    flex: unset;
    width: 100%;
    aspect-ratio: 16/11;
  }

  .collection-card-hover-overlay {
    display: none;
  }

  .collection-title {
    font-size: 1.2rem;
    margin-top: 14px;
    color: var(--yellow);
  }

  .collection-item {
    flex: 0 0 92%;
    min-width: 92%;
  }

  .view-all-btn-secao4:hover {
    color: var(--mid-gray);
    border-color: var(--mid-gray);
  }
}

/* ========================================= */
/* SECAO 5. EXPLORE NOSSA COLEÇÃO            */
/* ========================================= */
.products-section {
  background: var(--mid-gray);
}

/* Cabeçalho + Tabs centralizadas */
.products-tabs {
  display: flex;
  justify-content: center; /* Centralizado */
  gap: 8;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.products-tab {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy-light);
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
  margin-bottom: -13px;
}

.products-tab.active {
  color: var(--navy-dark);
  border-bottom-color: var(--yellow);
}

.products-tab:hover {
  color: var(--navy);
}

/* Carrossel */
.products-carousel {
  position: relative;
  min-height: 520px; /* Altura mínima fixa para evitar pulo */
}

.products-track-wrap {
  overflow: hidden;
  padding: 0 5px;
}

.products-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  padding-bottom: 15px;
}

/* Card */
.product-card {
  flex: 0 0 calc(35% - 35px); /* 2 cards por vez */
  min-width: calc(35% - 35px);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  border-color: var(--yellow);
}

/* IMAGENS */
.product-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3.1; /* Ajustado para ficar mais bonito */
  overflow: hidden;
  background: #f5f3f0;
}

.product-img-main,
.product-img-hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.product-img-hover {
  opacity: 0;
  transform: scale(1.04);
}

.product-card:hover .product-img-main {
  opacity: 0;
}

.product-card:hover .product-img-hover {
  opacity: 1;
  transform: scale(1);
}

.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  background: linear-gradient(
    135deg,
    var(--light-gray) 0%,
    var(--mid-gray) 100%
  );
}

/* Badge e Quick View */
.product-quick-view {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(34, 61, 91, 0.9);
  color: white;
  text-align: center;
  padding: 12px 0;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: 2;
}

.product-card:hover .product-quick-view {
  transform: translateY(0);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 11px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 3;
}

.badge-novo {
  background: var(--navy);
  color: var(--white);
}

.badge-top {
  background: var(--yellow);
  color: var(--navy);
}

.badge-sale {
  background: #e53935;
  color: var(--white);
}

.product-info {
  padding: 18px 20px 22px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-bottom: 6px;
}

.product-name {
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--navy-dark);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.stars {
  color: var(--yellow);
  font-size: 14px;
}

.star {
  width: 13px;
  height: 13px;
}

.star path {
  fill: var(--yellow);
}

.star.half path:first-child {
  fill: var(--yellow);
}

.star.half path:last-child {
  fill: var(--mid-gray);
}

.rating-count {
  font-size: 12px;
  color: var(--navy-light);
}

.product-price {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.price-current {
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
}

.price-original {
  font-size: 13.5px;
  color: var(--navy-light);
  text-decoration: line-through;
}

.price-discount {
  font-size: 12px;
  font-weight: 700;
  color: #e53935;
}

/* Products Nav Arrows */
.prod-nav-prev,
.prod-nav-next {
  position: absolute;
  top: 50%; /* Posição mais estável */
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yellow-dark);
  border: 1.5px solid var(--navy);
  box-shadow: var(--shadow-sm);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.prod-nav-prev {
  left: -25px;
}
.prod-nav-next {
  right: -25px;
}

.prod-nav-prev:hover,
.prod-nav-next:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--yellow-dark);
}

/* Tab Panels */
.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* RESPONSIVIDADE MOBILE - SECAO 4. COLEÇÃO EM DESTAQUE */
@media (max-width: 768px) {
  .products-tabs {
    justify-content: center;
    gap: 8px;
  }

  .products-tab {
    padding: 12px 20px;
    font-size: 17px;
    margin-top: 1px;
    font-weight: 700 !important;
  }

  /* Remove Quick View no mobile */
  .product-quick-view {
    display: none !important;
  }

  /* Cards no mobile - 2 por linha */
  .product-card {
    flex: 0 0 calc(100% - 50px);
    min-width: calc(100% - -50px);
  }

  /* Evita espaço em branco no final do carrossel */
  .products-track {
    padding-right: 20px; /* Evita cortar o último card */
  }

  .products-track-wrap {
    padding: 3.5px;
  }

  /* Products Nav Arrows */
  .prod-nav-prev,
  .prod-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--yellow-dark);
    border: 1.5px solid var(--navy);
    box-shadow: var(--shadow-sm);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
  }

  .prod-nav-prev {
    left: -25px;
  }

  .prod-nav-next {
    right: -25px;
  }

  .prod-nav-prev:hover,
  .prod-nav-next:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--yellow-dark);
  }
}

/* ================================================= */
/* SECAO 6. TEMPO LIMITADO - OFERTAS EXCLUSIVAS      */
/* ================================================= */
.offers {
  background: var(--navy);
  padding-top: 60px;
  padding-bottom: 80px;
}

.offers .section-header {
  margin-bottom: 50px;
}

.offers .section-header h2 {
  color: var(--white);
}

.offers .tag-label2 {
  color: var(--yellow);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* Banners e Cards */
.offers-banners,
.offers-cards {
  display: grid;
  gap: 24px;
}

/* Desktop */
@media (min-width: 769px) {
  .offers-banners {
    grid-template-columns: 1fr 1fr;
  }
  .offers-cards {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* Estilo dos Cards */
.offer-banner,
.offer-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block; /* Importante para ser clicável */
}

/* BANNERS GRANDES */
.offers-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 30px;
}

.offer-banner {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
}

.offer-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}

.offer-banner-bg,
.offer-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}

.offer-banner:hover .offer-banner-bg,
.offer-card:hover .offer-card-bg {
  transform: scale(1.05);
}

.offer-banner:hover .offer-banner-bg {
  transform: scale(1.05);
}

.offer-banner-1 .offer-banner-bg {
  background-image: linear-gradient(135deg, #223d5b 0%, #162a3e 100%);
}

.offer-banner-2 .offer-banner-bg {
  background-image: linear-gradient(135deg, #2e5277 0%, #223d5b 100%);
}

.offer-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

.offer-banner-content {
  position: absolute;
  bottom: 35px;
  left: 35px;
  right: 35px;
  z-index: 2;
}

.offer-banner-content,
.offer-card-content {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  z-index: 2;
}

.offer-banner-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}

.offer-banner-title {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.offer-arrow-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: var(--transition);
}

.offer-arrow-btn .arrow-circle {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.788);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.offer-arrow-btn:hover .arrow-circle {
  background: var(--yellow);
  border-color: var(--yellow);
}

.offer-arrow-btn:hover .arrow-circle svg {
  color: var(--navy);
  transform: translateX(2px) translateY(-2px);
}

.offer-arrow-btn .arrow-circle svg {
  transition: all 0.3s ease;
  color: var(--white);
}

/* Cards Menores */
.offers-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.offer-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1.05;
  cursor: pointer;
}

.offer-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.offer-card:hover .offer-card-bg {
  transform: scale(1.06);
}

.offer-card-1 .offer-card-bg {
  background-image: linear-gradient(135deg, #3a6a8c, #223d5b);
}

.offer-card-2 .offer-card-bg {
  background-image: linear-gradient(135deg, #223d5b, #162a3e);
}

.offer-card-3 .offer-card-bg {
  background-image: linear-gradient(135deg, #1a3550, #2e5277);
}

.offer-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

.offer-card-content {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  z-index: 2;
}

.offer-card-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}

.section-header {
  color: var(--white);
}
.tag-label {
  color: var(--yellow-dark);
}

.offer-card-title {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.view-all-btn2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--yellow-dark);
  border-bottom: 1.5px solid var(--yellow-dark);
  padding-bottom: 2px;
  transition: var(--transition);
  margin-top: 12px; /* Espaçamento entre título e botão */
}

.view-all-btn2:hover {
  color: var(--mid-gray);
  border-color: var(--mid-gray);
}

.view-all-btn2 svg {
  transition: transform 0.3s ease;
}

.view-all-btn2:hover svg {
  transform: translateX(4px);
}

/* RESPONSIVIDADE MOBILE SECAO 6. TEMPO LIMITADO - OFERTAS EXCLUSIVAS */
@media (max-width: 768px) {
  .offers-banners,
  .offers-cards {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  /* Remove o margin-right e faz os cards ocuparem quase toda a largura */
  .offer-banner,
  .offer-card {
    aspect-ratio: 20 / 15;
    min-height: 100px;
    margin-right: 0; /* Remove o margin */
    margin-left: 0;
  }

  /* Reduz o padding do container só nessa seção no mobile */
  .offers .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .offer-banner-content,
  .offer-card-content {
    bottom: 30px;
    left: 30px;
    right: 30px;
  }

  .offer-banner-title,
  .offer-card-title {
    font-size: 1.75rem;
    line-height: 1.15;
  }

  .offer-arrow-btn {
    position: relative;
    z-index: 11; /* Garante que o botão continue clicável */
  }
}

/* ========================================= */
/* SECAO 7. SOBRE NÓS - NOSSA HISTÓRIA       */
/* ========================================= */
.about {
  background: var(--mid-gray);
}

/* DESKTOP (mantém lado a lado) */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center; /* importante */
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 20px; /* controla TODOS os espaçamentos */
  grid-column: 1;
}

.about-content,
.about-content-descricao,
.about-stats,
.about-cta {
  grid-column: 1;
}

.about-content {
  grid-column: 1;
}

.about-content .tag-label {
  color: var(--navy);
  margin-top: 20px;
}

.about-content h2 {
  font-size: 47px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 10px;
  margin-top: 10px;
}

.about-content-descricao {
  font-size: 15px;
  color: var(--navy);
  line-height: 1.8;
  margin-bottom: 20px;
  margin-top: 5px;
  grid-column: 1;
}

.about-content p {
  font-size: 15px;
  color: var(--navy);
  line-height: 1.8;
  margin-bottom: 32px;
  margin-top: 100px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  margin-top: -50px;
  grid-column: 1; /* ocupa largura toda */
}

.about-cta {
  grid-column: 1; /* ocupa largura toda */
  margin-top: -50px;
}

.stat-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.stat-number span {
  color: var(--yellow);
  font-size: 31px;
}

.stat-number {
  color: var(--yellow);
  font-size: 31px;
}

.stat-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--navy-dark);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.about-image {
  align-self: start;
  position: relative;
  width: 100%;
  max-width: 520px; /* controla tamanho */
  justify-self: end; /* cola na direita */
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-top: -650px;
}

.about-image-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.about-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: var(--yellow);
  color: var(--navy);
  padding: 17px 22px;
  text-align: center;
}

.about-badge-year {
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

.about-badge-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* RESPONSIVIDADE MOBILE SECAO 7. SOBRE NÓS - NOSSA HISTÓRIA */
@media (max-width: 768px) {
  .about {
    background: var(--mid-gray);
  }

  .about-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .about-content {
    width: 100%;
    order: 1;
  }

  .about-content .tag-label {
    font-size: 16px;
    font-weight: 800 !important;
  }

  .about-content p {
    font-size: 14px;
    line-height: 1.6;
    word-break: break-word;
    order: 2;
  }

  .about-content h2 {
    font-size: 48px !important;
    line-height: 1.17;
    font-weight: 800 !important;
    color: var(--navy);
    margin-bottom: 17px;
  }

  .about-content-descricao {
    order: 2;
    font-size: 19px;
  }

  .container {
    overflow: hidden;
  }

  .about-content .btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px auto;
    width: fit-content;
    order: 2;
  }

  .about-image {
    order: 2;
    display: block; /* garante que apareça */
    width: 100%;
    margin-top: -15px;
  }

  .about-stats {
    order: 3;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 20px;
    padding-top: 22px;
    border-top: none;
    margin-top: -15px;
  }

  .stat-number {
    font-size: 35px;
  }

  .stat-label {
    font-size: 15px;
    font-weight: 600 !important;
  }

  .about-cta {
    order: 4;
    display: flex;
    justify-content: center;
    margin-top: -15px;
  }

  .about-cta .btn-primary {
    margin: 0 auto;
  }
}

/* ========================================= */
/* SECAO 8. COMPRAR POR CATEGORIA            */
/* ========================================= */
.shop-by-category {
  background: var(--navy);
  padding: 70px 0 80px 0; /* Reduzido um pouco */
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px; /* Aumentado espaço entre título e cards */
}

.shop-by-category .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

/* CARROSSEL */
.shop-cat-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

/* DESKTOP - Mostra todos os cards sem botões */
@media (min-width: 992px) {
  .shop-cat-carousel {
    gap: 20px;
  }

  .shop-cat-track-wrap {
    overflow: visible;
    flex: 1;
  }

  .shop-cat-track {
    transform: none !important;
    transition: none;
    gap: 20px;
  }

  .shop-cat-card {
    flex: 0 0 calc(16.66% - 16.6px);
  }

  /* Esconde botões no desktop */
  .shop-cat-prev,
  .shop-cat-next {
    display: none !important;
  }
}

.shop-by-category .section-header h2 {
  color: var(--white);
}

.shop-by-category .tag-label {
  color: var(--yellow);
  border-color: var(--yellow);
}

.shop-cat-track-wrap {
  overflow: hidden;
  flex: 1;
}

.shop-cat-track {
  display: flex;
  gap: 20px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-cat-card {
  flex: 0 0 calc(15% - -3px);
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
  cursor: pointer;
}

.shop-cat-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.shop-cat-card:hover .shop-cat-bg {
  transform: scale(1.06);
}

.shop-cat-1 .shop-cat-bg {
  background-image: linear-gradient(160deg, #2a4a6b, #162a3e);
}

.shop-cat-2 .shop-cat-bg {
  background-image: linear-gradient(160deg, #1e3d58, #223d5b);
}

.shop-cat-3 .shop-cat-bg {
  background-image: linear-gradient(160deg, #162a3e, #2e5277);
}

.shop-cat-4 .shop-cat-bg {
  background-image: linear-gradient(160deg, #24476a, #1a3550);
}

.shop-cat-5 .shop-cat-bg {
  background-image: linear-gradient(160deg, #2e5277, #162a3e);
}

.shop-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent 60%);
  z-index: 1;
  transition: var(--transition);
}

.shop-cat-card:hover .shop-cat-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85),
    rgba(34, 61, 91, 0.4) 60%
  );
}

.shop-cat-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 52px;
  z-index: 2;
  opacity: 0.6;
  transition: var(--transition);
}

.shop-cat-card:hover .shop-cat-icon {
  opacity: 0.2;
  transform: translate(-50%, -60%) scale(0.8);
}

.shop-cat-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  z-index: 2;
  text-align: center;
}

.shop-cat-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

/* Estilo dos botões */
.carousel-nav-btn {
  width: 48px;
  height: 48px;
  background: var(--yellow);
  border: 2px solid var(--navy-dark);
  color: var(--navy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
}

.carousel-nav-btn:hover {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
}

.carousel-nav-btn:disabled,
.carousel-nav-btn[style*="pointer-events: none"] {
  opacity: 0.35;
  cursor: not-allowed;
}

.shop-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow);
  color: var(--navy);
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.shop-cat-card:hover .shop-cat-btn {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVIDADE MOBILE SECAO 8. COMPRAR POR CATEGORIA */
@media (max-width: 767px) {
  .shop-cat-card {
    flex: 0 0 calc(50% - 12px);
    aspect-ratio: 1.5 / 4;
    left: 4px;
    right: 0;
  }

  .shop-cat-track {
    gap: 16px;
  }

  .shop-cat-carousel {
    gap: 8px;
  }

  .shop-by-category {
    padding: 82px 0 92px 0;
  }

  /* Botões mais nas laterais */
  .carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
  }

  .shop-cat-prev {
    left: -23px;
  }
  .shop-cat-next {
    right: -23px;
  }

  /* Ajusta o wrap para não cortar os botões */
  .shop-cat-track-wrap {
    flex: 1;
    padding: 50 12px; /* espaço pros botões */
  }

  /* Remove o botão "Ver mais" */
  .shop-cat-btn {
    display: none !important; /* Removido completamente */
  }

  .shop-cat-content {
    position: absolute;
    bottom: 1px; /* Move o nome para baixo */
    left: 0;
    right: 0;
    padding: 20px 16px 16px;
    z-index: 2;
    text-align: center;
  }

  .shop-cat-name {
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  }
}

/* ========================================= */
/* SECAO 9. REALIZE SEU SONHO                */
/* ========================================= */
.dream-home {
  background: var(--off-white);
  padding: 92px 0 90px 0; /* Reduzido um pouco */
}

.dream-home-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.dream-home-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.dream-home-image-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  opacity: 0.9;
}

.dream-home-image-label {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--yellow);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dream-home-content h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}

.dream-home-content p {
  font-size: 15px;
  color: var(--navy);
  line-height: 1.8;
  margin-bottom: 36px;
}

.dream-home-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

/* RESPONSIVIDADE MOBILE SECAO 9. REALIZE SEU SONHO */
@media (max-width: 768px) {
  .dream-home {
    background: var(--off-white);
    padding: 100px 0 100px 0; /* Reduzido um pouco */
  }

  .dream-home-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  /* ESCONDE A IMAGEM NO MOBILE */
  .dream-home-image {
    display: none;
  }

  .dream-home-content {
    width: 100%;
  }

  .dream-home-content h2 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 17px;
  }

  .dream-home-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 50px;
    margin-top: 32px;
  }

  .dream-home-actions {
    width: 100%;
  }

  .dream-home-actions .btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
  }
}

/* ============================================== */
/* SECAO 10. POR QUE ESCOLHER A LOJAS HAVILAR     */
/* ============================================== */
.why-us {
  background: var(--mid-gray);
}

.why-us-header {
  text-align: center;
  margin-bottom: 64px;
}

.why-us-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.why-us-header p {
  font-size: 17px;
  color: var(--navy);
  max-width: 700px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.why-card h3 {
  font-family: var(--font-body) !important;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--yellow);
  transition: height 0.4s ease;
}

.why-card:hover {
  border-color: transparent;
  transform: translateY(-4px);
}

.why-card:hover::before {
  height: 100%;
}

/* ÍCONE */
.why-card-icon {
  width: 52px;
  height: 52px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
  overflow: hidden;
  display: none;
}

.why-card-icon img {
  width: 32px;
  height: 32px;
  transition: var(--transition);
  color: var(--navy-dark);
  opacity: 0;
}

.why-card:hover .why-card-icon {
  background: var(--yellow);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.25;
}

.why-card p {
  font-size: 14px;
  color: var(--navy);
  line-height: 1.7;
}

/* Row 2: 3 cards centered */
.why-grid-row2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* RESPONSIVIDADE MOBILE - SECAO 10. POR QUE ESCOLHER A LOJAS HAVILAR */
@media (max-width: 768px) {
  .why-us {
    background: var(--mid-gray);
  }

  .why-grid,
  .why-grid-row2 {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px;
    width: 100%;
  }

  .why-grid-row2 {
    flex-direction: column;
  }

  /* CARDS MOBILE */
  .why-card {
    width: 100%;
    max-width: 100%;
    padding: 40px 30px;
    text-align: center;
    align-items: center;
    margin: 0 auto;
    box-sizing: border-box;
    background: var(--white);
    border-left: 4px solid var(--yellow);
  }

  .why-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }

  /* TITULOS */
  .why-card h3 {
    font-size: 28px !important;
    line-height: 1.2;
    margin-bottom: 17px;
  }

  /* TEXTOS */
  .why-card p {
    font-size: 17px !important;
    line-height: 1.5;
    transition: none !important;
  }

  /* ICONES */
  .why-card-icon {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 22px;
  }

  .why-card-icon img {
    width: 50px;
    height: 50px;
  }

  /* REMOVE EFEITO HOVER NO MOBILE */
  .why-card:hover {
    transform: none !important;
    background: var(--white) !important;
    border-left: 4px solid var(--yellow) !important;
    box-shadow: none !important;
  }

  .why-card:hover .why-card-icon {
    background: transparent !important;
  }

  /* REMOVE LINHA ANIMADA */
  .why-card::before {
    display: none !important;
    transition: none !important;
  }

  /* REMOVE TRANSIÇÃO */
  .why-card {
    transition: none !important;
  }

  .why-us-header h2 {
    font-size: 48px !important;
    line-height: 1.17;
    font-weight: 800 !important;
    color: var(--navy);
    margin-bottom: 17px;
    text-align: center;
  }
}

/* ========================================= */
/* SECAO 11. FEEDBACKS                       */
/* ========================================= */
.feedbacks {
  background: var(--off-white);
}

.feedbacks-header {
  text-align: center;
  margin-bottom: 56px;
}

.feedbacks-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}

.feedbacks-header p {
  font-size: 15px;
  color: var(--navy);
}

.feedbacks-track-wrap {
  overflow: hidden;
  cursor: grab;
}

.feedbacks-track-wrap:active {
  cursor: grabbing;
}

.feedbacks-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 5px;
}

.feedback-card {
  flex: 0 0 calc(20% - 26px);
  width: calc(22% - 26px);
  background: var(--light-gray);
  padding: 17px 32px;
}

.feedback-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.feedback-stars svg {
  width: 22px;
  height: 22px;
}

.feedback-stars svg path {
  fill: var(--yellow);
}

.feedback-text {
  font-size: 15px;
  color: var(--navy-dark);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.feedback-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
}

.feedback-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
  flex-shrink: 0;
}

.feedback-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feedback-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.feedback-city {
  font-size: 12px;
  color: var(--navy-light);
}

/* Ajustes para alinhar os botões e esconder quando no limite */
.feedbacks-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

/* Botões */
.feedbacks-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--mid-gray);
  background: var(--mid-gray);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.feedbacks-nav-btn:hover {
  background: var(--navy);
  color: var(--mid-gray);
  border-color: var(--navy);
}

/* Feedbacks Track */
.feedbacks-track-wrap {
  overflow: hidden;
  margin: 0 -10px;
  /* compensa os botões que ficam para fora */
  padding: 0 10px;
}

.feedbacks-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 10px;
  /* importante para não cortar nos extremos */
}

/* FCAROUSEL FEEDBACKS - POSIÇÃO CORRETA */
.feedbacks-carousel {
  position: relative;
  max-width: 100%;
}

.feedbacks-track-wrap {
  overflow: hidden;
  padding: 0 10px;
  /* pequena margem para não cortar cards nas bordas */
}

.feedbacks-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Botões posicionados ao lado dos cards */
.feedbacks-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--yellow-dark);
  background: var(--navy-dark);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* Botão voltar */
.feedbacks-prev {
  left: -22px;
}

/* Botão proximo */
.feedbacks-next {
  right: -22px;
}

.feedbacks-nav-btn:hover {
  background: var(--yellow);
  color: var(--navy-dark);
  border-color: var(--navy-dark);
}

/* RESPONSIVIDADE MOBILE - SECAO 11. FEEDBACKS */
@media (max-width: 768px) {
  .feedbacks {
    overflow: hidden;
  }

  .feedbacks-carousel {
    position: relative;
  }

  .feedbacks-track-wrap {
    overflow: hidden;
    padding: 0 !important;
    width: 100%;
    margin: 0 auto;
  }

  .feedbacks-track {
    gap: 20px !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .feedback-card {
    flex: 0 0 100% !important;
    max-width: 98% !important; /* Diminui a largura */
    margin: 0 auto !important; /* Centraliza */
    padding: 32px 20px; /* aumentado */
    min-height: 38px; /* Aumenta a altura mínima */
    display: flex;
    flex-direction: column;
    background: var(--white);
    box-sizing: border-box;
    border: 1px solid var(--yellow);
  }

  .feedback-card:last-child {
    margin-right: 0 !important;
    padding-right: 22px !important; /* mantém padding interno normal */
  }

  /* Estrelas */
  .feedback-stars {
    justify-content: center;
    margin-bottom: 20px;
  }

  /* Mensagem (texto do depoimento) */
  .feedback-text {
    flex: 1; /* Empurra o texto para baixo */
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* Autor completo */
  .feedback-author {
    justify-content: center !important;
    text-align: center !important;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  /* Nome e Cidade */
  .feedback-name {
    font-size: 17px;
    font-weight: 600;
    text-align: center;
  }

  .feedback-city {
    font-size: 15px;
    text-align: center;
    line-height: 1.4;
  }

  /* Avatar */
  .feedback-avatar {
    width: 70px;
    height: 70px;
    margin: 0 auto;
  }

  /* Último card - remove espaço extra */
  .feedback-card:last-child {
    margin-right: 0 !important;
  }

  /* Botões */
  .feedbacks-nav-btn {
    top: 50%;
    width: 58px;
    height: 58px;
    z-index: 30;
    background: var(--navy-dark);
    color: var(--yellow);
    border: 2px solid var(--yellow);
  }

  .feedbacks-prev {
    left: -21px;
  }
  .feedbacks-next {
    right: -21px;
  }
}

/* ========================================= */
/* SECAO 12. FOOTER (RODAPÉ)                 */
/* ========================================= */
.footer {
  background: var(--navy);
  color: var(--mid-gray);
}

.footer-top {
  padding: 72px 0 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
  /* alinha tudo no topo */
}

/* LOGOMARCA */
.footer-logo-img {
  margin-bottom: 12px;
  margin-top: 28px;
  display: inline-block;
  /* Garante que o container não expanda demais */
}

.footer-logo-img img {
  height: 45px;
  width: auto;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--mid-gray);
  margin: 22px 0 22px;
}

.footer-logo-sub {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* LOGO LINK - ÁREA CLICÁVEL */
.footer-logo-link {
  display: inline-block;
  /* Importante: limita a área ao tamanho da imagem */
  line-height: 0;
  /* Remove espaço extra abaixo da imagem */
  transition: transform 0.3s ease;
}

.footer-logo-link img {
  display: block;
  /* Remove espaços extras */
}

/* Remove qualquer cursor pointer indesejado em containers */
.footer-brand > div:not(.footer-logo-img) {
  cursor: default;
}

/* ÍCONES SOCIAIS */
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--mid-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid-gray);
  transition: var(--transition);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--navy);
  transform: translateY(-2px);
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

.footer-socials img {
  transition: transform 0.3s;
}

.footer-socials img:hover {
  transform: scale(1.1);
}

/* LINKS DO FOOTER */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-links a {
  font-size: 12.5px;
  color: var(--mid-gray);
  position: relative;
  /* necessário para o underline */
  display: inline-block;
  padding-bottom: 12px;
  /* espaço para a linha aparecer */
}

/* COR AO PASSAR O MOUSE */
.footer-links a:hover {
  color: var(--yellow);
}

/* LINHA AMARELA ANIMADA POR BAIXO */
.footer-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  /* espessura da linha */
  background-color: var(--yellow);
  transition: width 0.35s ease;
}

/* ANIMAÇÃO AO HOVER */
.footer-links a:hover::after {
  width: 100%;
}

/* EMPRESA / CONTATO + FORMAS DE PAGAMENTOS */
.footer-col-title {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
  margin-top: 21px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* Espaço entre linhas */
  font-size: 12.5px;
  color: var(--mid-gray);
  padding: 0;
  margin: 0 0 15px 0;
  list-style: none;
}

.footer-contact-list li {
  font-size: 12.5px;
  color: var(--mid-gray);
  position: relative;
  /* necessário para o underline */
  display: inline-block;
  padding-bottom: 2px;
  /* espaço para a linha aparecer */
  transition: color 0.3s ease;
}

/* FORMAS DE PAGAMENTOS */
.footer-payment-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  /* Espaço entre as formas de pagamento */
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-payment-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--mid-gray);
  padding-bottom: 2px;
}

.payment-icons {
  display: flex;
  flex-direction: column;
  /* Uma coluna vertical */
  gap: 1px;
  /* Espaço entre cada linha */
}

.footer-payment-list li img {
  height: 28px;
  width: auto;
  flex-shrink: 0;
}

.payment-item {
  font-size: 12.5px;
  display: flex;
  align-items: center;
  /* Alinha ícone e texto verticalmente */
  gap: 10px;
  /* Espaço entre ícone e texto */
}

.payment-item img {
  height: 28px;
  width: auto;
}

/* BOTTOM */
.footer-bottom {
  background: var(--navy);
  padding: 12px 0;
  border-top: 1.5px solid var(--yellow);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--mid-gray);
}

/* RESPONSIVIDADE MOBILE - SECAO 12. FOOTER (RODAPÉ) */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-brand {
    grid-column: span 1;
  }
}

/* ====================== FORÇAR MOBILE (última prioridade) ====================== */
@media (max-width: 768px) {
  .hero {
    height: 100dvh !important;
    min-height: 520px !important;
  }

  .hero-slide {
    padding-top: 85px !important;
  }

  .category-card {
    flex: 0 0 155px !important;
    min-width: 155px !important;
  }

  .product-card {
    flex: 0 0 calc(50% - 12px) !important;
  }

  .collection-card {
    flex: 0 0 calc(100% - 20px) !important;
  }
}

/* ====================== MELHORIA HERO MOBILE ====================== */
@media (max-width: 768px) {
  .header-inner {
    height: 68px !important;
  }

  .hero {
    margin-top: 68px !important;
    height: 100dvh !important;
    /* Melhor que 100vh no mobile */
    min-height: 520px !important;
  }

  .hero-slide {
    padding-top: 70px !important;
    /* Reduz padding */
  }

  .hero-content {
    max-width: 92% !important;
    margin-left: 4% !important;
  }

  .hero-content h1 {
    font-size: clamp(34px, 9vw, 48px) !important;
    line-height: 1.05 !important;
  }

  .hero-content p {
    font-size: 15.5px !important;
    line-height: 1.5 !important;
  }

  .hero-btns .btn-primary {
    padding: 14px 28px !important;
    font-size: 13px !important;
  }

  /* Scroll indicator */
  .hero-scroll {
    bottom: 25px;
    right: 20px;
    font-size: 10.5px;
  }
}

/* CORREÇÕES HERO MOBILE */
@media (max-width: 768px) {
  .hero {
    margin-top: 68px !important;
    height: calc(100dvh - 68px) !important;
  }

  .hero-slide {
    padding-top: 65px !important;
    /* reduz mais */
  }

  /* Título e texto */
  .hero-content h1 {
    font-size: clamp(32px, 8.5vw, 46px) !important;
    margin-bottom: 12px !important;
  }

  .hero-content p {
    font-size: 15px !important;
    max-width: 100% !important;
    padding-right: 15px;
  }

  /* Botão */
  .hero-btns .btn-primary {
    padding: 13px 26px !important;
    font-size: 13px !important;
  }

  /* Dots (barrinhas) - desce um pouco */
  .hero-dots {
    bottom: 35px !important;
    gap: 8px;
  }

  .hero-dot {
    width: 26px;
    height: 3.5px;
  }

  /* Mostra setas no mobile */
  .hero-controls {
    display: flex !important;
    padding: 0 20px !important;
    top: 45% !important;
  }

  .hero-ctrl-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15) !important;
  }

  /* FOOTER BOTTOM MOBILE */
  @media (max-width: 768px) {
    .footer-bottom .container {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      gap: 6px;
    }

    .footer-copy,
    .footer-dev {
      width: 100%;
      margin: 0;
      line-height: 1.5;
    }
  }
}
