/* --- VARIAVEIS E RESET --- */
:root {
  --bg-page: #ffffff;
  --bg-dark: #111111;
  --bg-light: #f5f5f7;
  --neon-green: #ccff00;
  --text-main: #1a1a1a;
  --text-white: #ffffff;
  --text-gray: #666666;
  --radius: 24px;
  --font: "Manrope", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-page);
  color: var(--text-main);
  font-family: var(--font);
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
img {
  width: 100%;
  display: block;
}

/* --- TEXTOS E BOTÕES --- */
.highlight-text {
  position: relative;
  z-index: 1;
}
.highlight-text::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: -2px;
  right: -2px;
  height: 12px;
  background: var(--neon-green);
  z-index: -1;
  transform: rotate(-1deg);
}

.btn-black {
  background: #000;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-black:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  border: 2px solid #ddd;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
}
.btn-outline:hover {
  border-color: #000;
  background: #000;
  color: #fff;
}

.btn-neon {
  background: var(--neon-green);
  color: #000;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 800;
  text-transform: uppercase;
}
.btn-neon:hover {
  background: #b3e600;
}

/* --- NAVBAR --- */
.navbar {
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.95);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #eee;
}
.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-icon {
  width: 18px;
  height: 18px;
  background: var(--neon-green);
  transform: rotate(45deg);
  border-radius: 3px;
}
.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
}

/* --- HERO SECTION --- */
.hero {
  padding: 80px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pill-badge {
  background: #f0f0f0;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
}

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-text p {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 30px;
  max-width: 450px;
}
.hero-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.trust-indicators {
  display: flex;
  gap: 30px;
}
.indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}
.indicator i {
  font-size: 1.2rem;
  color: #000;
}

.hero-img-container {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-img-container img {
  border-radius: var(--radius);
  height: 500px;
  object-fit: cover;
}

.floating-offer {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.offer-icon {
  background: var(--neon-green);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* --- PERSONAL SECTION (Quem Sou) --- */
.personal-section {
  padding: 40px 0;
}
.personal-card {
  border-radius: var(--radius);
  padding: 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}
.black-bg {
  background: var(--bg-dark);
  color: var(--text-white);
}
.personal-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
.personal-content p {
  color: #aaa;
  margin-bottom: 20px;
  font-size: 1rem;
}
.link-green {
  color: var(--neon-green);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}

.personal-stats {
  display: flex;
  gap: 40px;
  border-left: 1px solid #333;
  padding-left: 40px;
}
.stat strong {
  display: block;
  font-size: 2rem;
  color: var(--neon-green);
  font-weight: 800;
}
.stat span {
  font-size: 0.9rem;
  color: #888;
}

/* --- LOJA / VENDAS --- */
.store-section {
  padding: 80px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
}

.category-pills {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.pill {
  background: transparent;
  border: 1px solid #ddd;
  padding: 8px 24px;
  border-radius: 30px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
}
.pill.active,
.pill:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 24px;
}

.product-card {
  background: var(--bg-light);
  border-radius: 20px;
  padding: 20px;
  position: relative;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-card:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Card Destaque (Ocupa 2x2) */
.product-card.featured {
  grid-column: span 2;
  grid-row: span 2;
  background: #f0f0f0;
  padding: 40px;
}
.featured .prod-img img {
  height: 350px;
  object-fit: contain;
}
.featured h3 {
  font-size: 2rem;
}
.featured .prod-price strong {
  font-size: 2rem;
}

.prod-img {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
}
.prod-img img {
  height: 180px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}
.badge.neon {
  background: var(--neon-green);
  color: #000;
}
.badge.black {
  background: #000;
  color: #fff;
}

.prod-details h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.prod-price strong {
  display: block;
  font-size: 1.2rem;
}

.btn-buy {
  margin-top: 15px;
  width: 100%;
  padding: 10px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
}
.btn-buy:hover {
  background: var(--neon-green);
  color: #000;
}

/* --- MANUTENÇÃO --- */
.maintenance-section {
  padding: 40px 0 80px;
}
.maintenance-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius);
  overflow: hidden;
}
.maint-text {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.text-neon {
  color: var(--neon-green);
}
.service-list {
  margin: 30px 0;
  list-style: none;
}
.service-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #ccc;
}
.maint-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

/* --- FOOTER & WHATSAPP --- */
footer {
  padding: 40px 0;
  color: var(--text-gray);
}
.socials {
  font-size: 1.5rem;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.socials a:hover {
  color: #000;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}

/* --- ANIMAÇÃO SCROLL --- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}

/* --- RESPONSIVO --- */
@media (max-width: 900px) {
  .hero-grid,
  .personal-card,
  .maintenance-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-text h1 {
    font-size: 2.5rem;
  }
  .personal-stats {
    border-left: none;
    padding-left: 0;
    margin-top: 20px;
  }
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }
  .product-card.featured {
    grid-column: span 2;
  }
  .nav-links {
    display: none;
  }
}

/* --- NOVOS EFEITOS DE IMAGEM PREMIUM --- */

/* 1. Efeito de Zoom Suave para Fotos de Pessoas (Hero e Quem Sou) */
.hero-img-container,
.maint-img {
  /* Garante que a imagem não saia do container arredondado */
  overflow: hidden;
  border-radius: var(--radius);
  /* Sombra suave inicial */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.5s ease;
}

.hero-img-container img,
.maint-img img {
  /* Transição muito suave para o zoom */
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease;
}

/* Hover no container dispara o zoom na imagem */
.hero-img-container:hover img,
.maint-img:hover img {
  transform: scale(1.08); /* Zoom de 8% */
}

/* Aumenta a sombra do container para dar profundidade 3D */
.hero-img-container:hover,
.maint-img:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* 2. Efeito nos Cards de Produto (Vitrine) */
.product-card {
  /* A transição já existia, mas vamos refinar */
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  border: 1px solid transparent;
}

.product-card:hover {
  transform: translateY(-8px); /* Sobe um pouco mais */
  background: #fff;
  /* Sombra mais difusa e premium */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  /* Borda sutil neon opcional - descomente se gostar */
  /* border-color: var(--neon-green); */
}

.prod-img img {
  transition: transform 0.5s ease;
}
/* Zoom sutil no produto também */
.product-card:hover .prod-img img {
  transform: scale(1.05);
}

/* --- NOVO FOOTER PREMIUM ESTILOS --- */

.premium-footer {
  background: var(--bg-dark);
  color: #aaa;
  padding-top: 80px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr; /* Coluna da marca é maior */
  gap: 40px;
  padding-bottom: 60px;
}

/* Ajuste da logo para ficar branca no footer */
.white-logo {
  color: var(--text-white);
  margin-bottom: 20px;
}
.brand-col p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--text-white);
  font-size: 1.1rem;
  margin-bottom: 25px;
  font-weight: 700;
}

/* Links do footer */
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 15px;
}
.footer-links a {
  transition: 0.3s;
  display: inline-block;
}
.footer-links a:hover {
  color: var(--neon-green);
  transform: translateX(5px); /* Move levemente para direita */
}

/* Informações de Contato */
.contact-info {
  list-style: none;
}
.contact-info li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
  font-size: 0.95rem;
}
.contact-info i {
  color: var(--neon-green);
  font-size: 1.4rem;
  flex-shrink: 0; /* Ícone não encolhe */
}

/* Redes Sociais */
.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.footer-socials a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--text-white);
  transition: 0.3s;
}
.footer-socials a:hover {
  background: var(--neon-green);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

/* Barra Inferior */
.footer-bottom {
  background: #000; /* Um pouco mais escuro que o resto do footer */
  padding: 25px 0;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.bottom-flex {
  display: flex;
  justify-content: space-between;
}

/* Responsivo do Footer */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr; /* 2 colunas em tablets */
    gap: 40px 20px;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr; /* 1 coluna em celulares */
    text-align: center;
  }
  .brand-col p {
    margin: 0 auto;
  }
  .logo {
    justify-content: center;
  }
  .contact-info li {
    justify-content: center;
  }
  .footer-socials {
    justify-content: center;
  }
  .footer-links a:hover {
    transform: none;
  }
  .bottom-flex {
    flex-direction: column;
    gap: 10px;
  }
}
