/* ================================================
   FROTA BRASIL – Componentes Extras
   Mapa, Depoimentos, Parceiros, Vídeo,
   Galeria, LGPD, Orçamento
   ================================================ */

/* ================================================
   QUALIDADE DE IMAGENS – Nitidez e tratamento visual
   ================================================ */
.prod-card-img,
.produto-img,
.prod-panel-hero-bg,
.galeria-img,
.noticia-img,
.n-card-img,
.featured-event-img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: brightness(1.02) contrast(1.05) saturate(1.05);
}
/* Imagens <img> de produtos: proporção, nitidez e tratamento visual */
.sobre-home-img img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: brightness(1.02) contrast(1.05) saturate(1.05);
}
.lightbox img {
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: brightness(1.02) contrast(1.05) saturate(1.05);
}

/* DOWNLOADS DE PRODUTO */
.prod-downloads {
  padding: 28px 32px;
  background: #f8fafc;
  border-top: 2px solid var(--accent);
}
.prod-downloads h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.prod-downloads h4 i { color: var(--accent); }
.prod-downloads-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-download:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-download i { font-size: 1rem; }
button.btn-download { border: none; cursor: pointer; font-family: inherit; }

/* PDF DROPDOWN (botões Manual / Descritivo) */
.pdf-btn-wrap { position: relative; display: inline-block; }
.pdf-btn-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 290px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  border: 1px solid #e8e8e8;
  z-index: 9999;
  overflow: hidden;
}
.pdf-btn-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  text-decoration: none;
  color: #333;
  font-size: 0.85rem;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s;
}
.pdf-btn-dropdown-item:last-child { border-bottom: none; }
.pdf-btn-dropdown-item:hover { background: #f9f5ee; }
.pdf-btn-dropdown-item .fa-file-pdf { color: #c62828; font-size: 1rem; flex-shrink: 0; }
.pdf-btn-dropdown-item-name { flex: 1; font-weight: 500; line-height: 1.3; }
.pdf-btn-dropdown-item-size { color: #999; font-size: 0.77rem; white-space: nowrap; }
.pdf-btn-dropdown-item .fa-download { color: #ccc; flex-shrink: 0; }
.pdf-btn-dropdown-item:hover .fa-download { color: var(--primary, #1a2942); }
.pdf-btn-dropdown-loading,
.pdf-btn-dropdown-empty {
  padding: 14px 16px;
  color: #999;
  font-size: 0.85rem;
  text-align: center;
}
.pdf-chevron { font-size: 0.7rem !important; transition: transform 0.2s; }
.btn-pdf-trigger.active .pdf-chevron { transform: rotate(180deg); }

/* BADGE 30 ANOS NO FOOTER */
.footer-badge-30 {
  display: block;
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-top: 10px;
  mix-blend-mode: screen;
  opacity: 0.92;
  transition: opacity 0.3s;
}
.footer-badge-30:hover { opacity: 1; }

/* BADGE ANFIR NO FOOTER */
.footer-badge-anfir {
  display: block;
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-top: 10px;
  opacity: 0.92;
  transition: opacity 0.3s;
}
.footer-badge-anfir:hover { opacity: 1; }

/* MAPA */
.mapa-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 380px;
}
.mapa-wrapper iframe { width: 100%; height: 100%; border: 0; }

/* DEPOIMENTOS */
.depoimentos-section { background: var(--light); }
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.depoimento-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.depoimento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.depoimento-quote {
  font-size: 3.5rem;
  color: var(--accent);
  opacity: 0.12;
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: -12px;
}
.depoimento-texto {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.depoimento-autor {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--gray-light);
  padding-top: 18px;
}
.depoimento-avatar {
  width: 48px; height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.depoimento-nome strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
}
.depoimento-nome span { font-size: 0.8rem; color: var(--gray); }
.depoimento-stars { color: #f59e0b; font-size: 0.82rem; margin-top: 3px; }

/* PARCEIROS */
.parceiros-section { background: var(--white); padding: 64px 0; }
.parceiros-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 48px;
}
.parceiro-item {
  background: var(--light);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 144px;
  height: 88px;
  transition: var(--transition);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
}
.parceiro-item:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.parceiro-item img {
  max-height: 60px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}
.parceiro-item:hover img {
  transform: scale(1.05);
}

/* VIDEO */
.video-section { background: var(--primary); padding: 64px 0; }
.video-section .section-tag { color: rgba(255,255,255,0.5); }
.video-section .section-header h2 { color: var(--white); }
.video-section .section-header h2 strong { color: rgba(255,255,255,0.6); }
.video-section .section-header p { color: rgba(255,255,255,0.5); }
.video-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 64px rgba(0,0,0,0.5);
  max-width: 900px;
  margin: 0 auto;
  /* Mais largura e menos altura visual (formato mais "cinema") */
  aspect-ratio: 21/9;
  background: #000;
}

@media (max-width: 768px) {
  .video-section {
    padding: 48px 0;
  }
  .video-wrapper {
    max-width: 100%;
    box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  }
}
.video-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  color: var(--white);
  gap: 16px;
  cursor: pointer;
  transition: var(--transition);
}
.video-play-btn {
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.12);
  border: 3px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  padding-left: 4px;
  transition: var(--transition);
}
.video-placeholder:hover .video-play-btn {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.1);
}
.video-placeholder p {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.6;
}

/* GALERIA */
.galeria-section { background: var(--light); }
.galeria-subcat { margin-top: 40px; }
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.galeria-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #d1d5db;
  cursor: pointer;
  aspect-ratio: 4/3;
  min-height: 0;
}
.galeria-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.galeria-item:hover .galeria-img { transform: scale(1.06); }
.galeria-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--white);
  font-size: 1.6rem;
}
.galeria-item:hover .galeria-overlay { opacity: 1; }

/* LIGHTBOX */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  color: var(--white); font-size: 2rem;
  background: none; border: none; cursor: pointer;
  opacity: 0.7; transition: var(--transition);
}
.lightbox-close:hover { opacity: 1; }

/* LGPD BANNER */
.lgpd-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--primary);
  color: rgba(255,255,255,0.82);
  padding: 18px 0;
  z-index: 9999;
  border-top: 3px solid var(--accent);
  transform: translateY(0);
  transition: transform 0.45s ease;
}
.lgpd-banner.hidden { transform: translateY(110%); pointer-events: none; }
.lgpd-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.lgpd-text { flex: 1; min-width: 240px; font-size: 0.84rem; line-height: 1.6; }
.lgpd-text strong { color: var(--white); }
.lgpd-text a { color: rgba(255,255,255,0.6); text-decoration: underline; }
.lgpd-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-lgpd-ok {
  padding: 10px 28px;
  background: var(--accent);
  color: var(--white);
  border: none; border-radius: var(--radius);
  font-family: var(--font-head); font-weight: 700; font-size: 0.84rem;
  cursor: pointer; transition: var(--transition);
  white-space: nowrap;
}
.btn-lgpd-ok:hover { background: var(--accent-hover); }
.btn-lgpd-recusar {
  padding: 10px 18px;
  background: transparent;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  font-family: var(--font-head); font-size: 0.8rem;
  cursor: pointer; transition: var(--transition);
  white-space: nowrap;
}
.btn-lgpd-recusar:hover { color: var(--white); border-color: rgba(255,255,255,0.45); }

/* ORCAMENTO PAGE */
.orcamento-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 56px;
  align-items: start;
}
.form-section-title {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 28px 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-light);
}
.form-section-title:first-of-type { margin-top: 0; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  display: block;
}
.orcamento-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.orcamento-form .form-group { margin-bottom: 0; }
.orcamento-form .form-group.full { margin-bottom: 16px; }
.form-obs { font-size: 0.78rem; color: var(--gray); margin-top: 12px; text-align: center; }

.orcamento-info { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 100px; }
.orcamento-card {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.orcamento-card .info-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.orcamento-card h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.orcamento-card p { font-size: 0.87rem; color: var(--gray); line-height: 1.6; }
.orcamento-destaque {
  background: var(--primary);
  color: rgba(255,255,255,0.75);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.87rem;
  line-height: 1.6;
}
.orcamento-destaque i { color: rgba(255,255,255,0.35); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }

/* ================================================
   CLIENTES
   ================================================ */
.clientes-section {
  background: #0d0d0d;
  padding: 0;
}
.clientes-title-bar {
  background: linear-gradient(135deg, #080e1a 0%, #111827 50%, #080e1a 100%);
  padding: 36px 20px;
  text-align: center;
  border-top: 3px solid #c8a84b;
  border-bottom: 2px solid rgba(200,168,75,0.25);
  position: relative;
}
.clientes-eyebrow {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: #c8a84b;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.clientes-eyebrow::before,
.clientes-eyebrow::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #c8a84b;
  opacity: 0.6;
}
.clientes-headline {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.25;
}
.clientes-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 44px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.cliente-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 144px;
  height: 72px;
  padding: 14px 22px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  transition: all 0.25s;
}
.cliente-logo:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
}
.cliente-logo img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.cliente-logo:hover img { opacity: 1; }
.cliente-logo.with-bg {
  background: #fff;
  border-color: rgba(255,255,255,0.15);
}
.cliente-logo.with-bg:hover { background: #fff; border-color: rgba(255,255,255,0.4); }
.cliente-logo.with-bg img {
  filter: none;
  opacity: 0.85;
}
.cliente-logo.with-bg:hover img { opacity: 1; }
/* Fallback estilizado quando não há imagem */
.cliente-nome-fallback {
  display: none;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.3;
}
.cliente-logo.with-bg .cliente-nome-fallback {
  color: #222;
}

/* RESPONSIVE EXTRAS */
@media (max-width: 1000px) {
  .orcamento-grid { grid-template-columns: 1fr; }
  .orcamento-info { position: static; }
  .depoimentos-grid { grid-template-columns: 1fr 1fr; }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .depoimentos-grid { grid-template-columns: 1fr; }
  .parceiro-item { min-width: 110px; padding: 12px 16px; font-size: 0.78rem; }
  .orcamento-form .form-row { grid-template-columns: 1fr; }
  .lgpd-inner { flex-direction: column; gap: 14px; }
  .lgpd-btns { width: 100%; }
  .btn-lgpd-ok, .btn-lgpd-recusar { flex: 1; text-align: center; }
  .galeria-grid { grid-template-columns: 1fr 1fr; }
}

/* ================================================
   VÍDEO INSTITUCIONAL
   ================================================ */
.video-section { background: var(--light); }
/* Texto legível sobre fundo claro – sobrescreve regras anteriores com fundo escuro */
.video-section .section-tag {
  color: var(--accent);
  letter-spacing: 3px;
  opacity: 1;
}
.video-section .section-header h2 {
  color: var(--primary);
  text-shadow: none;
}
.video-section .section-header h2 strong {
  color: var(--accent);
}
.video-section .section-header p {
  color: #4b5563;
  opacity: 1;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ================================================
   NOSSAS LINHAS DE PRODUTOS (Home)
   ================================================ */
.linhas-section { background: var(--white); }

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

.linha-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 36px 32px;
  border-top: 4px solid var(--primary);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.linha-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}
.linha-pesada { border-top-color: var(--primary); }
.linha-leve   { border-top-color: var(--accent); }

.linha-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
}
.linha-card-header i {
  font-size: 2rem;
  color: var(--navy);
  background: rgba(10,26,58,0.08);
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.linha-leve .linha-card-header i { color: var(--accent); background: rgba(201,168,76,0.1); }
.linha-card-header h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 2px;
}
.linha-card-header span {
  font-size: 0.82rem;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.linha-produtos-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.linha-produtos-list li {
  font-size: 0.92rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.linha-produtos-list li i {
  color: var(--accent);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.linha-desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  flex: 1;
}

.diferenciais-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: center;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 32px;
}
.diferencial-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.diferencial-item i {
  color: #4ade80;
  font-size: 1rem;
}

.linhas-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .linhas-grid { grid-template-columns: 1fr; }
  .diferenciais-banner { padding: 20px; gap: 10px 16px; }
}

/* ================================================
   FLOATING PRODUCT NAV – todas as páginas
   ================================================ */
.float-prodnav {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 990;
  display: flex;
  align-items: stretch;
}
.float-prodnav-panel {
  width: 0;
  max-height: 72vh;
  overflow: hidden;
  background: #0f0f0f;
  display: flex;
  flex-direction: column;
  transition: width 0.32s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -6px 0 28px rgba(0,0,0,0.45);
  border-radius: var(--radius) 0 0 var(--radius);
}
.float-prodnav.open .float-prodnav-panel {
  width: 200px;
  overflow-y: auto;
  scrollbar-width: none;
}
.float-prodnav-panel::-webkit-scrollbar { display: none; }
.float-prodnav-panel-header {
  padding: 20px 18px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.float-prodnav-panel-header span {
  display: block;
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.float-prodnav-panel-header strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.3px;
}
.float-prodnav-group {
  font-family: var(--font-head);
  font-size: 0.57rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 18px 5px;
}
.float-prodnav-group:first-of-type { padding-top: 10px; }
.float-prodnav-link {
  display: block;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 18px;
  text-decoration: none;
  border-left: 3px solid transparent;
  white-space: nowrap;
  transition: all 0.2s;
}
.float-prodnav-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-left-color: var(--accent);
}
.float-prodnav-tab {
  background: #111111;
  border: none;
  cursor: pointer;
  width: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-left: 3px solid var(--accent);
  color: rgba(255,255,255,0.75);
  transition: background 0.2s, color 0.2s;
  box-shadow: -3px 0 12px rgba(0,0,0,0.3);
  padding: 18px 0;
  border-radius: var(--radius) 0 0 var(--radius);
}
.float-prodnav.open .float-prodnav-tab { border-radius: 0; }
.float-prodnav-tab:hover { background: #1c1c1c; color: #fff; }
.float-prodnav-tab i { font-size: 1rem; }
.float-prodnav-tab-label {
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  transform: rotate(180deg);
  color: inherit;
}

@media (max-width: 768px) {
  .float-prodnav {
    top: auto;
    bottom: 80px;
    transform: none;
  }
  .float-prodnav-tab {
    width: 38px;
    padding: 12px 0;
  }
  .float-prodnav-panel {
    max-height: 60vh;
  }
}

/* ================================================
   SELO ANFIR – Rodapé
   ================================================ */
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom-copy { flex: 1; min-width: 0; }
.footer-anfir-seal {
  height: 58px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.88;
  display: block;
  transition: opacity 0.2s;
}
.footer-anfir-seal:hover { opacity: 1; }
@media (max-width: 600px) {
  .footer-anfir-seal { height: 44px; }
  .footer-bottom .container { gap: 14px; }
}

/* ================================================
   CANAL YOUTUBE
   ================================================ */
.yt-section { background: var(--white); }
.yt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.yt-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  cursor: pointer;
  background: #000;
  box-shadow: 0 4px 18px rgba(0,0,0,0.13);
  transition: transform 0.22s, box-shadow 0.22s;
}
.yt-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.22);
}
.yt-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s, transform 0.35s;
}
.yt-card:hover img { opacity: 0.82; transform: scale(1.04); }
.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background: rgba(220,38,38,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  padding-left: 3px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
  transition: transform 0.2s, background 0.2s;
}
.yt-card:hover .yt-play-btn {
  transform: translate(-50%, -50%) scale(1.14);
  background: #dc2626;
}
.yt-card-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 100%);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 34px 14px 12px;
  line-height: 1.4;
}
.yt-channel-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 36px;
  padding: 13px 32px;
  background: #dc2626;
  color: #fff;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.yt-channel-link:hover { background: #b91c1c; transform: translateY(-2px); }
.yt-section-cta { text-align: center; }
/* Modal YouTube */
.yt-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 20000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.yt-modal-overlay.open { display: flex; }
.yt-modal-box {
  position: relative;
  width: 100%;
  max-width: 860px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
}
.yt-modal-box iframe { width: 100%; height: 100%; border: 0; display: block; }
.yt-modal-close {
  position: absolute;
  top: -42px;
  right: 0;
  color: #fff;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.2s;
  line-height: 1;
}
.yt-modal-close:hover { opacity: 1; }
@media (max-width: 768px) {
  .yt-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
}
@media (max-width: 480px) {
  .yt-grid { grid-template-columns: 1fr; }
  .yt-modal-close { top: -36px; font-size: 1.6rem; }
}

/* ================================================
   PDF DOWNLOADS – Botão flutuante + Modal
   ================================================ */

/* Botão flutuante (FAB) */
.pdf-fab {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9990;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.pdf-fab:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0,0,0,0.45);
}
.pdf-fab.pdf-fab-active {
  background: var(--accent);
  color: var(--primary);
}
.pdf-fab i {
  font-size: 1.05rem;
}
.pdf-fab-label {
  letter-spacing: 0.5px;
}

/* Overlay */
.pdf-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9991;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.pdf-overlay.pdf-overlay-open {
  opacity: 1;
  pointer-events: auto;
}

/* Modal */
.pdf-modal {
  position: fixed;
  bottom: 80px;
  left: 24px;
  z-index: 9992;
  width: 380px;
  max-height: 70vh;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 12px 48px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}
.pdf-modal.pdf-modal-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

/* Modal Header */
.pdf-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 22px 16px;
  border-bottom: 2px solid var(--accent);
  background: var(--primary);
  flex-shrink: 0;
}
.pdf-modal-header h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.pdf-modal-header h3 i {
  color: var(--accent);
}
.pdf-modal-header p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin: 4px 0 0;
}
.pdf-modal-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
  line-height: 1;
}
.pdf-modal-close:hover {
  color: var(--white);
}

/* Modal Body */
.pdf-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
  scrollbar-width: thin;
}

/* Loading state */
.pdf-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 48px 20px;
  color: var(--gray);
  font-size: 0.9rem;
}

/* Empty state */
.pdf-empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--gray);
}
.pdf-empty i {
  font-size: 2.5rem;
  opacity: 0.25;
  margin-bottom: 12px;
  display: block;
}
.pdf-empty p {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.pdf-empty small {
  font-size: 0.8rem;
  color: var(--gray);
}

/* Lista de PDFs */
.pdf-list {
  display: flex;
  flex-direction: column;
}
.pdf-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  text-decoration: none;
  border-bottom: 1px solid var(--gray-light);
  transition: background 0.15s;
  cursor: pointer;
}
.pdf-item:last-child {
  border-bottom: none;
}
.pdf-item:hover {
  background: var(--light);
}

/* Ícone do PDF */
.pdf-item-icon {
  width: 40px;
  height: 40px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pdf-item-icon i {
  font-size: 1.1rem;
  color: #dc2626;
}

/* Info do arquivo */
.pdf-item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pdf-item-name {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.pdf-item-size {
  font-size: 0.75rem;
  color: var(--gray);
}

/* Botão de download */
.pdf-item-action {
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.pdf-item-action i {
  font-size: 0.78rem;
  color: var(--white);
}
.pdf-item:hover .pdf-item-action {
  background: var(--accent);
}
.pdf-item:hover .pdf-item-action i {
  color: var(--primary);
}

/* Responsivo */
@media (max-width: 500px) {
  .pdf-fab {
    bottom: 16px;
    left: 16px;
    padding: 10px 16px;
    font-size: 0.78rem;
  }
  .pdf-modal {
    left: 12px;
    right: 12px;
    bottom: 70px;
    width: auto;
    max-height: 65vh;
  }
}

/* Esconder FAB quando LGPD banner está visível (evita sobreposição) */
.lgpd-banner:not(.hidden) ~ .pdf-fab {
  bottom: 90px;
}
@media (max-width: 700px) {
  .lgpd-banner:not(.hidden) ~ .pdf-fab {
    bottom: 120px;
  }
}

/* ================================================
   MOBILE EXTRAS – responsividade adicional
   ================================================ */
@media (max-width: 768px) {
  /* Orcamento */
  .orcamento-grid { gap: 32px; }
  .orcamento-card { padding: 20px; }
  .form-section-title { font-size: 0.9rem; }

  /* Sobre página */
  .sobre-timeline { gap: 24px; }
  .timeline-item { gap: 16px; }
  .timeline-ano { font-size: 1.6rem; }

  /* Diferenciais */
  .diferenciais-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Vagas */
  .vagas-hero { padding: 60px 0 40px; }
}

@media (max-width: 480px) {
  /* Orcamento form */
  .orcamento-form-wrap { padding: 20px 16px; }
  .orcamento-form .form-section-title { font-size: 0.85rem; padding: 10px 0 6px; }
  .orcamento-card { padding: 16px; }
  .orcamento-cards { gap: 12px; }

  /* Diferenciais */
  .diferenciais-grid { grid-template-columns: 1fr; }
  .diferencial-card { padding: 20px 16px; }

  /* Sobre timeline */
  .timeline-item { flex-direction: column; gap: 10px; }
  .timeline-ano { font-size: 1.4rem; }

  /* Noticias */
  .noticia-card-body { padding: 16px; }

  /* Vagas */
  .vagas-hero h1 { font-size: 1.6rem; }
  .vagas-hero p { font-size: 0.9rem; }

  /* PDF dropdown */
  .pdf-btn-dropdown { min-width: 260px; }

  /* Linhas grid de cards */
  .linhas-grid { gap: 16px; }
  .linha-card-header { padding: 20px 16px 16px; }
}
