:root {
  --bg-color: #ffffff; /* Fundo inteiramente branco */
  --card-bg: #ffffff;
  --text-primary: #002B5B;
  --text-muted: #64748b;
  --accent-orange: #FF8C00;
  --border-color: #e2e8f0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  display: flex;
  justify-content: center;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 680px;
  padding: 24px 20px 48px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Cabeçalho Corporativo com Logo Maior e Slogan mais próximo */
.header {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
}

.logo-container {
  width: 250px;
  margin: 0 auto 4px auto; /* Mantém a logo próxima do slogan */
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.slogan {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto 12px auto;
  line-height: 1.5;
}

/* Barra Compacta e Discreta de Selos */
.compact-badges-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 6px;
}

.compact-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-primary);
  background: #edf2f7;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.dot-separator {
  font-size: 12px;
  color: var(--accent-orange);
  font-weight: bold;
}

@media (max-width: 520px) {
  .dot-separator {
    display: none; 
  }
}

/* Links / Botões */
.links-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-primary);
  box-shadow: 0 2px 8px rgba(0, 43, 91, 0.03);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-orange);
  box-shadow: 0 6px 16px rgba(255, 140, 0, 0.12);
}

.link-card.main-highlight {
  border-color: var(--accent-orange);
  box-shadow: 0 3px 10px rgba(255, 140, 0, 0.08);
}

.icon-wrapper {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 14px;
  background-color: #fffaf5;
  border: 1px solid #ffe8d1;
}

.icon-wrapper.orange-filled {
  background-color: var(--accent-orange);
  color: white;
  border: none;
}

.icon-wrapper svg {
  width: 18px;
  height: 18px;
}

.link-label {
  flex-grow: 1;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #002B5B;
}

.dots-menu {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 4px;
  margin-left: 8px;
}

.dots-menu span {
  width: 3px;
  height: 3px;
  background-color: var(--accent-orange);
  border-radius: 50%;
}

/* Títulos de Seção com fonte maior e o Triângulo Invertido decorativo */
.section-title {
  font-size: 12px; /* Fonte maior conforme solicitado */
  font-weight: 700;
  color: var(--accent-orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 32px 0 12px 4px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px; /* Espaço entre o triângulo e o texto */
}

/* Adiciona o triângulo invertido automaticamente antes do texto */
.section-title::before {
  content: '▼';
  font-size: 10px; /* Tamanho proporcional ao texto */
  color: var(--accent-orange);
}

/* Seção de Destaques (Grid Responsivo) */
.products-section {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 4px;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 43, 91, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 43, 91, 0.08);
  border-color: var(--accent-orange);
}

.video-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

/* Selo de vídeo profissional com efeito Glassmorphism */
.video-hint {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 43, 91, 0.82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 1;
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 2;
}

.video-hint svg {
  width: 12px;
  height: 12px;
  color: var(--accent-orange);
}

.product-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.product-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Sistema de Acordeão em 2 colunas */
.catalog-accordion {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 4px;
}

@media (max-width: 580px) {
  .catalog-accordion {
    grid-template-columns: 1fr;
  }
}

details.linha-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  height: fit-content;
}

details.linha-item[open] {
  border-color: var(--accent-orange);
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.08);
}

summary.linha-summary {
  list-style: none;
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

summary.linha-summary::-webkit-details-marker {
  display: none;
}

summary.linha-summary::after {
  content: '+';
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-orange);
  transition: transform 0.2s ease;
}

details.linha-item[open] > summary.linha-summary::after {
  content: '−';
}

.categoria-list {
  padding: 10px 12px 14px 12px;
  border-top: 1px solid #f1f5f9;
  background: #ffffff; /* Fundo branco nas categorias */
}

.subgrupo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.subgrupo-tag {
  font-size: 10.5px;
  font-weight: 600;
  color: #002B5B;
  background: #fffaf5;
  border: 1px solid #ffe8d1;
  padding: 5px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  line-height: 1.3;
}

/* Formulário de Orçamento com Ícones */
.contact-form-container {
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 43, 91, 0.03);
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  pointer-events: none;
}

.form-group input {
  width: 100%;
  padding: 12px 14px 12px 40px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background-color: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.form-group input:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
  background-color: #ffffff;
}

.submit-btn {
  width: 100%;
  margin-top: 6px;
  padding: 14px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  background-color: var(--accent-orange);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.25);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.submit-btn:hover {
  background-color: #e07b00;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 140, 0, 0.35);
}

/* Modal de Vídeo Ampliado */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background: #001e3d;
  border: 1px solid var(--accent-orange);
  border-radius: 14px;
  width: 100%;
  max-width: 750px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
}

.modal-header-title {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 20px;
  background: #002B5B;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-right: 50px;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 26px;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--accent-orange);
}

.modal-video-wrapper {
  width: 100%;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-video-wrapper video {
  width: 100%;
  max-height: 75vh;
  outline: none;
}

/* Rodapé Corporativo com Redes Sociais e Copyright */
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  width: 100%;
}

.social-footer {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 14px;
}

.social-footer a {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  border: 1px solid var(--border-color);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.social-footer a:hover {
  transform: scale(1.08);
  border-color: var(--accent-orange);
}

.social-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.copyright {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.3px;
}