/* ============================================================
   VARIÁVEIS CSS – Paleta de cores e tipografia
============================================================ */
:root {
  --primary:     #384BFF;
  --dark:        #0A0E27;
  --white:       #fff;
  --heading:     #0A0E27;
  --body:        #5A607F;
  --transition:  all 0.3s ease;
  --shadow-card: 0 4px 30px rgba(15,13,29,.08);
  --font-body:   'Kumbh Sans', system-ui, sans-serif;
}

/* ============================================================
   SCROLL PROGRESS BAR
============================================================ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary) 0%, #7B8FFF 100%);
  z-index: 9999;
  border-radius: 0 2px 2px 0;
  transition: width 0.1s linear;
  pointer-events: none;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--body);
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

/* ============================================================
   ANIMAÇÃO FADE-IN-UP (IntersectionObserver)
============================================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   1. TOPBAR
============================================================ */
.header-top-section {
  background: #f8f9ff;
  border-bottom: 1px solid rgba(56,75,255,0.08);
  padding: 8px 0;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.header-top-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.top-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.top-contact-item:hover {
  color: var(--heading);
}

.top-contact-item i {
  font-size: 11px;
  color: var(--primary);
}

.header-top-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.follow-label {
  color: var(--body);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.top-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: rgba(56,75,255,0.07);
  border-radius: 50%;
  color: var(--body);
  font-size: 13px;
  transition: var(--transition);
}

.top-social-link:hover {
  background-color: rgba(56,75,255,0.14);
  color: var(--primary);
}

/* ============================================================
   2. NAVBAR
============================================================ */
#header-sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid rgba(56,75,255,0.08);
  box-shadow: 0 2px 20px rgba(15,13,29,.06);
  transition: box-shadow 0.3s ease;
}

#header-sticky.scrolled {
  box-shadow: 0 2px 24px rgba(15,13,29,.12);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  position: relative;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  margin-left: -16px;
}

.navbar-logo-img {
  height: 130px;
  width: auto;
  max-width: 360px;
  display: block;
  object-fit: contain;
}

/* Links desktop */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link-item {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--heading);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
}

.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-link-item:hover {
  color: var(--primary);
}

.nav-link-item:hover::after {
  width: 100%;
}

/* Botão contato */
.btn-nav-contact {
  display: inline-block;
  background: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 6px;
  transition: var(--transition);
}

.btn-nav-contact:hover {
  background: #2a3ce0;
  border-color: #2a3ce0;
  color: #fff;
  transform: translateY(-1px);
}

/* Hambúrguer */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--heading);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Menu mobile */
.mobile-menu {
  background-color: #fff;
  border-top: 1px solid rgba(56,75,255,0.08);
  padding: 16px 0;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
}

.mobile-nav-link {
  display: block;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--heading);
  border-bottom: 1px solid rgba(56,75,255,0.08);
  transition: var(--transition);
}

.mobile-nav-link:hover {
  color: var(--primary);
  padding-left: 24px;
}

.mobile-nav-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   3. HERO SECTION
============================================================ */
.hero-section {
  background-image: url('imagens/hero-fundo.jpg');
  background-size: cover;
  background-position: center;
  background-color: var(--dark);
  position: relative;
  padding: 130px 0 165px;
  overflow: hidden;
}

/* Overlay escuro */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,14,39,.6);
}

/* Garante que o conteúdo fique acima do overlay */
.hero-section .container {
  position: relative;
  z-index: 1;
}

/* Badge de boas-vindas */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(56,75,255,0.4);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.hero-badge i {
  font-size: 11px;
}

/* Título principal */
.hero-text h1 {
  font-family: var(--font-body);
  font-size: clamp(42px, 5.5vw, 80px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 20px;
}

/* Parágrafo */
.hero-desc {
  font-size: 17px;
  font-family: var(--font-body);
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.8;
}

/* Botão hero */
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 38px;
  border-radius: 6px;
  transition: var(--transition);
}

.btn-hero:hover {
  background: #2a3ce0;
  border-color: #2a3ce0;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(56,75,255,0.35);
}

/* Coluna de imagem hero */
.hero-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 380px;
  height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* Álbum da Copa – slide 3 */
.hero-album-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px 0;
}

.hero-album-img {
  max-height: 400px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.55));
  transform: rotate(-4deg);
  transition: transform 0.4s ease;
}

.hero-album-img:hover {
  transform: rotate(0deg) scale(1.04);
}

/* Círculos decorativos – ocultos */
.hero-circle { display: none; }

/* Foto da pessoa no hero – fade nas bordas para integrar ao fundo */
.hero-person-img {
  position: relative;
  z-index: 1;
  width: 340px;
  height: 480px;
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
  display: block;
  /* Máscara: fade nas laterais e na base para fundir com o fundo */
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 8%,
    black 75%,
    transparent 100%
  ),
  linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
  -webkit-mask-composite: destination-in;
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 8%,
    black 75%,
    transparent 100%
  ),
  linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
  mask-composite: intersect;
}

/* Ponto flutuante decorativo */
.hero-dot {
  position: absolute;
  bottom: 30px;
  right: 10px;
  width: 14px;
  height: 14px;
  background-color: var(--primary);
  border: 2px solid var(--dark);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(56,75,255,0.4);
  z-index: 2;
  animation: floatDot 3s ease-in-out infinite;
}

@keyframes floatDot {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ============================================================
   NAVBAR – BUSCA RÁPIDA
============================================================ */
.navbar-search-form {
  position: relative;
  display: flex;
  align-items: center;
}

.navbar-search-form i {
  position: absolute;
  left: 13px;
  color: var(--body);
  font-size: 13px;
  pointer-events: none;
}

.navbar-search-form input {
  width: 220px;
  padding: 9px 14px 9px 36px;
  border: 1px solid rgba(56,75,255,0.15);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--heading);
  background: #f8f9ff;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, width 0.3s ease;
}

.navbar-search-form input::placeholder { color: var(--body); }

.navbar-search-form input:focus {
  border-color: rgba(56,75,255,0.4);
  box-shadow: 0 0 0 2px rgba(56,75,255,0.08);
  width: 260px;
  background: #fff;
}

/* ============================================================
   HERO CAROUSEL
============================================================ */
.hero-carousel {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,14,39,.6);
}

.hero-slide-content {
  position: relative;
  z-index: 1;
  padding-top: 130px;
  padding-bottom: 165px;
}

.hero-slide h1 {
  font-family: var(--font-body);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}

/* Botões de redes sociais no slide 1 */
.hero-social-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.hero-social-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  filter: brightness(1.1);
}

.hero-social-instagram {
  background: linear-gradient(135deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.35);
}

.hero-social-instagram:hover {
  box-shadow: 0 10px 28px rgba(220, 39, 67, 0.45);
}

.hero-social-facebook {
  background: #1877f2;
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.35);
}

.hero-social-facebook:hover {
  box-shadow: 0 10px 28px rgba(24, 119, 242, 0.45);
}

/* Setas */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(56,75,255,.15);
  border: 1px solid rgba(56,75,255,.4);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(56,75,255,.35);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 22px rgba(0,0,0,.35);
}

.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-dot-btn {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
}

.hero-dot-btn.active {
  background: var(--primary);
  width: 28px;
  border-radius: 4px;
}

/* Barra de progresso */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,.15);
  z-index: 10;
}

.hero-progress-bar {
  height: 100%;
  background: var(--primary);
  width: 0%;
  transition: width linear;
}

/* ============================================================
   3.5 SEÇÃO ESTATÍSTICAS
============================================================ */
.stats-section {
  background: #f8f9ff;
  border-top: 1px solid rgba(56,75,255,0.08);
  border-bottom: 1px solid rgba(56,75,255,0.08);
  padding: 72px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: rgba(56,75,255,0.12);
}

.stat-number-wrapper {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-number {
  font-family: var(--font-body);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: var(--heading);
}

.stat-suffix {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 11px;
  color: var(--body);
  margin: 0;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ============================================================
   4. SEÇÃO LOJAS
============================================================ */
.team-section {
  background: #fff;
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-header h2 {
  font-family: var(--font-body);
  font-size: 40px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.2;
}

/* Cards das lojas */
.store-card {
  background: #fff;
  border: 1px solid rgba(56,75,255,0.1);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.store-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56,75,255,0.25);
  box-shadow: 0 20px 60px rgba(15,13,29,.12);
}

/* Imagem do card */
.store-card-image {
  position: relative;
  overflow: hidden;
}

.store-img-placeholder {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: rgba(255, 255, 255, 0.5);
}

.store-img-1 { background: linear-gradient(135deg, #8b9cf7 0%, #384BFF 100%); }
.store-img-2 { background: linear-gradient(135deg, #6b7df5 0%, #2030d4 100%); }
.store-img-3 { background: linear-gradient(135deg, #4a5ee8 0%, #1522b0 100%); }

/* Overlay com ícones no hover */
.store-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,39,.9) 0%, rgba(10,14,39,.4) 60%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.store-card-image:hover .store-card-overlay {
  opacity: 1;
}

.store-card-overlay a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: rgba(56,75,255,.15);
  border: 1px solid rgba(56,75,255,.4);
  border-radius: 50%;
  color: #fff;
  font-size: 17px;
  transition: var(--transition);
}

.store-card-overlay a:hover {
  background-color: var(--primary);
  color: #fff;
}

/* Imagem real da loja */
.store-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

/* Corpo do card */
.store-card-body {
  padding: 24px 28px 28px;
}

.store-name {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 12px;
}

.store-address,
.store-phone {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--body);
  margin-bottom: 6px;
}

.store-address i,
.store-phone i {
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ============================================================
   4.5 SEÇÃO CATEGORIAS
============================================================ */
.categories-section {
  background: #f8f9ff;
  padding: 100px 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 32px 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(56,75,255,0.1);
  transition: all 0.3s ease;
  text-align: center;
  color: var(--body);
}

.category-card:hover {
  background: #fff;
  border-color: rgba(56,75,255,0.3);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(56,75,255,.1);
  color: var(--heading);
}

.category-icon {
  width: 68px;
  height: 68px;
  background: rgba(56,75,255,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.category-card:hover .category-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}

.category-name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: inherit;
}

/* ============================================================
   5. SEÇÃO CONTATO
============================================================ */
.contact-section {
  background: #f8f9ff;
  border-top: 1px solid rgba(56,75,255,0.08);
  border-bottom: 1px solid rgba(56,75,255,0.08);
  padding: 100px 0;
}

/* Mapa Google Maps na seção de contato */
.contact-map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}

.contact-map-label {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(56,75,255,0.06);
  color: var(--body);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 16px;
}

.contact-map-label i {
  color: var(--primary);
  font-size: 14px;
  flex-shrink: 0;
}

.contact-map {
  width: 100%;
  height: 340px;
  border: none;
  display: block;
}

/* Placeholder de imagem – atendente (mantido para referência) */
.contact-image-wrapper {
  position: relative;
  width: 340px;
  height: 380px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-circle-outer {
  position: absolute;
  inset: -20px;
  border: 2px dashed rgba(56,75,255,0.2);
  border-radius: 50%;
}

.contact-circle-inner {
  position: absolute;
  inset: 20px;
  border: 2px dashed rgba(56,75,255,0.1);
  border-radius: 50%;
}

.contact-img-placeholder {
  width: 260px;
  height: 300px;
  background: rgba(15, 13, 29, 0.35);
  border-radius: 140px 140px 100px 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.contact-img-icon {
  font-size: 90px;
  color: rgba(255, 255, 255, 0.4);
}

/* Textos do formulário */
.contact-label {
  display: inline-block;
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-title {
  font-family: var(--font-body);
  font-size: 40px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.2;
  margin-bottom: 32px;
}

/* Inputs do formulário */
.contact-input {
  background: #fff !important;
  border: 1px solid rgba(56,75,255,0.15) !important;
  border-radius: 6px !important;
  color: var(--heading) !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  padding: 14px 20px !important;
  outline: none;
  box-shadow: none !important;
  transition: border-color 0.3s ease !important;
}

.contact-input::placeholder {
  color: var(--body) !important;
}

.contact-input:focus {
  border-color: rgba(56,75,255,0.4) !important;
  box-shadow: 0 0 0 2px rgba(56,75,255,0.08) !important;
}

textarea.contact-input {
  resize: vertical;
  min-height: 130px;
}

/* Botão enviar */
.btn-contact-submit {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-contact-submit:hover {
  background: #2a3ce0;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(56,75,255,.25);
}

/* ============================================================
   6. FOOTER
============================================================ */
.footer-section {
  background: var(--dark);
  border-top: 1px solid rgba(56,75,255,0.2);
  padding: 80px 0 0;
}

/* Blocos de contato */
.footer-contacts {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 60px;
}

.footer-contact-block {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Círculo ícone */
.footer-icon-circle {
  width: 60px;
  height: 60px;
  border: 1px dashed rgba(56,75,255,0.3);
  background-color: rgba(56,75,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 20px;
  transition: var(--transition);
}

.footer-contact-block:hover .footer-icon-circle {
  background-color: var(--primary);
  color: #fff;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-contact-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-contact-value {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
}

.footer-contact-value:hover {
  color: var(--primary);
}

/* Linha divisória */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin: 0;
}

/* Barra footer-bottom */
.footer-bottom {
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.footer-bottom p {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  margin: 0;
}

/* Botão voltar ao topo */
.back-to-top {
  position: absolute;
  right: 12px;
  width: 44px;
  height: 44px;
  background: rgba(56,75,255,0.15);
  border: 1px solid rgba(56,75,255,0.3);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVIDADE
============================================================ */

/* Tablet e mobile (< 992px) */
@media (max-width: 991.98px) {

  /* Topbar compacto */
  .header-top-inner {
    justify-content: center;
    gap: 6px;
  }

  .header-top-left {
    gap: 14px;
  }

  /* Logo menor no mobile */
  .navbar-logo-img {
    height: 48px;
    max-width: 160px;
  }

  /* Navbar padding menor */
  .navbar-inner {
    padding: 12px 0;
    gap: 10px;
  }

  /* Navbar mobile */
  .nav-links,
  .btn-nav-contact,
  .navbar-search-form {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero carousel menor */
  .hero-slide-content {
    padding-top: 80px;
    padding-bottom: 100px;
  }

  .hero-slide h1 {
    font-size: 38px;
  }

  .hero-image-col {
    display: none;
  }

  .hero-arrow { display: none; }

  /* Hero menor (legado) */
  .hero-section {
    padding: 80px 0 100px;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hero-image-col {
    display: none;
  }

  /* Seção título */
  .section-header h2 {
    font-size: 32px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  /* Categorias */
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Contato */
  .contact-image-wrapper {
    display: none;
  }

  .contact-title {
    font-size: 32px;
  }

  /* Footer */
  .footer-contacts {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-inner {
    justify-content: center;
  }
}

/* Mobile pequeno (< 576px) */
@media (max-width: 575.98px) {

  /* Esconde topbar para economizar espaço */
  .header-top-section {
    display: none;
  }

  .hero-slide h1 {
    font-size: 28px;
  }

  .hero-social-btn span { display: none; }
  .hero-social-btn { padding: 13px 18px; }

  .hero-text h1 {
    font-size: 34px;
  }

  .hero-desc {
    font-size: 15px;
  }

  .btn-hero {
    padding: 16px 28px;
    font-size: 15px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .contact-title {
    font-size: 28px;
  }

  .top-contact-item span {
    display: none;
  }

  /* Stats mobile */
  .stat-number {
    font-size: 36px;
  }

  .stat-suffix {
    font-size: 22px;
  }

  /* Categorias mobile */
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-card {
    padding: 24px 12px;
  }
}

/* ============================================================
   UTILITÁRIOS E BOTÕES GLOBAIS
============================================================ */
.section-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  margin: 0 auto 32px;
  border: none;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 12px;
}

.btn-primary, .btn-hero {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-primary:hover, .btn-hero:hover {
  background: #2a3ce0;
  color: #fff;
  border-color: #2a3ce0;
}

/* ============================================================
   BOTÃO FLUTUANTE WHATSAPP
============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
}
}

/* ============================================================
   BANNER LGPD / COOKIES – card flutuante
============================================================ */
#lgpd-banner {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9998;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
#lgpd-banner.lgpd-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.lgpd-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 22px 18px;
  width: 300px;
  box-shadow: 0 8px 40px rgba(10,14,39,.18), 0 2px 8px rgba(56,75,255,.10);
  border: 1px solid rgba(56,75,255,.12);
  position: relative;
}
.lgpd-x {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: #aaa;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
.lgpd-x:hover { color: #333; }
.lgpd-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #384BFF 0%, #6B7FFF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: #fff;
  font-size: 18px;
}
.lgpd-title {
  font-size: 15px;
  font-weight: 700;
  color: #0A0E27;
  margin: 0 0 8px;
}
.lgpd-text {
  font-size: 12.5px;
  line-height: 1.6;
  color: #5A607F;
  margin: 0 0 16px;
}
.lgpd-text strong { color: #384BFF; font-weight: 600; }
.lgpd-btns {
  display: flex;
  gap: 8px;
}
.lgpd-btn-recusar {
  flex: 1;
  background: transparent;
  color: #5A607F;
  border: 1px solid #dde1ee;
  padding: 9px 0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s, color 0.2s;
}
.lgpd-btn-recusar:hover { border-color: #384BFF; color: #384BFF; }
.lgpd-btn-aceitar {
  flex: 2;
  background: linear-gradient(135deg, #384BFF 0%, #6B7FFF 100%);
  color: #fff;
  border: none;
  padding: 9px 0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: opacity 0.2s;
}
.lgpd-btn-aceitar:hover { opacity: .88; }
@media (max-width: 400px) {
  #lgpd-banner { left: 12px; right: 12px; bottom: 16px; }
  .lgpd-card { width: 100%; }
}
