:root {
--bg: #0f172a;
--surface: #111827;
--surface-strong: #1e293b;
--text: #ffffff;
--muted: rgba(255, 255, 255, 0.74);
--line: rgba(255, 255, 255, 0.08);
--primary: #3b8bf9;
--primary-dark: #2d6fd1;
--secondary: #542f93;
--accent: rgba(84, 47, 147, 0.34);
--shadow: 0 18px 45px rgba(2, 6, 23, 0.45);
}

* {
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
}

body {
margin: 0;
font-family: "Manrope", sans-serif;
background:
radial-gradient(circle at top left, rgba(59, 139, 249, 0.22), transparent 30%),
radial-gradient(circle at top right, rgba(84, 47, 147, 0.24), transparent 32%),
linear-gradient(180deg, #111827 0%, var(--bg) 50%, #09111f 100%);
color: var(--text);
}

img {
display: block;
max-width: 100%;
}

a {
color: inherit;
}

.site-header {
position: sticky;
top: 0;
z-index: 10;
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
padding: 18px 5vw;
backdrop-filter: blur(18px);
background: rgba(15, 23, 42, 0.9);
border-bottom: 1px solid var(--line);
}

.logo {
display: flex;
align-items: center;
gap: 14px;
text-decoration: none;
}

.logo img {
width: 62px;
height: 62px;
object-fit: contain;
}

.logo strong,
.site-nav a,
h1,
h2,
h3 {
font-family: "Sora", sans-serif;
}

.logo strong {
display: block;
font-size: 1rem;
}

.logo span {
display: block;
font-size: 0.88rem;
color: var(--muted);
}

.site-nav {
display: flex;
align-items: center;
gap: 18px;
}

.site-nav a {
text-decoration: none;
font-size: 0.95rem;
}

.site-nav a:hover {
color: var(--primary);
}

.menu-toggle {
display: none;
border: 0;
background: rgba(30, 41, 59, 0.95);
color: var(--text);
border-radius: 12px;
padding: 10px 14px;
font-size: 1.3rem;
box-shadow: var(--shadow);
cursor: pointer;
}

.hero,
.section {
padding: 80px 5vw;
}

.hero {
display: grid;
grid-template-columns: 1.2fr 0.8fr;
gap: 32px;
align-items: center;
min-height: calc(100vh - 100px);
}

.eyebrow {
display: inline-block;
margin: 0 0 12px;
padding: 8px 12px;
border-radius: 999px;
background: rgba(59, 139, 249, 0.16);
color: #9bc2ff;
font-weight: 700;
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 0.08em;
}

h1 {
margin: 0 0 18px;
font-size: clamp(2.5rem, 6vw, 4.6rem);
line-height: 1.05;
}

.hero-text,
.section-heading p,
.info-card p,
.step p,
.card p,
.contact-box p {
color: var(--muted);
font-size: 1.02rem;
line-height: 1.7;
}

.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 14px;
margin: 28px 0 20px;
}

.botao {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 14px 22px;
border-radius: 14px;
text-decoration: none;
font-weight: 800;
transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.botao:hover {
transform: translateY(-2px);
}

.botao-principal {
background: var(--primary);
color: #ffffff;
}

.botao-principal:hover {
background: var(--primary-dark);
}

.botao-secundario {
background: transparent;
border: 1px solid rgba(255, 255, 255, 0.16);
color: var(--text);
}

.hero-points {
display: flex;
flex-wrap: wrap;
gap: 12px;
padding: 0;
margin: 0;
list-style: none;
}

.hero-points li {
padding: 10px 14px;
background: rgba(30, 41, 59, 0.88);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 999px;
font-weight: 600;
}

.hero-meta {
display: flex;
flex-wrap: wrap;
gap: 16px;
margin-top: 18px;
color: var(--muted);
}

.hero-meta span {
display: inline-flex;
gap: 6px;
align-items: center;
}

.hero-card,
.info-card,
.card,
.step,
.contact-box,
.faq-item {
background: rgba(30, 41, 59, 0.94);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 28px;
box-shadow: var(--shadow);
}

.hero-card {
  padding: 24px;
  position: relative;
  overflow: hidden;
  background: rgba(30, 41, 59, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-media {
  width: 100%;
  height: 300px;
  background: #0f172a;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tag {
position: absolute;
top: 20px;
right: 20px;
padding: 8px 12px;
border-radius: 999px;
background: rgba(84, 47, 147, 0.9);
color: #ffffff;
font-weight: 800;
font-size: 0.85rem;
}

.section {
animation: fadeUp 0.8s ease both;
}

.section-light {
background: linear-gradient(180deg, rgba(17, 24, 39, 0.55), rgba(17, 24, 39, 0.15));
}

.section-accent {
background: linear-gradient(135deg, rgba(59, 139, 249, 0.18), rgba(84, 47, 147, 0.22));
}

.section-heading {
max-width: 760px;
margin-bottom: 28px;
}

.section-heading h2 {
margin: 0 0 12px;
font-size: clamp(1.8rem, 4vw, 3rem);
}

.info-grid,
.grid,
.steps {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 22px;
}

.faq-list {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 22px;
}

.info-card,
.card,
.step,
.faq-item {
padding: 24px;
}

.card {
transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
transform: translateY(-6px);
box-shadow: 0 22px 44px rgba(2, 6, 23, 0.6);
}

.card-image {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 16px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 20px;
  display: block;
}

.card h3,
.info-card h3,
.step h3,
.faq-item h3,
.hero-card h2,
.contact-box h3 {
margin: 0 0 12px;
}

.faq-item p {
margin: 0;
color: var(--muted);
line-height: 1.7;
}

.contact-box strong,
.hero-meta strong {
color: var(--text);
}

.preco{
display:block;
margin:10px 0;
font-size:1.3rem;
font-weight:900;
color:#3B8BF9;
}

.steps {
counter-reset: passos;
}

.step span {
display: inline-flex;
align-items: center;
justify-content: center;
width: 44px;
height: 44px;
border-radius: 50%;
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: #fff;
font-weight: 800;
margin-bottom: 18px;
}

.contact-box {
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
padding: 28px;
}

.site-footer {
padding: 30px 5vw 60px;
text-align: center;
color: var(--muted);
}

.whatsapp-float {
position: fixed;
right: 20px;
bottom: 20px;
display: inline-flex;
align-items: center;
justify-content: center;
width: 58px;
height: 58px;
border-radius: 50%;
background: #20c863;
color: #fff;
font-size: 1.2rem;
font-weight: 900;
text-decoration: none;
box-shadow: 0 16px 30px rgba(32, 200, 99, 0.35);
}

.whatsapp-float{
font-size:22px;
}

.catalog-page {
min-height: 100vh;
}

.catalog-hero {
padding: 70px 5vw 30px;
}

@keyframes fadeUp {
from {
opacity: 0;
transform: translateY(18px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@media (max-width: 960px) {
.hero,
.info-grid,
.grid,
.steps,
.faq-list,
.contact-box {
grid-template-columns: 1fr;
}

.hero {
min-height: auto;
padding-top: 56px;
}

.contact-box {
display: grid;
}
}

@media (max-width: 768px) {
.site-header {
flex-wrap: wrap;
}

.menu-toggle {
display: inline-flex;
}

.site-nav {
display: none;
width: 100%;
flex-direction: column;
align-items: flex-start;
padding: 14px 0 4px;
}

.site-nav.active {
display: flex;
}

.hero,
.section,
.catalog-hero {
padding-left: 20px;
padding-right: 20px;
}

.hero-actions {
flex-direction: column;
align-items: stretch;
}

.botao {
width: 100%;
}
}

.modal{

display:none;
position:fixed;
z-index:999;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
justify-content:center;
align-items:center;

}

.modal-conteudo{

max-width:90%;
max-height:80%;
border-radius:10px;
animation:zoom 0.3s;

}

@keyframes zoom{
from{transform:scale(0.7);}
to{transform:scale(1);}
}

.fechar{

position:absolute;
top:20px;
right:30px;
color:white;
font-size:40px;
cursor:pointer;

}

.card img{
cursor:pointer;
}

.filtros-categorias {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.filtro-btn {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(30, 41, 59, 0.9);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: 0.2s ease;
}

.filtro-btn:hover,
.filtro-btn.ativo {
  background: var(--primary);
  border-color: var(--primary);
}

.card-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.produto-modal {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 999;
}

.produto-modal.ativo {
  display: flex;
}

.produto-modal-box {
  width: min(1100px, 100%);
  background: #111827;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 24px;
  position: relative;
  box-shadow: 0 24px 50px rgba(0,0,0,0.45);
}

.produto-modal-fechar {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

.produto-modal-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.produto-midia-principal {
  background: #0f172a;
  border-radius: 20px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.produto-midia-principal img,
.produto-midia-principal video {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.produto-miniaturas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.miniatura-btn {
  border: 1px solid rgba(255,255,255,0.08);
  background: #1e293b;
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  width: 88px;
  height: 88px;
}

.miniatura-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.miniatura-video {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  padding: 10px;
}

.produto-info h2 {
  margin-bottom: 14px;
}

.produto-info p {
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .produto-modal-grid {
    grid-template-columns: 1fr;
  }

  .produto-midia-principal {
    min-height: 280px;
  }
}