/* =====================================================================
   Falkenburg Consultoria Logística — Estilo corporativo
   Cores: azul-marinho (#0a1d37) | amarelo-ouro (#fcb900) | cinza (#4a5568)
   Tipografia: Montserrat (títulos) + Inter (texto)
   ===================================================================== */

:root {
  --color-primary: #0a1d37;
  --color-secondary: #fcb900;
  --color-text: #4a5568;
  --color-light: #ffffff;
  --color-primary-soft: #eef2f9;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-offset: 6px 6px 0 rgba(252, 185, 0, 0.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-light);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: -0.01em;
}

a { text-decoration: none; }

.text-secondary-brand { color: var(--color-secondary) !important; }
.bg-primary-brand { background-color: var(--color-primary) !important; }
.bg-soft { background-color: var(--color-primary-soft) !important; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary);
}
.eyebrow::before { content: ''; width: 18px; height: 2px; background-color: var(--color-secondary); display: inline-block; }

/* ---------------------------------------------------------------------
   Placeholder de mídia (usado até as fotos reais serem enviadas para
   assets/img/... — basta salvar o arquivo no caminho indicado em cada
   página que a foto passa a aparecer automaticamente, sem alterar código)
   --------------------------------------------------------------------- */
.ph-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--color-primary);
  background-image:
    radial-gradient(circle at 12px 12px, rgba(255, 255, 255, 0.06) 1.5px, transparent 1.5px),
    linear-gradient(135deg, var(--color-primary) 0%, #13294f 55%, var(--color-primary) 100%);
  background-size: 24px 24px, cover;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}
.ph-media__icon {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.28);
  position: relative;
  z-index: 1;
}
.ph-media--lg .ph-media__icon { font-size: 4.5rem; }
.ph-media__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.ph-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), #13294f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 2.25rem;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.ph-avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------------------------------------------------------------------
   Botões
   --------------------------------------------------------------------- */
.btn-cta,
.btn-cta-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  cursor: pointer;
  max-width: 100%;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.btn-cta {
  background-color: var(--color-light);
  color: var(--color-primary);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border: 2px solid var(--color-primary);
  border-radius: 4px;
  box-shadow: var(--shadow-offset);
  white-space: nowrap;
}
.btn-cta:hover,
.btn-cta:focus {
  background-color: var(--color-light);
  color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translate(-2px, -2px);
  box-shadow: 9px 9px 0 rgba(252, 185, 0, 0.45);
}
.btn-cta-sm { padding: 0.5rem 1.1rem; font-size: 0.85rem; }
.btn-cta-solid {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  font-weight: 700;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 4px;
}
.btn-cta-solid:hover,
.btn-cta-solid:focus {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  filter: brightness(0.95);
}

/* ---------------------------------------------------------------------
   Header / Navegação
   --------------------------------------------------------------------- */
.site-header {
  background-color: var(--color-primary);
  position: sticky;
  top: 0;
  z-index: 1030;
}
.site-logo { height: 48px; width: auto; }
@media (min-width: 992px) {
  .site-logo { height: 60px; }
}
.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  padding: 0.5rem 1rem;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--color-secondary);
}
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.4);
}
.navbar-toggler-icon {
  filter: invert(1);
}

/* ---------------------------------------------------------------------
   Hero (página inicial e cabeçalhos internos)
   --------------------------------------------------------------------- */
.hero {
  background-color: var(--color-primary-soft);
  padding: 4rem 0 0;
}
.hero h1 { font-size: clamp(2rem, 4vw, 2.75rem); line-height: 1.12; }
.hero p.lead { font-size: 1.05rem; max-width: 48ch; }
.hero-image {
  border-radius: 16px;
  max-width: 100%;
}
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.hero-feats { display: flex; gap: 1.85rem; flex-wrap: wrap; padding: 2.35rem 0 3rem; }
.feat { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; font-weight: 700; color: var(--color-primary); }
.feat-label { display: block; font-size: 0.72rem; font-weight: 500; color: var(--color-text); }
.feat-ic {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.page-hero {
  background-color: var(--color-primary-soft);
  padding: 3.25rem 0 2.75rem;
  text-align: center;
}
.page-hero .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  background-color: var(--color-primary);
  color: var(--color-light);
  padding: 0.6rem 1.25rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
}
.page-hero .badge-pill b { color: var(--color-secondary); font-size: 1.05rem; }

/* ---------------------------------------------------------------------
   Cards de serviço / ícones
   --------------------------------------------------------------------- */
.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.service-card {
  background-color: var(--color-light);
  border: 1px solid #e7ebf1;
  border-radius: 10px;
  padding: 2rem 1.75rem;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(10, 29, 55, 0.08);
}
.service-card h3 { font-size: 1.15rem; }
.service-card p { font-size: 0.95rem; margin-bottom: 0; }

/* ---------------------------------------------------------------------
   Estatísticas
   --------------------------------------------------------------------- */
.stats-section { padding: 3rem 0; }
.stat-item { text-align: center; }
.stat-item .icon-circle { background-color: var(--color-primary-soft); color: var(--color-primary); }
.stat-item .stat-value {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-primary);
  display: block;
}
.stat-item .stat-label { color: var(--color-text); font-size: 0.95rem; }
.stat-divider { width: 32px; height: 3px; background-color: var(--color-secondary); margin: 0.5rem auto; }

/* ---------------------------------------------------------------------
   Faixa CTA (banner com caminhão)
   --------------------------------------------------------------------- */
.cta-banner { padding: 0 0 3rem; }
.cta-banner__box {
  background-color: var(--color-primary);
  color: var(--color-light);
  border-radius: 12px;
  padding: 1.75rem 2rem;
}
.cta-banner__icon {
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-secondary);
}

/* ---------------------------------------------------------------------
   Galeria de soluções
   --------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
@media (min-width: 576px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem;
  background: linear-gradient(0deg, rgba(10, 29, 55, 0.9), rgba(10, 29, 55, 0));
  color: var(--color-light);
  font-weight: 600;
}

/* ---------------------------------------------------------------------
   Quem Somos / Equipe
   --------------------------------------------------------------------- */
.media-badge-wrap { position: relative; }
.badge-years {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 8px;
  padding: 1.1rem 1.4rem;
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.1;
  box-shadow: 0 10px 24px rgba(10, 29, 55, 0.28);
}
.media-badge-wrap .badge-years {
  position: absolute;
  left: 1.5rem;
  bottom: -1.5rem;
  z-index: 2;
}
.consultor-card {
  border: 1px solid #e7ebf1;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  height: 100%;
}
.consultor-photo { border-radius: 12px; aspect-ratio: 3/4; margin-bottom: 0.25rem; }
.consultor-photo .ph-media__img { object-position: center 15%; }
.consultor-card h3 { font-size: 1.15rem; }
.consultor-role {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.consultor-card p.bio { font-size: 0.88rem; margin-top: 0.35rem; }

/* ---------------------------------------------------------------------
   Página Clientes
   --------------------------------------------------------------------- */
.filter-bar { display: flex; gap: 0.85rem; align-items: center; justify-content: center; margin-bottom: 2.25rem; flex-wrap: wrap; }
.filter-bar label { font-size: 0.85rem; font-weight: 700; color: var(--color-primary); }
.filter-bar select {
  padding: 0.65rem 1rem;
  border-radius: 8px;
  border: 1.5px solid #e7ebf1;
  font-size: 0.9rem;
  color: var(--color-primary);
  background-color: var(--color-light);
  min-width: 220px;
}
.client-chip {
  border: 1px solid #e7ebf1;
  border-radius: 10px;
  padding: 1rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.client-chip:hover { box-shadow: 0 20px 45px -20px rgba(11, 30, 69, 0.25); transform: translateY(-2px); }
.empty-note { text-align: center; color: #8b93a3; font-size: 0.9rem; padding: 2.5rem 0; }

/* ---------------------------------------------------------------------
   Contato
   --------------------------------------------------------------------- */
.info-card {
  border: 1px solid #e7ebf1;
  border-radius: 14px;
  padding: 1.35rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.info-card .ic {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: var(--color-primary-soft);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.15rem;
}
.info-card h4 { font-size: 0.92rem; }
.info-card p { font-size: 0.86rem; margin-top: 0.25rem; }
.form-box { border: 1px solid #e7ebf1; border-radius: 16px; padding: 2.1rem; }
.form-box h3 { font-size: 1.2rem; }
.form-box p.sub { font-size: 0.88rem; margin-top: 0.5rem; }
.contact-form .form-control,
.contact-form .form-select {
  background-color: var(--color-primary-soft);
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0.85rem 1rem;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 0.2rem rgba(252, 185, 0, 0.25);
}

/* ---------------------------------------------------------------------
   Botão flutuante do WhatsApp
   --------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background-color: #25d366;
  color: var(--color-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 1040;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { color: var(--color-light); transform: scale(1.08); }

/* ---------------------------------------------------------------------
   Rodapé
   --------------------------------------------------------------------- */
.site-footer {
  background-color: #06111f;
  color: rgba(255, 255, 255, 0.6);
  padding: 1.5rem 0;
  font-size: 0.85rem;
}

/* ---------------------------------------------------------------------
   Mapa
   --------------------------------------------------------------------- */
.map-frame {
  border: 0;
  width: 100%;
  height: 420px;
  border-radius: 10px;
}

/* ---------------------------------------------------------------------
   Hero — cartão flutuante sobre a foto
   --------------------------------------------------------------------- */
.hero-media { position: relative; align-self: stretch; }
.hero-photo-badge {
  position: absolute;
  left: -1.25rem;
  bottom: 1.75rem;
  background-color: var(--color-primary);
  color: var(--color-light);
  padding: 1.1rem 1.25rem;
  border-radius: 10px;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  max-width: 260px;
  box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.hero-photo-badge .ic {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: var(--color-secondary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.05rem;
}
.hero-photo-badge b { display: block; font-size: 0.85rem; }
.hero-photo-badge span { display: block; font-size: 0.75rem; color: rgba(255, 255, 255, 0.7); margin-top: 2px; }

/* ---------------------------------------------------------------------
   Estatísticas — faixa navy logo abaixo do hero
   --------------------------------------------------------------------- */
.stats-float-wrap { margin-top: 3.5rem; }
.stats-card {
  background-color: var(--color-primary);
  border-radius: 16px;
  padding: 2.25rem 2rem;
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.55);
}
.stats-card .stat-item .stat-value,
.stats-card .stat-item .stat-label { color: var(--color-light); }
.stats-card .stat-item .stat-label { color: rgba(255, 255, 255, 0.7); }
.stats-card .stat-item .icon-circle { background-color: rgba(255, 255, 255, 0.12); color: var(--color-secondary); }

/* ---------------------------------------------------------------------
   Seção "Por que a Falkenburg" — colagem de imagens + checklist
   --------------------------------------------------------------------- */
.why-collage {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.65rem;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.why-collage .ph-media { border-radius: 0; min-height: 0; }
.why-collage .c1 { grid-row: 1 / 3; }
.why-card {
  position: absolute;
  left: 1.5rem;
  bottom: -2rem;
  background-color: var(--color-primary);
  color: var(--color-light);
  padding: 1.5rem 1.65rem;
  border-radius: 12px;
  max-width: 300px;
  box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.why-card .check-lg {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
}
.why-card h4 { color: var(--color-light); font-size: 1rem; }
.why-card p { color: rgba(255, 255, 255, 0.75); font-size: 0.83rem; margin-top: 0.5rem; }
.why-media-wrap { position: relative; margin-bottom: 2.5rem; }

.checklist { list-style: none; margin: 1.5rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.85rem; }
.checklist li { display: flex; align-items: flex-start; gap: 0.75rem; font-weight: 600; font-size: 0.92rem; color: var(--color-primary); }
.checklist .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.65rem;
  margin-top: 2px;
}

/* ---------------------------------------------------------------------
   Marquee de clientes (faixa rolante)
   --------------------------------------------------------------------- */
.marquee-outer {
  overflow: hidden;
  position: relative;
  padding: 1.35rem 0;
  background-color: var(--color-primary-soft);
  border-top: 1px solid var(--border-color, #e7ebf1);
  border-bottom: 1px solid var(--border-color, #e7ebf1);
}
.marquee-track { display: flex; gap: 0.85rem; width: max-content; animation: falkenburg-scroll 240s linear infinite; }
.marquee-outer:hover .marquee-track { animation-play-state: paused; }
@keyframes falkenburg-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-chip {
  white-space: nowrap;
  background-color: var(--color-light);
  border: 1px solid #e7ebf1;
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* ---------------------------------------------------------------------
   Vídeo institucional
   --------------------------------------------------------------------- */
.video-box {
  max-width: 900px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  background-color: var(--color-primary);
  background-image: linear-gradient(160deg, #22345f, var(--color-primary));
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-play {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.5);
}

/* ---------------------------------------------------------------------
   Lista de serviços em formato detalhado (linha ícone + texto)
   --------------------------------------------------------------------- */
.svc-detail-list { display: flex; flex-direction: column; }
.svc-detail {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid #e7ebf1;
}
.svc-detail:last-child { border-bottom: none; }
.svc-detail .ic {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background-color: var(--color-primary-soft);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.svc-detail h4 { font-size: 1rem; margin-bottom: 0.35rem; }
.svc-detail p { font-size: 0.87rem; margin: 0; }
.tag-chip {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-primary);
  background-color: var(--color-primary-soft);
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
}

/* ---------------------------------------------------------------------
   Blog
   --------------------------------------------------------------------- */
.blog-card {
  background-color: var(--color-light);
  border: 1px solid #e7ebf1;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(10, 29, 55, 0.08); }
.blog-card .ph-media { border-radius: 0; aspect-ratio: 16/9; }
.blog-card__body { padding: 1.5rem; }
.blog-card__date { font-size: 0.78rem; color: var(--color-secondary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.blog-card h3 { font-size: 1.05rem; margin-top: 0.4rem; }
.blog-card p { font-size: 0.9rem; }
.blog-article { font-size: 1.02rem; line-height: 1.75; }
.blog-article h2 { font-size: 1.4rem; margin-top: 2rem; margin-bottom: 0.75rem; }
.blog-article h3 { font-size: 1.15rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.blog-article p { margin-bottom: 1rem; color: var(--color-text); }
.blog-article ul { margin-bottom: 1rem; padding-left: 1.25rem; }

/* ---------------------------------------------------------------------
   Newsletter (rodapé)
   --------------------------------------------------------------------- */
.newsletter-box {
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
}
.newsletter-box .form-control {
  background-color: rgba(255, 255, 255, 0.95);
  border: none;
}

/* ---------------------------------------------------------------------
   Rodapé institucional (4 colunas)
   --------------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-primary);
  color: rgba(255, 255, 255, 0.65);
  padding: 4.5rem 0 1.75rem;
  font-size: 0.85rem;
}
.footer-logo { height: 40px; width: auto; margin-bottom: 1rem; }
.footer-desc { font-size: 0.88rem; max-width: 32ch; color: rgba(255, 255, 255, 0.6); }
.footer-socials { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.footer-socials a:hover { background-color: var(--color-secondary); color: var(--color-primary); }
.site-footer h4 { color: var(--color-light); font-size: 0.92rem; margin-bottom: 1.1rem; }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.7rem; font-size: 0.88rem; }
.footer-links a { color: rgba(255, 255, 255, 0.65); }
.footer-links a:hover { color: var(--color-light); }
.footer-contact-line { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.85rem; margin-bottom: 0.85rem; }
.footer-contact-line i { color: var(--color-secondary); margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom .heart { color: var(--color-secondary); }

/* ---------------------------------------------------------------------
   Responsivo
   --------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .navbar-nav { padding: 1rem 0; }
  .navbar-nav .nav-link { padding: 0.6rem 0; }
  .site-header .btn-cta-solid { margin-top: 0.75rem; width: 100%; text-align: center; }
  .hero { padding: 3rem 0 0; text-align: center; }
  .hero-actions, .hero-feats { justify-content: center; }
  .hero-image { margin-top: 3.25rem; }
  .hero-photo-badge { left: 50%; transform: translateX(-50%); text-align: left; }
  .why-card { left: 50%; transform: translateX(-50%); }
  .why-media-wrap { margin-bottom: 3rem; }
}

@media (max-width: 767.98px) {
  .stats-float-wrap { margin-top: 2rem; }
}

@media (max-width: 575.98px) {
  .cta-banner__box { text-align: center; flex-direction: column; }
  .cta-banner__box .btn-cta { width: 100%; }
  .whatsapp-float { width: 52px; height: 52px; font-size: 1.5rem; bottom: 16px; right: 16px; }
  .stats-card { padding: 1.75rem 1.25rem; }
  .btn-cta:not(.btn-cta-sm), .btn-cta-solid { white-space: normal; width: 100%; }
  .foot-grid-col { text-align: center; }

  /* Selos flutuantes sobre as imagens (hero e "Por que a Falkenburg"):
     no desktop ficam pequenos num canto; no mobile precisam encolher
     proporcionalmente para não cobrir a foto atrás deles. */
  .hero-photo-badge,
  .why-card {
    left: 0.6rem;
    transform: none;
    max-width: 62%;
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
  }
  .hero-photo-badge { bottom: 0.6rem; }
  .why-card { bottom: -0.85rem; }
  .hero-photo-badge .ic {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    font-size: 0.85rem;
  }
  .hero-photo-badge b { font-size: 0.72rem; }
  .hero-photo-badge span { font-size: 0.62rem; }
  .why-card .check-lg {
    width: 26px;
    height: 26px;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
  }
  .why-card h4 { font-size: 0.78rem; line-height: 1.3; }
  .why-card p { font-size: 0.68rem; margin-top: 0.35rem; }
  .why-media-wrap { margin-bottom: 2rem; }
}
