/* ═══════════════════════════════════════════════════════
   ZEPHIR VARAIS — main.css
   Largura total : 1360px  (1200px + 2×80px)
   Recuos        : 80px azul escuro cada lado
   Fonte         : Tahoma
═══════════════════════════════════════════════════════ */

:root {
  --azul-escuro : #192a46;
  --azul-medio  : #2161a9;
  --amarelo     : #fad24a;
  --branco      : #ffffff;

  --page-max    : 1360px;
  --recuo       : 40px;
  --content-w   : 1200px;

  --menu-h      : 40px;
  --raio        : 40px;

  --font        : Tahoma, Geneva, Verdana, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  background-color: var(--azul-escuro);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
address { font-style: normal; }
button { font-family: var(--font); }

.page-frame {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--recuo);
}

/* ══════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════ */
.site-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--azul-escuro);
}
.header-inner-wrap {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--recuo);
}
.header-bg {
  background-color: var(--branco);
  border-bottom: 3px solid var(--amarelo);
}
.header-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0 30px;
  position: relative;
}
.header-logo { width: 300px; height: auto; }
.header-acoes {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: calc(100% / 5);
}
.header-acao {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--azul-escuro);
  text-decoration: none;
  transition: color 0.15s;
}
.header-acao svg { width: 32px; height: 32px; }
.header-acao:hover { color: var(--azul-medio); }

/* ── MENU ── */
.menu-principal {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  height: var(--menu-h);
}
.menu-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: var(--menu-h);
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--branco);
  background-color: var(--azul-medio);
  border: none;
  border-right: 3px solid var(--amarelo);
  cursor: pointer;
  white-space: nowrap;
  padding: 0 8px;
  transition: background-color 0.18s, color 0.18s;
  text-decoration: none;
  position: relative;
}
.menu-item-empresa  { border-top-left-radius: var(--raio); }
.menu-item-contato  { border-top-right-radius: var(--raio); border-right: none; }
.menu-item:hover,
.menu-dropdown-wrap:hover > .menu-toggle {
  background-color: var(--amarelo);
  color: var(--azul-escuro);
  text-decoration: none;
}
.menu-item.ativo { background-color: var(--amarelo); color: var(--azul-escuro); }
.menu-arrow { margin-left: 5px; font-size: 9px; transition: transform 0.2s; }
.menu-toggle[aria-expanded="true"] .menu-arrow { transform: rotate(180deg); }

/* ── Dropdown ── */
.menu-dropdown-wrap { position: relative; display: flex; flex: 1; }
.menu-dropdown-wrap > .menu-toggle { flex: 1; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  min-width: 100%;
  background-color: var(--amarelo);
  border-top: 2px solid var(--azul-escuro);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  z-index: 2000;
}
.menu-dropdown-wrap:hover > .dropdown,
.menu-toggle[aria-expanded="true"] + .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--azul-escuro);
  border-bottom: 1px solid rgba(25,42,70,0.12);
  transition: background-color 0.15s, color 0.15s;
}
.dropdown li a:hover,
.dropdown li a.ativo { background-color: var(--azul-escuro); color: var(--amarelo); }

/* ── Hambúrguer ── */
.menu-hamburguer {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.menu-hamburguer span {
  display: block;
  width: 26px; height: 3px;
  background-color: var(--azul-escuro);
  border-radius: 2px;
}

/* ══════════════════════════════════════════════════════
   MENU MOBILE
══════════════════════════════════════════════════════ */
.menu-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 85%; max-width: 320px;
  height: 100vh;
  background-color: var(--azul-escuro);
  z-index: 9000;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.menu-mobile.aberto { display: block; transform: translateX(0); }
.menu-mobile-inner { padding: 20px 0; display: flex; flex-direction: column; }
.menu-mobile-close {
  align-self: flex-end;
  background: none; border: none;
  color: var(--branco); font-size: 22px;
  cursor: pointer; padding: 0 20px 16px;
}
.mm-item {
  display: block; padding: 14px 20px;
  font-size: 14px; font-weight: bold;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--branco);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mm-item:hover { background-color: var(--azul-medio); }
.mm-contato { background-color: var(--amarelo); color: var(--azul-escuro); margin-top: 8px; }
.mm-grupo summary { list-style: none; cursor: pointer; }
.mm-grupo summary::-webkit-details-marker { display: none; }
.mm-grupo > ul { background-color: rgba(255,255,255,0.05); padding: 4px 0; }
.mm-grupo > ul li a {
  display: block; padding: 10px 32px;
  font-size: 13px; color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mm-grupo > ul li a:hover { color: var(--amarelo); }
.menu-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 8999;
}
.menu-overlay.aberto { display: block; }

/* ══════════════════════════════════════════════════════
   CONTENT
══════════════════════════════════════════════════════ */
.site-content { flex: 1; }
.content-bg {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--recuo);
}
.content-inner {
  background-color: var(--azul-medio);
  min-height: 400px;
  color: var(--branco);
  padding: 40px 32px 80px 32px;
}
/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.site-footer {
  background-color: var(--azul-escuro);
  margin-top: 0;
  padding-top: 0;
}
.footer-bg {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--recuo);
}
.footer-main {
  background-color: var(--branco);
  color: var(--azul-escuro);
  border-radius: 40px 40px 0 0;
  padding: 32px 32px 28px;
  min-height: 160px;
  position: relative;
  z-index: 1;
  margin-top: -40px;
}
.footer-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  flex-wrap: nowrap;
}
.footer-logo-wrap {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  align-self: center;
  padding-right: 28px;
}
.footer-logo { width: 220px; height: auto; }
.footer-col {
  flex: 0 0 220px;
  width: 220px;
  padding: 0 14px;
  border-left: 1px solid rgba(25,42,70,0.1);
}
.footer-col-title {
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--azul-medio);
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--amarelo);
  display: block;
}
.footer-col ul li { margin-bottom: 4px; }
.footer-col ul li a {
  font-size: 12px;
  color: var(--azul-escuro);
  opacity: 0.8;
  line-height: 1.5;
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--azul-medio); opacity: 1; text-decoration: underline; }
.footer-info { display: flex; flex-direction: column; gap: 9px; }
.footer-info li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 12px;
  color: var(--azul-escuro);
  line-height: 1.5;
  margin-bottom: 0;
}
.footer-info li a { color: var(--azul-escuro); opacity: 0.8; }
.footer-info li a:hover { color: var(--azul-medio); text-decoration: underline; opacity: 1; }
.footer-icon { flex-shrink: 0; width: 14px; height: 14px; color: var(--azul-medio); margin-top: 2px; }

.footer-bottom { background-color: var(--azul-escuro); padding: 10px 0; }
.footer-bottom-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--recuo);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom-inner > span { font-size: 12px; color: rgba(255,255,255,0.5); }
.footer-bottom-inner nav { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom-inner nav a { font-size: 12px; color: var(--amarelo); opacity: 0.75; }
.footer-bottom-inner nav a:hover { opacity: 1; text-decoration: underline; }

/* ══════════════════════════════════════════════════════
   UTILITÁRIOS
══════════════════════════════════════════════════════ */
.btn-primario {
  display: inline-block;
  background-color: var(--amarelo);
  color: var(--azul-escuro);
  padding: 10px 24px;
  border-radius: 3px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: background-color 0.18s, color 0.18s;
  text-decoration: none;
}
.btn-primario:hover { background-color: var(--azul-escuro); color: var(--amarelo); }
.btn-whatsapp {
  display: inline-block;
  background-color: #25D366;
  color: var(--branco);
  padding: 10px 24px;
  border-radius: 3px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background-color 0.18s;
}
.btn-whatsapp:hover { background-color: #1ebe5d; color: var(--branco); }

/* ══════════════════════════════════════════════════════
   RESPONSIVO
══════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  :root { --recuo: 40px; }
  .header-logo { width: 280px; }
  .footer-col { flex: 0 0 180px; width: 180px; }
  .footer-logo { width: 180px; }
}
@media (max-width: 960px) {
  :root { --recuo: 20px; }
  .menu-principal { display: none; }
  .menu-hamburguer { display: flex; }
  .header-bg { position: relative; }
  .footer-inner { flex-wrap: wrap; gap: 20px; }
  .footer-logo-wrap { flex: 0 0 100%; padding-right: 0; }
  .footer-col { flex: 0 0 calc(50% - 20px); width: auto; }
  .footer-main { border-radius: 16px 16px 0 0; }
}
@media (max-width: 600px) {
  :root { --recuo: 12px; --raio: 16px; }
  .header-logo { width: 200px; }
  .header-logo-wrap { padding: 12px 0 8px; }
  .header-acoes { gap: 12px; right: 12px; }
  .header-acao svg { width: 24px; height: 24px; }
  .footer-col { flex: 0 0 100%; width: 100%; border-left: none; border-top: 1px solid rgba(25,42,70,0.08); padding-top: 12px; }
  .footer-logo { width: 160px; }
  .footer-main { border-radius: 12px 12px 0 0; padding: 20px 16px 24px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 6px; }
}
@media (max-width: 380px) {
  :root { --recuo: 8px; }
  .header-logo { width: 160px; }
}

/* ══════════════════════════════════════════════════════
   HOME
══════════════════════════════════════════════════════ */
.hero-img-placeholder,
.produto-img-placeholder {
  width: 100%; height: 100%;
  background-color: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: bold;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em; text-transform: uppercase;
}

/* Hero */
.hero { position: relative; width: 100%; overflow: hidden; background-color: var(--azul-escuro); user-select: none; }
.hero-slides { position: relative; }
.hero-slide { display: none; flex-direction: column; }
.hero-slide.ativo { display: flex; }
.hero-img-wrap { width: 100%; height: 400px; overflow: hidden; background-color: var(--azul-escuro); }
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-texto { padding: 28px 32px; background-color: var(--azul-escuro); display: flex; flex-direction: column; gap: 12px; }
.hero-texto h1, .hero-texto h2 { font-size: 26px; font-weight: bold; color: var(--branco); text-transform: uppercase; letter-spacing: 0.04em; }
.hero-texto p { font-size: 15px; color: rgba(255,255,255,0.8); }
.hero-prev, .hero-next {
  position: absolute; top: 40%; transform: translateY(-50%);
  background-color: rgba(25,42,70,0.7); color: var(--amarelo);
  border: none; font-size: 32px; width: 40px; height: 60px;
  cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
}
.hero-prev { left: 0; border-radius: 0 4px 4px 0; }
.hero-next { right: 0; border-radius: 4px 0 0 4px; }
.hero-prev:hover, .hero-next:hover { background-color: var(--azul-escuro); }
.hero-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; border: 2px solid var(--amarelo); background-color: transparent; cursor: pointer; padding: 0; transition: background-color 0.2s; }
.hero-dot.ativo { background-color: var(--amarelo); }

/* Diferenciais */
.diferenciais { background-color: rgba(255,255,255,0.06); padding: 32px; }
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
}

.diferencial-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 12px 16px;
  border-radius: 4px;
  transition: background-color 0.2s;
  border-right: 2px solid var(--amarelo);
}

.diferencial-item:last-child {
  border-right: none;
}

.diferencial-item:hover { background-color: rgba(255,255,255,0.06); }
.diferencial-icone {
  width: 72px;
  height: 72px;
  color: var(--amarelo);
}
.diferencial-icone img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(87%) sepia(60%) saturate(400%) hue-rotate(350deg) brightness(105%);
}
.diferencial-item h3 { font-size: 14px; font-weight: bold; text-transform: uppercase; letter-spacing: 0.05em; color: var(--branco); }
.diferencial-item p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* Seções */
.secao-produtos, .secao-servicos, .secao-depoimentos, .secao-areas { padding: 36px 32px; }
.secao-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 24px; border-bottom: 2px solid var(--amarelo); padding-bottom: 8px; }
.secao-header h2,
.secao-produtos > h2, .secao-servicos > h2, .secao-depoimentos > h2, .secao-areas > h2 {
  font-size: 17px; font-weight: bold; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--branco);
  margin-bottom: 20px; padding-bottom: 8px;
  border-bottom: 2px solid var(--amarelo); display: inline-block;
}
.secao-header h2 { margin-bottom: 0; border-bottom: none; }
.ver-todos { font-size: 13px; font-weight: bold; color: var(--amarelo); letter-spacing: 0.04em; text-transform: uppercase; }
.ver-todos:hover { text-decoration: underline; }

/* Produtos */
.produtos-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.produto-card { background-color: var(--azul-escuro); border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; text-decoration: none; color: var(--branco); }
.produto-card:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,0.25); }
.produto-img-wrap { width: 100%; height: 180px; overflow: hidden; background-color: rgba(255,255,255,0.05); }
.produto-img-wrap img { width: 100%; height: 100%; object-fit: contain; background-color: rgba(255,255,255,0.04); }
.produto-info { padding: 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.produto-info h3 { font-size: 14px; font-weight: bold; text-transform: uppercase; letter-spacing: 0.04em; color: var(--amarelo); }
.produto-info p { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.5; flex: 1; }
.produto-link { font-size: 13px; font-weight: bold; color: var(--amarelo); margin-top: 4px; }

/* Serviços */
.servicos-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.servico-card { background-color: var(--azul-escuro); border-radius: 4px; padding: 24px 16px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; text-decoration: none; color: var(--branco); border-bottom: 3px solid transparent; transition: border-color 0.2s, transform 0.2s; }
.servico-card:hover { border-color: var(--amarelo); transform: translateY(-3px); }
.servico-icone { width: 40px; height: 40px; color: var(--amarelo); }
.servico-icone svg { width: 100%; height: 100%; }
.servico-card h3 { font-size: 13px; font-weight: bold; text-transform: uppercase; letter-spacing: 0.04em; color: var(--branco); line-height: 1.5; }

/* CTA */
.secao-cta { background-color: var(--azul-escuro); padding: 40px 32px; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-texto h2 { font-size: 20px; font-weight: bold; text-transform: uppercase; color: var(--amarelo); margin-bottom: 8px; letter-spacing: 0.04em; }
.cta-texto p { font-size: 15px; color: rgba(255,255,255,0.8); }
.cta-botoes { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* Depoimentos */
.depoimentos-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.depoimento-card { background-color: var(--azul-escuro); border-radius: 4px; padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.depoimento-estrelas { color: var(--amarelo); font-size: 18px; letter-spacing: 2px; }
.depoimento-card blockquote p { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.7; font-style: italic; }
.depoimento-card cite { font-size: 12px; font-weight: bold; color: var(--amarelo); text-transform: uppercase; letter-spacing: 0.04em; font-style: normal; }

/* Áreas */
.secao-areas { padding-bottom: 48px; }
.areas-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.areas-grid a { background-color: var(--azul-escuro); color: var(--branco); padding: 8px 18px; border-radius: 20px; font-size: 13px; font-weight: bold; text-transform: uppercase; letter-spacing: 0.04em; border: 1px solid rgba(250,210,74,0.3); transition: background-color 0.2s, color 0.2s; }
.areas-grid a:hover { background-color: var(--amarelo); color: var(--azul-escuro); border-color: var(--amarelo); }

/* Responsivo home */
@media (max-width: 1200px) {
  .produtos-grid { grid-template-columns: repeat(2,1fr); }
  .servicos-grid { grid-template-columns: repeat(3,1fr); }
  .diferenciais-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 960px) {
  .hero-img-wrap { height: 280px; }
  .depoimentos-grid { grid-template-columns: repeat(2,1fr); }
  .servicos-grid { grid-template-columns: repeat(2,1fr); }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .produtos-grid { grid-template-columns: 1fr; }
  .servicos-grid { grid-template-columns: repeat(2,1fr); }
  .depoimentos-grid { grid-template-columns: 1fr; }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .hero-img-wrap { height: 200px; }
  .hero-texto h1, .hero-texto h2 { font-size: 20px; }
  .secao-produtos, .secao-servicos, .secao-depoimentos, .secao-areas, .secao-cta, .diferenciais { padding: 24px 16px; }
  .cta-botoes { flex-direction: column; width: 100%; }
  .btn-primario, .btn-whatsapp { text-align: center; }
}

/* ══════════════════════════════════════════════════════
   PÁGINAS INTERNAS
══════════════════════════════════════════════════════ */
.pagina-header {
  padding: 40px 32px 32px;
  border-bottom: 2px solid var(--amarelo);
  margin-bottom: 32px;
}
.pagina-header h1 {
  font-size: 26px; font-weight: bold;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--branco); margin-bottom: 8px;
}
.pagina-subtitulo { font-size: 15px; color: rgba(255,255,255,0.75); }

.secao-texto { padding: 0 32px 32px; display: flex; flex-direction: column; gap: 28px; }
.texto-bloco h2 { font-size: 16px; font-weight: bold; text-transform: uppercase; letter-spacing: 0.05em; color: var(--amarelo); margin-bottom: 10px; }
.texto-bloco p { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.8; }

.produto-detalhe-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 0 32px 40px; }
.produto-detalhe-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  background-color: rgba(255,255,255,0.04);
}
.produto-detalhe-texto h2 { font-size: 16px; font-weight: bold; text-transform: uppercase; color: var(--amarelo); margin-bottom: 12px; }
.produto-detalhe-texto p { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.8; margin-bottom: 16px; }
.produto-specs { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.produto-specs li { font-size: 13px; color: rgba(255,255,255,0.8); padding-left: 16px; position: relative; }
.produto-specs li::before { content: "›"; position: absolute; left: 0; color: var(--amarelo); font-weight: bold; }

.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 0 32px 40px; }
.contato-info h2, .contato-form h2 { font-size: 16px; font-weight: bold; text-transform: uppercase; color: var(--amarelo); margin-bottom: 20px; }
.contato-info .footer-info { gap: 16px; }
.contato-info .footer-info li { color: var(--branco); font-size: 14px; }
.contato-info .footer-icon { color: var(--amarelo); width: 18px; height: 18px; }

.form-grupo { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-grupo label { font-size: 13px; font-weight: bold; text-transform: uppercase; letter-spacing: 0.04em; color: rgba(255,255,255,0.8); }
.form-grupo input,
.form-grupo select,
.form-grupo textarea {
  background-color: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  padding: 10px 12px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--branco);
  outline: none;
  transition: border-color 0.2s;
}
.form-grupo input:focus,
.form-grupo select:focus,
.form-grupo textarea:focus { border-color: var(--amarelo); }
.form-grupo select option { background-color: var(--azul-escuro); color: var(--branco); }
.form-grupo textarea { resize: vertical; min-height: 120px; }

@media (max-width: 960px) {
  .produto-detalhe-grid { grid-template-columns: 1fr; }
  .contato-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .pagina-header { padding: 24px 16px 20px; }
  .secao-texto { padding: 0 16px 24px; }
  .produto-detalhe-grid, .contato-grid { padding: 0 16px 24px; gap: 24px; }
}

/* ── Vídeo embed ── */
.video-wrap {
  position: relative; width: 100%;
  padding-bottom: 56.25%; height: 0;
  border-radius: 4px; overflow: hidden;
}
.video-wrap iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none;
}
.fotos-extras { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.fotos-extras img { width: 100%; height: 160px; object-fit: cover; border-radius: 4px; }

.produto-detalhe-grid {
  align-items: start;
}

.produto-detalhe-img {
  width: 100%;
}

.produto-detalhe-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: unset;
  border-radius: 4px;
}

/* ── Breadcrumb ── */
.breadcrumb { padding: 12px 32px 0; }
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.breadcrumb ol li + li::before { content: "›"; margin-right: 6px; }
.breadcrumb ol li a { color: rgba(255,255,255,0.6); }
.breadcrumb ol li a:hover { color: var(--amarelo); }
.breadcrumb ol li[aria-current="page"] { color: var(--amarelo); }

/* ── Galeria de fotos produto ── */
.produto-fotos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 8px;
}
.produto-fotos-dupla {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.foto-com-legenda {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.foto-legenda {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  text-align: center;
  font-style: italic;
  padding: 4px 0;
}

/* ── Feedback formulário ── */
.form-feedback {
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}
.form-sucesso {
  background-color: rgba(0, 200, 100, 0.15);
  border: 1px solid rgba(0, 200, 100, 0.4);
  color: #6effa0;
}
.form-erro {
  background-color: rgba(255, 80, 80, 0.15);
  border: 1px solid rgba(255, 80, 80, 0.4);
  color: #ffaaaa;
}

/* ── WhatsApp Flutuante ── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 12px 20px 12px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}
.whatsapp-float svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.whatsapp-float-label {
  white-space: nowrap;
}

/* ── Login menor no mobile ── */
.header-acao-login {
  font-size: 11px;
}
.header-acao-login svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .header-acao-login .header-acao-label {
    display: none;
  }
  .whatsapp-float-label {
    display: none;
  }
  .whatsapp-float {
    padding: 14px;
    border-radius: 50%;
  }
}
/* ── Header mobile fix ── */
@media (max-width: 900px) {
  .header-acao-login {
    display: none !important;
  }
  .header-logo-wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 0 8px !important;
  }
  .header-logo-wrap .header-logo {
    max-width: 160px !important;
    height: auto !important;
  }
  .header-logo-wrap .menu-hamburguer {
    display: flex !important;
  }
}

@media (max-width: 600px) {
  .header-acao-login {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: var(--azul-escuro);
    text-decoration: none;
    min-width: 36px;
    flex-shrink: 0;
  }
  .header-acao-login svg {
    width: 22px;
    height: 22px;
  }
  .header-acao-login .header-acao-label {
    display: block !important;
    font-size: 9px;
    font-weight: bold;
  }
  .header-logo-wrap {
    display: grid !important;
    grid-template-columns: 40px 1fr 40px !important;
    align-items: center !important;
    width: 100% !important;
    padding: 0 8px !important;
  }
  .header-logo-wrap a:nth-child(2) {
    display: flex !important;
    justify-content: center !important;
  }
}
  .header-acao-login {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: var(--azul-escuro);
  
  .header-logo-wrap .header-logo {
    max-width: 150px !important;
    height: auto !important;
  }
  .header-logo-wrap .menu-hamburguer {
    display: flex !important;
    justify-content: center !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .header-acoes { display: none !important; }
}
/* ── Esconde login no desktop ── */
@media (min-width: 601px) {
  .header-acao-login {
    display: none !important;
  }
}
