/* ============================================================
   PRODUTO-PAGE.CSS — estilos compartilhados das páginas de produto
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; scroll-padding-top: 90px; }
body { font-family: 'Inter', sans-serif; background: #fff; }
a { text-decoration: none; color: inherit; }

/* ── NAVBAR ── */
.navbar { position: sticky; top: 0; z-index: 1000; background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.navbar::before { content: ''; display: block; height: 3px; background: linear-gradient(90deg,#002855 0%,#6d28d9 50%,#7c3aed 100%); }
.navbar-inner { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.navbar-brand img { height: 44px; width: auto; display: block; mix-blend-mode: multiply; }
.nav-divider { width: 1px; height: 28px; background: #e2e8f0; flex-shrink: 0; }
.navbar-menu { display: flex; align-items: center; gap: 0; list-style: none; flex: 1; justify-content: center; }
.navbar-menu > li { position: relative; }
.navbar-menu > li > a { position: relative; display: flex; align-items: center; justify-content: center; gap: 4px; padding: .45rem .55rem; font-size: .85rem; font-weight: 500; color: #475569; transition: color .22s; white-space: nowrap; }
.navbar-menu > li > a .nav-line1,.navbar-menu > li > a .nav-line2 { display: block; font-size: .76rem; font-weight: 500; line-height: 1.2; text-align: center; }
.navbar-menu > li > a:has(.nav-line1) { flex-direction: column; gap: 1px; }
.navbar-menu > li > a::after { content: ''; position: absolute; bottom: 2px; left: 50%; right: 50%; height: 2px; background: #7b6cf6; transition: left .25s ease, right .25s ease; }
.navbar-menu > li:nth-child(1) > a { color: #0284c7; }
.navbar-menu > li:nth-child(1) > a::after { background: #0284c7; }
.navbar-menu > li:nth-child(2) > a { color: #002855; }
.navbar-menu > li:nth-child(2) > a::after { background: #002855; }
.navbar-menu > li:nth-child(3) > a { color: #2563eb; }
.navbar-menu > li:nth-child(3) > a::after { background: #7b6cf6; }
.navbar-menu > li:nth-child(4) > a { color: #0284c7; }
.navbar-menu > li:nth-child(4) > a::after { background: #0284c7; }
.navbar-menu > li:nth-child(5) > a { color: #059669; }
.navbar-menu > li:nth-child(5) > a::after { background: #059669; }
.navbar-menu > li:nth-child(6) > a { color: #7b6cf6; }
.navbar-menu > li:nth-child(6) > a::after { background: #7b6cf6; }
.navbar-menu > li:nth-child(7) > a { color: #f59e0b; }
.navbar-menu > li:nth-child(7) > a::after { background: #f59e0b; }
.navbar-menu > li > a:hover { filter: brightness(1.2); }
.navbar-menu > li > a:hover::after,.navbar-menu > li.ativo > a::after { left: .95rem; right: .95rem; }
.nav-cta-group { display: flex; align-items: center; gap: .45rem; flex-shrink: 0; }
.btn-cta { display: flex; align-items: center; gap: .5rem; background: linear-gradient(135deg,#7b6cf6 0%,#8b7cf8 100%); color: #fff; padding: .65rem 1.1rem; border-radius: 10px; font-size: .86rem; font-weight: 700; white-space: nowrap; box-shadow: 0 4px 16px rgba(123,108,246,.35); transition: transform .2s,box-shadow .2s; flex-shrink: 0; }
.btn-cta:hover { background: linear-gradient(135deg,#6d5ce7 0%,#7b6cf6 100%); transform: translateY(-2px); color: #fff; }
.btn-cta svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-cta-wa { display: flex; align-items: center; gap: .5rem; background: #25D366; color: #fff; padding: .65rem 1.1rem; border-radius: 10px; font-size: .86rem; font-weight: 700; white-space: nowrap; box-shadow: 0 4px 16px rgba(37,211,102,.3); transition: transform .2s,box-shadow .2s; flex-shrink: 0; }
.btn-cta-wa:hover { background: #1da851; transform: translateY(-2px); color: #fff; }
.btn-cta-wa svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; cursor: pointer; background: none; border: none; padding: 8px; border-radius: 8px; transition: background .2s; flex-shrink: 0; }
.nav-hamburger:hover { background: #f1f5f9; }
.nav-hamburger span { display: block; height: 2px; background: #002855; border-radius: 2px; transition: transform .3s ease,opacity .3s ease,width .3s ease; transform-origin: center; }
.nav-hamburger span:nth-child(1) { width: 24px; }
.nav-hamburger span:nth-child(2) { width: 16px; }
.nav-hamburger span:nth-child(3) { width: 24px; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 24px; }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 24px; }
.mobile-menu { display: none; overflow: hidden; max-height: 0; border-top: 1px solid #e2e8f0; background: #fff; box-shadow: 0 12px 40px rgba(0,0,0,.12); transition: max-height .35s ease; position: relative; z-index: 1001; }
.mobile-menu.open { max-height: 600px; }
.mobile-menu-inner { padding: 1rem 1.5rem 1.75rem; }
.mobile-menu-links { list-style: none; margin-bottom: 1.25rem; }
.mobile-menu-links li a { display: flex; align-items: center; padding: .9rem 0; font-size: 1rem; font-weight: 500; color: #334155; border-bottom: 1px solid #f1f5f9; transition: color .2s,padding-left .2s; }
.mobile-menu-links li:last-child a { border-bottom: none; }
.mobile-menu-links li:nth-child(1) a { color: #002855; }
.mobile-menu-links li:nth-child(2) a { color: #334155; }
.mobile-menu-links li:nth-child(3) a { color: #4f46a0; font-weight: 700; }
.mobile-menu-links li:nth-child(4) a { color: #0369a1; }
.mobile-menu-links li:nth-child(5) a { color: #065f46; }
.mobile-menu-links li:nth-child(6) a { color: #2563eb; }
.mobile-menu-links li:nth-child(7) a { color: #f59e0b; }
.mobile-menu-links li:nth-child(8) a { color: #dc2626; }
.mobile-menu-links li a:hover { filter: brightness(1.3); padding-left: .5rem; }
.mobile-link-2 { flex-direction: column !important; align-items: flex-start !important; gap: 1px !important; }
.mobile-link-2 span { font-size: 1rem; font-weight: 500; line-height: 1.3; }
.float-cta { display: none; }
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 999; opacity: 0; transition: opacity .3s; }
.mobile-overlay.open { opacity: 1; }
@media (max-width: 900px) {
  .float-cta { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 2000; box-shadow: 0 -4px 20px rgba(0,0,0,.25); }
  .float-cta-phone,.float-cta-wa { flex: 1; display: flex; align-items: center; justify-content: center; gap: .6rem; color: #fff; font-size: .95rem; font-weight: 700; padding: .9rem .5rem; text-decoration: none; transition: filter .2s; }
  .float-cta-phone { background: #6c5ce7; border-top-left-radius: 14px; }
  .float-cta-wa { background: #20c15e; border-top-right-radius: 14px; }
  .float-cta svg { width: 18px; height: 18px; flex-shrink: 0; }
  body { padding-bottom: 60px; }
  .btn-top { bottom: calc(60px + 1rem) !important; }
  .navbar-menu,.nav-divider,.nav-cta-group { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: block; }
}

/* ── PRODUCT PAGE HERO ── */
.prod-hero {
  background: #001833;
  padding: 2.5rem 1.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.prod-hero::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse at center, rgba(123,108,246,.25) 0%, transparent 70%);
  pointer-events: none;
}
.prod-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.btn-voltar {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: .45rem 1.1rem;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: .5rem;
  transition: background .2s, border-color .2s, color .2s;
  letter-spacing: .01em;
}
.btn-voltar:hover { background: rgba(123,108,246,.25); border-color: #7b6cf6; color: #fff; }
.btn-voltar svg { width: 14px; height: 14px; }
.prod-hero-logo {
  width: 200px;
  height: 90px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 1rem 1.5rem;
}
.prod-hero-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.prod-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.prod-hero-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #7b6cf6, #38bdf8);
  border-radius: 3px;
  margin: 0 auto .9rem;
}
.prod-hero-cat {
  display: inline-block;
  background: rgba(123,108,246,.2);
  color: #a78bfa;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: .28rem 1rem;
  border-radius: 50px;
}

/* ── PRODUCT CONTENT ── */
.prod-content {
  background: #f5f4ff;
  padding: 4rem 1.5rem 5rem;
}
.prod-content-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.prod-desc {
  font-size: .97rem;
  color: #334155;
  line-height: 1.85;
  border-left: 4px solid #7b6cf6;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-radius: 0 16px 16px 0;
  box-shadow: 0 4px 20px rgba(123,108,246,.08);
}
.prod-highlight {
  background: linear-gradient(135deg, #002855 0%, #3d2e9e 100%);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.prod-highlight::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 250px; height: 250px;
  background: rgba(123,108,246,.2);
  border-radius: 50%;
  pointer-events: none;
}
.prod-highlight h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .75rem;
  position: relative;
  z-index: 1;
}
.prod-highlight p {
  font-size: .92rem;
  color: rgba(255,255,255,.8);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* ── FEATURES GRID ── */
.feat-titulo {
  font-size: 1.1rem;
  font-weight: 800;
  color: #002855;
  text-align: center;
  margin-bottom: -.5rem;
  letter-spacing: -.02em;
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.feat-card {
  background: #fff;
  border: 1.5px solid #e8edf5;
  border-radius: 16px;
  padding: 1.75rem 1.25rem 1.5rem;
  text-align: center;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #7b6cf6, #38bdf8);
  transform: scaleX(0);
  transition: transform .3s;
}
.feat-card:hover::before { transform: scaleX(1); }
.feat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(123,108,246,.14); border-color: #ddd6fe; }
.feat-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0eeff;
  border-radius: 16px;
}
.feat-icon img { width: 44px; height: 44px; object-fit: contain; }
.feat-card h3 {
  font-size: .88rem;
  font-weight: 700;
  color: #002855;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-highlight { padding: 1.75rem 1.25rem; }
}
@media (max-width: 479px) {
  .feat-grid { grid-template-columns: 1fr; }
  .prod-content { padding: 2.5rem 1rem 3.5rem; }
  .prod-hero { padding: 2rem 1rem 2.5rem; }
}

/* ── RODAPÉ ── */
.rodape { background-color: #042c4c; position: relative; padding: 2rem 2.5rem 0; }
.rodape::before { content: ''; position: absolute; inset: 0; background-image: url('../assets/dot-bg.png'); background-repeat: no-repeat; background-size: cover; background-position: center; opacity: .2; pointer-events: none; }
.rodape-grid,.rodape-copy { position: relative; z-index: 1; }
.rodape-grid > :last-child { margin-left: -5rem; }
.rodape-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.8fr .85fr .85fr 2.2fr; gap: 5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.rodape-marca { margin-top: -.4rem; }
.rodape-marca img { height: 36px; filter: brightness(0) invert(1); opacity: .9; margin-bottom: .55rem; }
.rodape-marca p { font-size: .82rem; color: #fff; line-height: 1.55; margin-bottom: .65rem; }
.rodape-social { display: flex; gap: .6rem; list-style: none; }
.rodape-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; color: #fff; transition: background .2s,border-color .2s; }
.rodape-social a:hover { background: #7b6cf6; border-color: #7b6cf6; }
.rodape-social svg { width: 16px; height: 16px; }
.rodape-col h4,.rodape-contato h4 { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: .9rem; }
.rodape-links--2col { display: grid !important; grid-template-columns: max-content max-content; grid-template-rows: repeat(4, auto); grid-auto-flow: column; gap: .35rem 1.5rem !important; }
.rodape-links { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.rodape-links a { font-size: .875rem; color: #fff; transition: color .2s,padding-left .2s; }
.rodape-links a:hover { color: #a78bfa; padding-left: .35rem; }
.rodape-info { display: flex; flex-direction: column; gap: .85rem; }
.rodape-info-item { display: flex; gap: .75rem; align-items: flex-start; }
.rodape-info-icon { flex-shrink: 0; width: 28px; height: 28px; background: rgba(123,108,246,.15); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: #7b6cf6; margin-top: .1rem; }
.rodape-info-icon svg { width: 15px; height: 15px; }
.rodape-info-item h5 { font-size: .75rem; font-weight: 700; color: #fff; margin-bottom: .2rem; }
.rodape-info-item p,.rodape-info-item a,.rodape-info-text { font-size: .78rem; color: #fff; line-height: 1.5; display: block; transition: color .2s; }
.rodape-info-item a:hover { color: #a78bfa; }
.rodape-copy-wrap { position: relative; z-index: 1; background: #042c4c; border-top: 1px solid rgba(255,255,255,.2); margin: 0 -2.5rem; padding: 0 2.5rem; }
.rodape-copy { max-width: 1240px; margin: 0 auto; padding: .35rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.rodape-copy p { font-size: .78rem; color: rgba(255,255,255,.6); }
.rodape-copy a { color: #a78bfa; }
@media (max-width: 900px) { .rodape-grid > :last-child { margin-left: 0; }
.rodape-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } .rodape-marca { grid-column: 1 / -1; } }
@media (max-width: 560px) { .rodape-grid > :last-child { margin-left: 0; }
.rodape-grid { grid-template-columns: 1fr; } .rodape { padding: 3rem 1.25rem 0; } .rodape-copy { flex-direction: column; text-align: center; } }

/* ── BTN TOP ── */
.btn-top { position: fixed; bottom: 5rem; right: 1.5rem; display: flex; flex-direction: column; align-items: center; gap: 3px; background: #002855; color: #fff; border: 2px solid rgba(123,108,246,.5); border-radius: 12px; padding: .5rem .75rem; cursor: pointer; opacity: 0; visibility: hidden; transition: opacity .3s,visibility .3s,transform .2s,background .2s; z-index: 900; box-shadow: 0 4px 16px rgba(0,0,0,.3); }
.btn-top.show { opacity: 1; visibility: visible; }
.btn-top:hover { transform: translateY(-3px); background: #7b6cf6; border-color: #7b6cf6; }
.btn-top svg { width: 16px; height: 16px; }
.btn-top span { font-size: .6rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.navbar-menu > li { position: relative; }
.dropdown { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(-8px); min-width: 180px; background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,.13); padding: .5rem 0; opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s, visibility .2s; list-style: none; margin: 0; }
.navbar-menu > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown::before { content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%); border-left: 6px solid transparent; border-right: 6px solid transparent; border-bottom: 6px solid #fff; }
.dropdown li a { display: flex; align-items: center; gap: .5rem; padding: .65rem 1.25rem; font-size: .875rem; font-weight: 500; color: #475569; transition: background .15s, color .15s, padding-left .15s; }
.dropdown li a:hover { background: #f5f3ff; color: #6d28d9; padding-left: 1.5rem; }
.dropdown li a::after { display: none; }
