/* ================================================
   Blocker Blindagens — LP Custom CSS
   Paleta: Preto · Branco · Cinza
   Fonte: Sans-serif (Inter)
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* ------------------------------------------------
   VARIÁVEIS
   ------------------------------------------------ */
:root {
  --bg-base:        #000000;
  --bg-alt:         #D9D9D9;
  --bg-card:        #272727;
  --bg-card-hover:  #303030;
  --border:         #383838;
  --border-light:   rgba(255, 255, 255, 0.12);

  --text-primary:   #ffffff;
  --text-secondary: #c4c4c4;
  --text-muted:     #848484;

  --star-color:     #f0c040;
  --accent:         #ffffff;

  --transition:     all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card:    0 4px 20px rgba(0, 0, 0, 0.28);
  --shadow-lift:    0 12px 40px rgba(0, 0, 0, 0.48);

  --radius:         14px;
  --radius-sm:      8px;
  --radius-pill:    50px;

  --font-family:    'Manrope', system-ui, -apple-system, sans-serif;

  /* compatibilidade com form existente */
  --custom-primary: #ffffff;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-base);
  color: var(--text-primary);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ------------------------------------------------
   FORM BASE (preservado intacto)
   ------------------------------------------------ */
.required { color: var(--bs-danger); }

.grecaptcha-badge { display: none; }

select { cursor: pointer; }

textarea { position: relative; resize: none; }

.form-floating:has(textarea)::before {
  content: '';
  position: absolute;
  top: 1px; left: 1px; right: -1px;
  margin-right: 1.825rem;
  height: 1.625rem;
  background-color: var(--bs-body-bg);
  z-index: 1;
  border-radius: 0.375rem 0 0 0.375rem;
  pointer-events: none;
}

.form-floating:has(textarea) label { z-index: 2; }
.form-floating textarea.form-control { overflow-y: scroll; }
.form-control::placeholder { user-select: none; }

.form-floating > .form-control:focus::placeholder,
.form-floating > .form-control-plaintext:focus::placeholder {
  color: var(--bs-secondary-color);
  opacity: 0.5;
}

.was-validated .form-floating:has(textarea)::before { margin-right: 3.325rem; }
.was-validated .form-floating textarea.form-control { background-position: right 1.5rem center; }
.spinner:not([style*="display: none"]) ~ .submit-icon { display: none; }

/* ------------------------------------------------
   ANIMAÇÕES DE SCROLL (data-aos custom)
   ------------------------------------------------ */
[data-aos] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

[data-aos="fade-right"]  { transform: translateX(-44px); }
[data-aos="fade-left"]   { transform: translateX(44px); }
[data-aos="fade-up"]     { transform: translateY(32px); }

[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos-delay="500"] { transition-delay: 0.5s; }
[data-aos-delay="600"] { transition-delay: 0.6s; }

[data-aos].animated {
  opacity: 1;
  transform: translate(0, 0);
}

/* ------------------------------------------------
   NAVBAR
   ------------------------------------------------ */
#mainNav {
  background-color: transparent;
  padding: 1.25rem 0;
  transition: background-color 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
  z-index: 1050;
  border-bottom: 1px solid transparent;
}

#mainNav.scrolled {
  background-color: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  padding: 0.7rem 0;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.navbar-logo {
  height: 46px;
  width: auto;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius-sm);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus { box-shadow: none; }

.nav-link {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  padding: 0.5rem 1rem !important;
  transition: color 0.25s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: var(--text-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-link:hover { color: #ffffff !important; }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  background-color: #ffffff !important;
  color: #0a0a0a !important;
  border-radius: var(--radius-pill) !important;
  padding: 0.5rem 1.4rem !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  transition: var(--transition) !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background-color: #f0f0f0 !important;
  color: #0a0a0a !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.14) !important;
}

/* ------------------------------------------------
   HERO SECTION
   ------------------------------------------------ */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background-color: #000;
}

.hero-video-bg iframe,
#yt-bg-player {
  position: absolute;
  top: 50%;
  left: 50%;
  /* scale(1.18) empurra as bordas para fora do overflow:hidden,
     cortando o logo e o título do YouTube que ficam nas extremidades */
  width: 177.78vh;
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw;
  transform: translate(-50%, -50%) scale(1.18);
  border: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.65) 55%,
    rgba(0, 0, 0, 0.48) 100%
  );
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  padding-top: 6rem;
  padding-bottom: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.6rem;
  backdrop-filter: blur(6px);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0.7;
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.52);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-form-col {
  padding-top: 6rem;
  padding-bottom: 2rem;
}

.hero-form-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.form-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.form-card-subtitle {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 1.5rem;
}

/* Form inputs dentro do card hero */
.hero-form-card .form-control,
.hero-form-card .form-select {
  background-color: rgba(255, 255, 255, 0.07) !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
  color: var(--text-primary) !important;
  border-radius: var(--radius-sm) !important;
}

.hero-form-card .form-control:focus,
.hero-form-card .form-select:focus {
  background-color: rgba(255, 255, 255, 0.11) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  box-shadow: none !important;
  color: var(--text-primary) !important;
}

/* Label floating: cor no estado padrão e flutuado */
.hero-form-card .form-floating > label {
  color: rgba(255, 255, 255, 0.6) !important;
}

.hero-form-card .form-floating > .form-control:focus ~ label,
.hero-form-card .form-floating > .form-control:not(:placeholder-shown) ~ label,
.hero-form-card .form-floating > .form-select ~ label {
  color: rgba(255, 255, 255, 0.55) !important;
}

/* Chip de fundo atrás do label flutuado — Bootstrap usa ::after com var(--bs-body-bg) */
.hero-form-card .form-floating > .form-control:focus ~ label::after,
.hero-form-card .form-floating > .form-control:not(:placeholder-shown) ~ label::after,
.hero-form-card .form-floating > .form-select ~ label::after {
  background-color: rgba(18, 18, 18, 0.9) !important;
}

/* Ocultar a barra de máscara do textarea (base.css usa var(--bs-body-bg) = branco) */
.hero-form-card .form-floating:has(textarea)::before {
  display: none !important;
}

/* Scrollbar do textarea — visual dark */
.hero-form-card textarea::-webkit-scrollbar { width: 6px; }
.hero-form-card textarea::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 4px; }
.hero-form-card textarea::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.18); border-radius: 4px; }
.hero-form-card textarea::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.3); }

/* Placeholder: manter transparente no estado padrão (floating label behavior) */
.hero-form-card .form-floating > .form-control::placeholder {
  color: transparent !important;
}

/* Placeholder visível apenas quando o input está em foco */
.hero-form-card .form-floating > .form-control:focus::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

.hero-form-card select option {
  background-color: #1a1a1a;
  color: var(--text-primary);
}

/* ------------------------------------------------
   BOTÕES
   ------------------------------------------------ */
.btn-blocker {
  background-color: var(--text-primary);
  color: var(--bg-base);
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.82rem 2.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
  line-height: 0.9;
  transition: var(--transition);
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(255, 255, 255, 0.10);
}

.btn-blocker:hover {
  background-color: #f0f0f0;
  color: var(--bg-base);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.18);
}

/* Botão submit do form */
.btn-custom-primary {
  background-color: var(--text-primary) !important;
  border-color: var(--text-primary) !important;
  color: var(--bg-base) !important;
  font-weight: 700;
  border-radius: var(--radius-pill);
  width: 100%;
  padding: 0.82rem;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(255, 255, 255, 0.10) !important;
}

.btn-custom-primary:hover,
.btn-custom-primary:focus,
.btn-custom-primary:active {
  background-color: #f0f0f0 !important;
  border-color: #f0f0f0 !important;
  color: var(--bg-base) !important;
  filter: none !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 22px rgba(255, 255, 255, 0.18) !important;
}

/* ------------------------------------------------
   SECTION COMMONS
   ------------------------------------------------ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--text-muted);
  flex-shrink: 0;
}

.section-tag.light { color: rgba(255, 255, 255, 0.42); }
.section-tag.light::before { background: rgba(255, 255, 255, 0.42); }

.section-title {
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.22;
  margin-bottom: 1.25rem;
  letter-spacing: -0.3px;
}

.section-subtitle {
  font-size: 0.97rem;
  color: var(--text-secondary);
  max-width: 660px;
  margin: 0 auto 3.5rem;
  line-height: 1.85;
}

.section-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.section-header { margin-bottom: 3.5rem; }

/* ------------------------------------------------
   SEÇÃO VEÍCULO DE VALOR
   ------------------------------------------------ */
.section-valor {
  background-color: var(--bg-alt);
  padding: 4.5rem 0;
  overflow-x: hidden;
}

.section-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  line-height: 0;
}

.section-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  pointer-events: none;
  z-index: 1;
}

.section-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.55s ease;
  display: block;
}

.section-image-wrap:hover .section-img { transform: scale(1.025); }

/* ------------------------------------------------
   SEÇÃO PROCESSO
   ------------------------------------------------ */
.section-processo {
  background-color: var(--bg-base);
  padding: 4.5rem 0;
  overflow-x: hidden;
}

.processo-card {
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.20), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.processo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.30), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.processo-card:hover {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.processo-card:hover::before { opacity: 1; }


.processo-number {
  display: inline;
  font-size: inherit;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--text-muted);
  margin-right: 0.35rem;
}

.processo-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.45;
  margin-bottom: 0.75rem;
  margin-top: 0.6rem;
}

.processo-text {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
  margin-top: auto;
}

/* Carousel */
.processo-carousel-outer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem auto 0;
}

.processo-swiper {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.processo-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.processo-swiper .swiper-slide .processo-card {
  width: 100%;
}

.processo-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.processo-arrow:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
}

.processo-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 1.25rem;
}

.processo-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.processo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
  flex-shrink: 0;
}

.processo-dot.active {
  background: var(--text-primary);
  width: 24px;
  border-radius: 4px;
}

/* ------------------------------------------------
   SEÇÃO MATERIAIS
   ------------------------------------------------ */
.section-materiais {
  background-color: var(--bg-alt);
  padding: 6.5rem 0;
  overflow-x: hidden;
}

.materiais-diagram {
  margin-top: 3.5rem;
}

.materiais-categorias {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 2.5rem;
  margin-bottom: 2.5rem;
}

.categoria-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}

.categoria-bar {
  display: inline-block;
  width: 4px;
  height: 2rem;
  border-radius: 2px;
  flex-shrink: 0;
}

.categoria-bar--aramida { background-color: #c5e43a; }
.categoria-bar--aco     { background-color: #1d4ed8; }
.categoria-bar--overlap { background-color: #dc2626; }
.categoria-bar--outros  { background-color: #9ca3af; }

.categoria-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0;
  line-height: 1.3;
}

.categoria-lista {
  list-style: disc;
  padding-left: 1.1rem;
  margin: 0;
}

.categoria-lista li {
  font-size: 0.85rem;
  color: #444444;
  line-height: 1.75;
  margin-bottom: 0.1rem;
}

.materiais-carro {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  line-height: 0;
}

.materiais-carro img {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

/* ------------------------------------------------
   SEÇÃO DEPOIMENTOS
   ------------------------------------------------ */
.section-depoimentos {
  background-color: #0a0a0a;
  padding: 6.5rem 0;
  overflow: hidden;
  position: relative;
}

/* ── YouTube video background ───────────────────── */
.yt-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.yt-bg-wrapper iframe,
#yt-dep-player {
  position: absolute;
  top: 50%;
  left: 50%;
  /* 16:9 cover — whichever dimension fills first */
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  /* extra scale clips YouTube chrome bars (~50px top/bottom) */
  transform: translate(-50%, -50%) scale(1.18);
  border: 0;
  pointer-events: none;
}

.yt-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 1;
}

.section-depoimentos .container {
  position: relative;
  z-index: 2;
}

.depoimento-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 1.85rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.20), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.depoimento-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.depoimento-stars {
  color: var(--star-color);
  font-size: 0.78rem;
  letter-spacing: 3px;
  margin-bottom: 1.1rem;
}

.depoimento-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.85;
  font-style: italic;
  flex: 1;
  margin-bottom: 1.4rem;
}

.depoimento-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #252525, #303030);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.author-info strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.author-info span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ------------------------------------------------
   SEÇÃO SOBRE / CTA
   ------------------------------------------------ */
.section-sobre {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 8rem 0;
}

.sobre-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.34);
  z-index: 1;
}

.sobre-container {
  position: relative;
  z-index: 2;
}

.sobre-title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.18;
  margin-bottom: 1.6rem;
  letter-spacing: -0.3px;
}

.sobre-text {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.85;
  margin-bottom: 1rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ------------------------------------------------
   FOOTER
   ------------------------------------------------ */
.site-footer {
  background-color: #000000;
  padding: 3.5rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo {
  height: 42px;
  width: auto;
}

.footer-heading {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #929292;
  margin-bottom: 0.65rem;
}

.footer-contact {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.footer-contact a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.22s ease;
}

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

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.footer-divider {
  border-color: var(--border);
  margin: 2rem 0 1.25rem;
}

.footer-legal {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ── Swiper depoimentos ───────────────────────────── */
.depoimentos-swiper {
  position: relative;
  padding-bottom: 3rem;
  overflow: hidden;
}

.depoimentos-swiper .swiper-slide { height: auto; }
.depoimentos-swiper .depoimento-card { height: 100%; }

.depoimentos-swiper .swiper-pagination-bullet {
  background: var(--border);
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: var(--transition);
}

.depoimentos-swiper .swiper-pagination-bullet-active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

.depoimentos-prev,
.depoimentos-next {
  color: var(--accent) !important;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 44px  !important;
  height: 44px !important;
  top: 38%;
  transition: var(--transition);
}

.depoimentos-prev::after,
.depoimentos-next::after {
  font-size: 1rem !important;
  font-weight: 700;
}

.depoimentos-prev:hover,
.depoimentos-next:hover {
  background: var(--accent);
  color: #000 !important;
  border-color: var(--accent);
}

/* ------------------------------------------------
   SEÇÃO GALERIA
   ------------------------------------------------ */
.section-galeria {
  background-color: var(--bg-alt);
  padding: 6.5rem 0;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.galeria-item {
  border-radius: var(--radius);
  overflow: hidden;
  line-height: 0;
}

.galeria-thumb {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.32);
  transition: var(--transition);
}

.galeria-thumb:hover {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.50);
}

.galeria-thumb img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.55s ease;
  aspect-ratio: 7/5;
  object-fit: cover;
}

.galeria-thumb:hover img {
  transform: scale(1.06);
}

.galeria-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.22) 50%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.35s ease;
  opacity: 0;
}

.galeria-overlay i {
  font-size: 2rem;
  color: #fff;
  transform: scale(0.8);
  transition: transform 0.35s ease;
}

.galeria-thumb:hover .galeria-overlay {
  opacity: 1;
}

.galeria-thumb:hover .galeria-overlay i {
  transform: scale(1);
}

/* ------------------------------------------------
   HAMBURGUER — animação X ao abrir
   ------------------------------------------------ */
.navbar-toggler .navbar-toggler-icon {
  transition: opacity 0.2s ease;
}
.navbar-toggler.is-active .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6l18 18M6 24L24 6'/%3e%3c/svg%3e");
}

/* ------------------------------------------------
   RESPONSIVO — TABLET (< 992px)
   ------------------------------------------------ */
@media (max-width: 991.98px) {
  /* Corrige gutter g-5 do Bootstrap que excede o padding do container */
  .section-valor .row {
    --bs-gutter-x: 1.5rem;
  }

  #navbarNav {
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    padding: 0.5rem 0 0.75rem;
    margin-top: 0;
  }

  .navbar-nav { padding: 0 0.5rem; }
  .nav-link { padding: 0.75rem 1rem !important; }
  .nav-link::after { display: none; }

  .nav-cta {
    display: inline-block;
    margin: 0.5rem 1rem 0.5rem;
    text-align: center;
  }

  .hero-content {
    padding-top: 8rem;
    text-align: center;
  }

  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-stats { justify-content: center; }

  .hero-form-col {
    padding-top: 1.5rem;
    padding-bottom: 3.5rem;
  }

  .section-valor { padding: 5rem 0; }
  .section-processo { padding: 3.5rem 0; }
  .section-materiais { padding: 5rem 0; }
  .section-depoimentos { padding: 5rem 0; }
  .section-galeria { padding: 5rem 0; }
  .section-sobre { padding: 6rem 0; }

  /* Galeria: 2 colunas em tablet */
  .galeria-grid { grid-template-columns: repeat(2, 1fr); }
  .galeria-item:last-child { grid-column: span 2; }

  /* Materiais: 2 colunas em tablet */
  .materiais-categorias { grid-template-columns: repeat(2, 1fr); }
}

/* ------------------------------------------------
   RESPONSIVO — MOBILE (< 768px)
   ------------------------------------------------ */
@media (max-width: 767.98px) {
  /*
   * CAUSA RAIZ do scroll horizontal:
   * [data-aos="fade-left"]  usa translateX(+44px) — empurra elemento 44px para fora
   *                          da viewport à direita ANTES da animação disparar.
   * [data-aos="fade-right"] usa translateX(-44px) — idem à esquerda.
   * Fix: substituir por translateY no mobile, eliminando o deslocamento horizontal.
   */
  [data-aos="fade-right"],
  [data-aos="fade-left"] {
    transform: translateY(24px);
  }

  /* Garante que nenhum elemento ultrapasse a largura da tela */
  .container,
  section,
  .row {
    max-width: 100%;
  }

  .mc-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 0.75rem;
  }

  .mc-wrap::-webkit-scrollbar { display: none; }

  /* Anula os gutters do Bootstrap g-4 dentro do carrossel */
  .mc-wrap .mc-row {
    flex-wrap: nowrap !important;
    align-items: stretch;
    margin-left:  0 !important;
    margin-right: 0 !important;
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
  }

  /* 84 % de largura → peek de ~16 % do próximo card */
  .mc-wrap .mc-item {
    flex: 0 0 84% !important;
    max-width: 84% !important;
    padding-left:  0 !important;
    padding-right: 0.9rem !important;
    scroll-snap-align: start;
  }

  .mc-wrap .mc-item:last-child { padding-right: 0 !important; }

  /* Dots */
  .mc-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 1.1rem;
  }

  .mc-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--text-muted);
    border: none; padding: 0;
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease, border-radius 0.3s ease;
    flex-shrink: 0;
  }

  .mc-dot.active {
    width: 22px;
    border-radius: 4px;
    background: var(--text-secondary);
  }

  /* Desabilita parallax em mobile */
  .hero-section,
  .section-sobre { background-attachment: scroll; }

  /* Imagens nunca ultrapassam o container */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Swiper: garante que não cria overflow */
  .swiper,
  .swiper-wrapper {
    max-width: 100%;
  }

  .hero-title { font-size: 1.65rem; }
  .hero-content { padding-top: 7.5rem; }

  /* No mobile o hero empilha conteúdo + formulário, ficando ~150-180vh de altura.
     O iframe precisa ser maior que 100vh para cobrir a seção inteira. */
  .hero-video-bg iframe,
  #yt-bg-player {
    width: 355.56vh;   /* 200vh × 16/9 — mantém proporção 16:9 */
    height: 200vh;     /* cobre mesmo o layout mais alto empilhado */
    min-width: 100%;
    min-height: 56.25vw;
    transform: translate(-50%, -50%) scale(1.18);
  }

  .section-valor { padding: 4rem 0; }
  .section-processo { padding: 3rem 0; }
  .section-materiais { padding: 4rem 0; }
  .section-depoimentos { padding: 4rem 0; }
  .section-galeria { padding: 4rem 0; }
  .section-sobre { padding: 5rem 0; }

  .section-valor .row { flex-direction: column; }
  .section-image-wrap { margin-top: 0.5rem; }

  .hero-stats { gap: 1.5rem; }
  .stat-number { font-size: 1.7rem; }

  .depoimento-card { padding: 1.5rem; }
  .footer-logo { height: 36px; }
  .section-header { margin-bottom: 2.5rem; }

  /* Galeria: 1 coluna em mobile */
  .galeria-grid { grid-template-columns: 1fr; gap: 0.85rem; }
  .galeria-item:last-child { grid-column: span 1; }

  /* Materiais: 1 coluna em mobile */
  .materiais-categorias { grid-template-columns: 1fr; gap: 1.5rem; }

  .site-footer { padding: 2.5rem 0 1.25rem; }
  .site-footer .col-md-4 { text-align: center !important; }
}

/* ------------------------------------------------
   SEÇÕES CLARAS (bg-alt: #D9D9D9) — Valor e Materiais
   ------------------------------------------------ */

/* Tags e títulos */
.section-valor .section-tag,
.section-materiais .section-tag {
  color: #555555;
}

.section-valor .section-tag::before,
.section-materiais .section-tag::before {
  background: #555555;
}

.section-valor .section-title,
.section-materiais .section-title {
  color: #0a0a0a;
}

.section-valor .section-text {
  color: #444444;
}

.section-materiais .section-subtitle {
  color: #555555;
}

/* Borda da imagem no bg claro */
.section-valor .section-image-wrap::after {
  border-color: rgba(0, 0, 0, 0.10);
}

/* Botão CTA no bg claro */
.section-valor .btn-blocker,
.section-materiais .btn-blocker {
  background-color: #000000;
  color: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.20);
}

.section-valor .btn-blocker:hover,
.section-materiais .btn-blocker:hover {
  background-color: #1a1a1a;
  color: #ffffff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.32);
}

/* ------------------------------------------------
   SEÇÃO PARCEIROS E CLIENTES
   ------------------------------------------------ */

/* Fundo preto full-width, separado por borda sutil */
.partners-section {
  background-color: #000000;
  padding: 6.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

/* Cabeçalho centralizado */
.partners-header {
  text-align: center;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Título em branco */
.partners-title {
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.22;
  letter-spacing: -0.3px;
  margin: 0;
}

/* "Parceiros e Clientes" em cinza para contraste premium */
.partners-title-gray {
  color: var(--text-muted);
}

/* Layout: seta — viewport — seta em linha */
.partners-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Viewport: esconde o que transborda do track */
.partners-viewport {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

/* Track: fila horizontal de logos — move via transform (JS) */
.partners-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Item de logo individual */
.partners-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 1.25rem 1.5rem;
  min-height: 90px;
  box-sizing: border-box;
  transition: border-color 0.32s ease, background 0.32s ease;
}

.partners-logo-item:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.065);
}

/* Logo em escala de cinza — hover sobe a opacidade suavemente */
.partners-logo-item img {
  max-height: 50px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.65);
  opacity: 0.7;
  transition: filter 0.32s ease, opacity 0.32s ease;
  display: block;
  margin: 0 auto;
}

.partners-logo-item:hover img {
  filter: grayscale(100%) brightness(1.05);
  opacity: 1;
}

/* Setas de navegação — circulares, minimalistas */
.partners-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  line-height: 0;
  transition: background 0.28s ease, border-color 0.28s ease, opacity 0.28s ease;
}

.partners-arrow:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.28);
}

/* Desabilitado no primeiro e último slide */
.partners-arrow:disabled {
  opacity: 0.2;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Responsivo: tablet ──────────────────────────────── */
@media (max-width: 991.98px) {
  .partners-section      { padding: 5rem 0; }
  .partners-header       { margin-bottom: 2.75rem; }
  .partners-logo-item    { min-height: 80px; padding: 1rem 1.1rem; }
  .partners-logo-item img { max-height: 44px; }
}

/* ── Responsivo: mobile ──────────────────────────────── */
@media (max-width: 767.98px) {
  .partners-section         { padding: 4rem 0; overflow: hidden; }
  .partners-carousel-wrap   { gap: 0.75rem; max-width: 100%; }
  .partners-viewport        { flex: 1; min-width: 0; overflow: hidden; max-width: 100%; }
  .partners-track           { box-sizing: border-box; }
  .partners-arrow           { width: 38px; height: 38px; flex-shrink: 0; }
  .partners-logo-item       { min-height: 70px; padding: 0.9rem 0.85rem; border-radius: 10px; box-sizing: border-box; }
  .partners-logo-item img   { max-height: 36px; max-width: 100%; }
}

/* ── Responsivo: mobile pequeno ──────────────────────── */
@media (max-width: 575.98px) {
  .partners-section         { padding: 3.5rem 0; overflow: hidden; }
  .partners-header          { margin-bottom: 2rem; }
  .partners-carousel-wrap   { gap: 0.5rem; max-width: 100%; width: 100%; }
  .partners-viewport        { flex: 1; min-width: 0; overflow: hidden; }
  .partners-track           { box-sizing: border-box; }
  .partners-arrow           { width: 32px; height: 32px; flex-shrink: 0; }
  .partners-arrow svg       { width: 15px; height: 15px; }
  .partners-logo-item       { min-height: 60px; padding: 0.65rem 0.5rem; border-radius: 8px; box-sizing: border-box; }
  .partners-logo-item img   { max-height: 28px; max-width: 100%; }
}

/* ------------------------------------------------
   RESPONSIVO — MOBILE PEQUENO (< 576px)
   ------------------------------------------------ */
@media (max-width: 575.98px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Hero */
  .hero-section { background-attachment: scroll; }
  .hero-content { padding-top: 7rem; }
  .hero-title { font-size: 1.45rem; line-height: 1.25; }
  .hero-badge { font-size: 0.62rem; letter-spacing: 1.8px; }
  .hero-form-card { padding: 1.5rem 1.1rem; }
  .form-card-title { font-size: 1.05rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.25rem; }
  .stat-divider { display: none; }
  .stat-number { font-size: 1.5rem; }

  /* Sections */
  .section-title { font-size: 1.3rem; }
  .section-subtitle { font-size: 0.88rem; }
  .section-text { font-size: 0.9rem; }
  .sobre-title { font-size: 1.4rem; }

  /* Processo */
  .processo-card { padding: 1.4rem 1.1rem; }
  .processo-carousel-outer { gap: 0.5rem; }
  .processo-arrow { width: 36px; height: 36px; }
  .processo-arrow svg { width: 15px; height: 15px; }

  /* Botões */
  .btn-blocker { padding: 0.78rem 1.7rem; font-size: 0.86rem; }

  /* Depoimentos */
  .depoimento-text { font-size: 0.84rem; }
  .depoimento-card { padding: 1.4rem 1.1rem; }

  /* Footer */
  .footer-copy { font-size: 0.75rem; }
  .footer-logo { height: 34px; }

  /* Hamburguer: área de toque maior */
  .navbar-toggler { padding: 0.5rem 0.75rem; }
}

.float {
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: 40px;
  right: 40px;
  z-index: 100;
  transition: 0.5s;
}

.float:hover {
  transform: scale(1.1);
}

.float img {
  max-width: 110%;
}