/* =========================
   RESET / BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset, 92px);
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #111111;
  background-color: #fff;
  background-image: url("IMG%20home/img%20fundo.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* =========================
   HEADER / NAV
========================= */
.header {
  background: #959964;
  color: #f8f6f6;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
}

/* nav */
.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.nav a {
  color: #f7f5f5;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
}

.nav a:hover {
  background: #cbd66ac9;
}

/* =========================
   SUBMENU (Serviços)
========================= */
.submenu {
  position: relative;
  display: inline-block;
}

/* O link "Serviços" herda estilo do a, mas fica dentro do submenu */
.submenu > a {
  display: inline-block;
}

/* conteúdo do submenu */
.submenu-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;

  min-width: 240px;
  background: #959964;
  border: 1px solid rgba(179, 4, 4, 0.12);
  border-radius: 10px;
  padding: 6px 0;
  margin-top: 0;

  z-index: 9999;
}

/* links do submenu */
.submenu-content a {
  display: block;
  padding: 10px 12px;
  color: #fff;
  text-decoration: none;
  border-radius: 0;
  white-space: nowrap;
}

.submenu-content a:hover {
  background: #cbd66ac9;
}

/* abre no hover */
.submenu:hover .submenu-content {
  display: block;
}

/* =========================
   HERO
========================= */
.hero {
  background: transparent;
  padding: 72px 0;
  text-align: center;
}

.hero h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #111;
}

.hero p {
  max-width: 700px;
  margin: 0 auto;
  color: #444;
}

.hero-img {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin: 0 auto 30px;
  display: block;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Ícones de redes sociais na seção hero */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f4c430;
  color: #111;
  font-size: 1.4rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgba(244, 196, 48, 0.2);
}

.social-icons a:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(244, 196, 48, 0.35);
}

.btn {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 22px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
}

.btn:hover {
  background: #333;
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 64px 0;
  background: transparent;
}

.section.gray {
  background: transparent;
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 14px;
  color: #111;
}

.section h3 {
  font-size: 1.15rem;
  margin: 22px 0 10px;
  color: #111;
}

/* textos */
.section p {
  color: #333;
}

/* listas no Sobre */
.section ul {
  margin: 10px 0 0 18px;
}

.section li {
  margin: 6px 0;
}

/* separação visual das subseções de serviços */
#servicos section {
  margin-top: 18px;
  padding-top: 10px;
  border-top: 1px solid #e8e8e8;
}

#servicos section:first-of-type {
  border-top: 0;
  padding-top: 0;
}

/* =========================
   CONTATO
========================= */
#contato p {
  margin: 6px 0;
}

#contato p i {
  margin-right: 8px;
  font-size: 1.1rem;
}

#contato .fa-envelope {
  color: #EA4335;
}

#contato .fa-whatsapp {
  color: #25D366;
}

#contato .fa-linkedin {
  color: #0A66C2;
}

#contato .fa-instagram {
  color: #E4405F;
}

#contato form {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  max-width: 450px;
  margin: 20px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

#contato form div {
  margin-bottom: 15px;
}

#contato label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #111;
  font-size: 0.9rem;
}

#contato input,
#contato textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  transition: all 0.3s;
}

#contato input:focus,
#contato textarea:focus {
  outline: none;
  border-color: #f4c430;
  box-shadow: 0 0 6px rgba(244, 196, 48, 0.15);
}

#contato textarea {
  resize: vertical;
  min-height: 100px;
}

#contato form .btn {
  background: #e9b723;
  color: #111;
  width: 100%;
  padding: 10px;
  font-size: 0.95rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s;
  margin-top: 10px;
}

#contato form .btn:hover {
  background: #a59e3e;
  box-shadow: 0 4px 10px rgba(244, 196, 48, 0.25);
}

/* =========================
   PRODUTOS
========================= */
.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.produto-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f9f9f9;
  padding: 25px;
  min-height: 320px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-left: 4px solid #f4c430;
  transition: all 0.3s;
}

.produto-card .submenu-content { left: 0; }
.produto-card .hero h2 { font-size: 1.8rem; }

.produto-card:hover {
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.produto-card h3 {
  color: #111;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.produto-capa {
  width: 100%;
  height: 200px;          /* mantém o tamanho atual */
  object-fit: contain;    /* mostra a imagem inteira */
  object-position: center;
  border-radius: 8px;
  border: 1px solid #e6e6e6;
  background: #fff;       /* evita áreas transparentes estranhas */
  display: block;
}


.produto-descricao {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.produto-detalhes {
  margin: 10px 0 15px;
  border: 1px solid #e5d08a;
  border-radius: 10px;
  background: #fffdf3;
  overflow: hidden;
}

.produto-detalhes summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 14px;
  font-weight: 700;
  color: #111;
  background: linear-gradient(135deg, #f4c430 0%, #f8d86a 100%);
}

.produto-detalhes summary::-webkit-details-marker {
  display: none;
}

.produto-detalhes summary::after {
  content: "+";
  float: right;
  font-size: 1.1rem;
}

.produto-detalhes[open] summary::after {
  content: "-";
}

.produto-detalhes-conteudo {
  padding: 14px;
  color: #444;
}

.produto-detalhes-conteudo p {
  margin-bottom: 10px;
}

.produto-detalhes-conteudo ul {
  margin: 8px 0 12px 18px;
}

.produto-detalhes-conteudo li {
  margin: 6px 0;
}

/* Card clicável */
.link-card {
  cursor: pointer;
}

/* Modal CTA */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
}

.modal.is-open { display: flex; }

.modal-content {
  background: #fff;
  padding: 22px;
  border-radius: 10px;
  max-width: 520px;
  width: 94%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  text-align: center;
}

.modal-content h3 { margin-bottom: 10px; }
.modal-content p { margin-bottom: 18px; color: #444; }
.modal-actions { display:flex; gap:12px; justify-content:center; }
.modal .btn { padding: 10px 16px; border-radius:8px; }
.modal-close { position: absolute; top: 14px; right: 18px; background: transparent; border: none; font-size: 1.2rem; cursor: pointer; }

.produto-preco {
  color: #f4c430;
  font-weight: 700;
  margin-bottom: 15px;
}

.btn-produto {
  display: inline-block;
  padding: 10px 20px;
  background: #f4c430;
  color: #111;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 700;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-produto:hover {
  background: #e0b020;
  box-shadow: 0 4px 10px rgba(244, 196, 48, 0.3);
}

.btn-produto.disabled {
  background: #ddd;
  color: #777;
  cursor: default;
  box-shadow: none;
  pointer-events: none;
}

/* Garante que o botão dentro do cartão fique alinhado ao rodapé */
.produto-card .btn-produto {
  margin-top: auto;
  align-self: flex-start;
}

.produtos-info {
  text-align: center;
  background: #f4c430;
  padding: 40px;
  border-radius: 10px;
  margin-top: 40px;
  color: #111;
}

.produtos-info h3 {
  color: #111;
  margin-bottom: 10px;
}

.produtos-info p {
  color: #111;
  margin-bottom: 20px;
}

/* Destacar botão 'Solicite Orçamento' nas páginas que usam .produtos-info */
.produtos-info .btn,
.produtos-info .btn-produto {
  background: #111;
  color: #f4c430;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: inline-block;
  border: none;
}
.produtos-info .btn:hover,
.produtos-info .btn-produto:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.18);
}

.destaque-produtos {
  background: linear-gradient(135deg, #f4c430 0%, #f9d857 100%);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(244, 196, 48, 0.3);
}

.destaque-produtos h3 {
  color: #111;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

/* =========================
   PREMIUM - Segurança Elétrica
   ========================= */
.premium-dark {
  background: #07070a;
  color: #e9e6df;
}

.premium-container { padding: 40px 0; }

.hero-premium {
  background: #f9f4e6;
  border-left: 4px solid #959964;
  padding: 26px;
  border-radius: 10px;
  margin-bottom: 22px;
}

.hero-premium h2 {
  color: #111;
  margin-bottom: 8px;
}

.hero-quotes p { color: #959964; margin: 6px 0; font-weight:700; }
.hero-sub { color: #555; margin-top: 10px; }

/* Animação para trocar pequenas frases no hero */
.hero-quotes { min-height: 48px; display:flex; align-items:center; justify-content:center; }
.hero-quotes p { opacity: 0; transform: translateY(6px); transition: opacity 0.45s ease, transform 0.45s ease; position: absolute; }
.hero-quotes p.active { opacity: 1; transform: translateY(0); }

.premium .bloco { margin: 28px 0; padding: 18px; background: rgba(255,255,255,0.02); border-radius: 10px; }
.premium .bloco h3 { color: #959964; margin-bottom: 12px; }
.premium .bullet-list { color: #333; margin-left: 18px; }
.premium .bullet-list li { margin: 6px 0; }

.grid-3 { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap:18px; }
.card { background: #f9f9f9; padding: 16px; border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: transform .18s ease, box-shadow .18s ease; }
.card:hover { transform: translateY(-6px); box-shadow: 0 8px 16px rgba(0,0,0,0.15); }
.card h4 { color: #111; margin-top: 10px; }
.card p { color: #555; }
.card .icon { font-size: 28px; width:48px; height:48px; display:flex; align-items:center; justify-content:center; background: rgba(212,175,55,0.12); color:#ffd966; border-radius:10px; }

.destaque-quote { color: #959964; font-weight:700; margin-top:14px; }
.plain { color:#666; font-style: italic; }

.cta-final { margin-top:18px; background: linear-gradient(90deg, rgba(212,175,55,0.04), transparent); padding:16px; border-radius:8px; }
.cta-actions { margin-top:12px; display:flex; gap:12px; flex-wrap:wrap; }
.btn.primary { background: #f4c430; color:#111; padding:12px 24px; border-radius:8px; font-weight:800; text-decoration:none; border:none; transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: pointer; }
.btn.primary:hover { transform: translateY(-4px); box-shadow: 0 6px 16px rgba(212, 175, 55, 0.3); }
.btn { background: #f4c430; color:#111; padding:12px 24px; border-radius:8px; text-decoration:none; border:none; font-weight:800; transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: pointer; }
.btn:hover { transform: translateY(-4px); box-shadow: 0 6px 16px rgba(212, 175, 55, 0.3); }

@media (max-width:600px){ .grid-3{grid-template-columns:1fr;} .hero-quotes p{font-size:0.95rem;} }

.destaque-produtos p {
  color: #111;
  margin-bottom: 15px;
}

.destaque-produtos a {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
}

.destaque-produtos a:hover {
  background: #333;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #959964;
  color: #fff;
  text-align: center;
  padding: 18px 0;
  margin-top: 30px;
}

.footer p {
  color: #0c0c0c;
}

/* =========================
   ÂNCORAS NÃO FICAREM ESCONDIDAS
========================= */
#home, #sobre, #servicos, #consultoria, #projetos-laudos, #acompanhamento-obras, #montagem-pci, #treinamentos, #placas-rj11, #kits-didaticos, #osciloscopio-fnirsi, #contato, #portfolio {
  scroll-margin-top: var(--header-offset, 92px);
}

/* =========================
   CARROSSEL DE PORTFÓLIO
========================= */
.carrossel-section {
  padding: 60px 0;
  background: transparent;
}

.carrossel-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

.home-brand {
  margin: 8px auto 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.home-brand-logo {
  width: min(200px, 40%);
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.22))
          drop-shadow(0 0 16px rgba(45, 145, 255, 0.45));
}

.carrossel {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  background: transparent;
}

.carrossel-inner {
  position: relative;
  width: 100%;
  height: clamp(220px, 56vw, 520px);
}

.carrossel-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.carrossel-img.active {
  opacity: 1;
}

.carrossel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 1.5rem;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  border-radius: 5px;
}

.carrossel-btn:hover {
  background: rgba(0,0,0,0.8);
}

.carrossel-btn.prev {
  left: 10px;
}

.carrossel-btn.next {
  right: 10px;
}

.carrossel-dots {
  text-align: center;
  padding: 20px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #f4c430;
}

/* =========================
   GALERIA DE PORTFÓLIO
========================= */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 10px;
}

.filter-btn {
  border: 1px solid #ddd;
  background: #fff;
  color: #111;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s;
}

.filter-btn.is-active {
  background: #f4c430;
  border-color: #f4c430;
}

.filter-btn:hover {
  background: #f9e07a;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin: 40px 0;
}

.galeria-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s;
  cursor: pointer;
}

.galeria-item:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.galeria-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.galeria-item.is-hidden {
  display: none;
}

/* =========================
   LIGHTBOX PORTFÓLIO
========================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 6px;
}

.lightbox-btn.prev {
  left: 20px;
}

.lightbox-btn.next {
  right: 20px;
}

/* =========================
   PRODUTO DETALHE - FNIRSI
========================= */
.produto-detalhe-hero {
  background: linear-gradient(135deg, #fff7d8 0%, #fef3c2 100%);
  border: 1px solid #f1d77a;
  border-radius: 12px;
  padding: 26px;
  margin-bottom: 26px;
}

.produto-chip {
  display: inline-block;
  background: #dce79a;
  color: #f4c430;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.produto-detalhe-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.produto-detalhe-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.produto-preco-box {
  margin-top: 14px;
  background: #f8fbff;
  border: 1px solid #d7e6f5;
  border-radius: 10px;
  padding: 12px;
}

.checkout-card {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #ececec;
}

.checkout-card h4 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.pagamento-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.pagamento-opcao {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 10px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #fafafa;
}

.pagamento-form select {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.resumo-pagamento {
  background: #f4c430;
  color: #111;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 8px;
}

.mensagem-pagamento {
  margin-top: 12px;
  min-height: 22px;
  font-weight: 700;
  color: #1d7a2f;
}

.galeria-produto-fnirsi .galeria-item {
  cursor: default;
}

.galeria-produto-fnirsi .galeria-item:hover {
  transform: none;
}

.carrossel-produto-top {
  padding-top: 20px;
  padding-bottom: 30px;
  background: transparent;
}

.carrossel-produto-top h2 {
  margin-bottom: 18px;
}

.kits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.kit-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.kit-img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    border: 1px solid #e6e6e6;
    background: #fff;
    display: block;
}

.kit-chip {
  display: inline-block;
  width: fit-content;
  background: #dce79a;
  color: #2b2b2b;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}

.produto-chip--kit {
  margin-bottom: 0;
  white-space: nowrap;
}

.kit-status-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.kit-status-row .kit-chip,
.kit-status-row .produto-chip--kit {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.kit-descricao {
  color: #444;
  line-height: 1.65;
}

.kit-lista {
  margin: 0 0 0 18px;
  color: #444;
}

.kit-lista li {
  margin: 6px 0;
}

.kit-preco-box {
  margin-top: auto;
  background: #f8fbff;
  border: 1px solid #d7e6f5;
  border-radius: 10px;
  padding: 12px;
}

@media (max-width: 720px) {
  .kits-grid {
    grid-template-columns: 1fr;
  }
}

.placas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.placa-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.placa-img {

    width: 100%;
    height: 200px;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    border: 1px solid #e6e6e6;
    background: #fff;
    display: block;
}


.placa-chip {
  display: inline-block;
  width: fit-content;
  background: #dce79a;
  color: #2b2b2b;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}

.placa-descricao {
  color: #444;
  line-height: 1.65;
}

.placa-lista {
  margin: 0 0 0 18px;
  color: #444;
}

.placa-lista li {
  margin: 6px 0;
}

.placa-preco-box {
  margin-top: auto;
  background: #f8fbff;
  border: 1px solid #d7e6f5;
  border-radius: 10px;
  padding: 12px;
}

@media (max-width: 720px) {
  .placas-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   ÂNCORAS
========================= */
@media (max-width: 720px) {
  .header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    gap: 10px;
  }

  /* submenu continua funcionando, mas fica alinhado */
  .submenu-content {
    left: 0;
  }

  .hero h2 {
    font-size: 1.8rem;
  }
}

.foto-sobre {
  max-width: 280px;
  width: 100%;
  border-radius: 12px;
  margin: 20px 0;
  display: block;
}

/* =========================
   SERVIÇOS PREMIUM
========================= */
.servicos-premium {
  background: linear-gradient(135deg, #f4c430 0%, #f9d97e 100%);
  padding: 60px 0;
  text-align: center;
  margin: 40px 0;
}

.servicos-premium h2 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 10px;
  font-weight: 900;
}

.servicos-premium > .container > p {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.premium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.premium-card {
  background: #f9f6f0;
  border-left: 4px solid #d4af37;
  border-radius: 12px;
  padding: 40px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.premium-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.premium-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  text-align: center;
}

.premium-card h3 {
  font-size: 1.6rem;
  color: #111;
  margin-bottom: 15px;
  text-align: center;
}

.premium-card > p {
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 25px;
  flex-grow: 1;
}

.premium-card ul {
  list-style: none;
  margin: 20px 0;
  text-align: left;
}

.premium-card li {
  padding: 8px 0;
  color: #555;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}

.premium-card li:last-child {
  border-bottom: none;
}

.premium-card .btn-produto {
  background: #f4c430;
  color: #111;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: background 0.3s ease;
  margin-top: 20px;
  align-self: center;
}

.premium-card .btn-produto:hover {
  background: #e6b800;
}

.premium-badge {
  display: inline-block;
  background: #111;
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 999px;
  margin: 0 auto 12px;
}

@media (max-width: 720px) {
  .servicos-premium h2 {
    font-size: 1.8rem;
  }

  .premium-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .premium-card {
    padding: 25px 15px;
  }
}
