:root {
  --bg: #08090c;
  --bg-soft: #101116;
  --card: #171922;
  --card-2: #1d2029;
  --white: #ffffff;
  --text: #f5f7fb;
  --text-soft: #c7ccd8;
  --text-muted: #98a0b3;
  --primary: #ff4b2b;
  --primary-dark: #df3e20;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --radius-sm: 16px;
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(255, 75, 43, 0.06), transparent 22%),
    linear-gradient(180deg, #06070a 0%, #0c0d12 100%);
  color: var(--text);
  line-height: 1.7;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.topbar {
  background: #050507;
  border-bottom: 1px solid var(--line);
}

.topbar-content {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.topbar-right {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar-right a {
  color: var(--white);
  font-weight: 700;
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(7, 8, 12, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-content {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand-logo {
  width: 150px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 75, 43, 0.25));
}

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

.nav a {
  color: var(--text-soft);
  font-weight: 600;
  position: relative;
  transition: var(--transition);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

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

.nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 80px;
  background:
    radial-gradient(circle at top right, rgba(255, 75, 43, 0.14), transparent 25%),
    radial-gradient(circle at left center, rgba(255, 255, 255, 0.04), transparent 18%),
    linear-gradient(135deg, #08090d 0%, #10131b 55%, #0a0c12 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 75, 43, 0.03), transparent);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.section-tag {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--primary);
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-soft);
  margin-bottom: 18px;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.btn {
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(255, 75, 43, 0.28);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  margin-top: 14px;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.badge-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px;
}

.badge-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.badge-card span {
  color: var(--text-soft);
  font-size: 0.94rem;
}

.hero-showcase-card {
  background: linear-gradient(180deg, var(--card) 0%, var(--card-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-showcase-card img {
  border-radius: 16px;
  object-fit: cover;
  max-height: 540px;
}

.trust-strip {
  background: #0c0d12;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 26px 0;
}

.trust-item h3 {
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.trust-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.section {
  padding: 100px 0;
}

.section-dark {
  background: linear-gradient(180deg, #0f1117 0%, #0a0c11 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-heading p {
  color: var(--text-soft);
}

.about-grid,
.differentials-grid,
.text-columns,
.process-grid {
  display: grid;
  gap: 24px;
}

.about-grid,
.differentials-grid {
  grid-template-columns: repeat(3, 1fr);
}

.text-columns {
  grid-template-columns: repeat(3, 1fr);
}

.process-grid {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.text-box,
.process-card,
.contact-box {
  background: linear-gradient(180deg, var(--card) 0%, var(--card-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.info-card h3,
.text-box h3,
.process-card h3,
.contact-box h3 {
  margin-bottom: 14px;
  font-size: 1.12rem;
}

.info-card p,
.text-box p,
.process-card p,
.contact-box p {
  color: var(--text-soft);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--card) 0%, var(--card-2) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-image {
  height: 290px;
  overflow: hidden;
  background: #fff;
}

.product-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-body {
  padding: 24px;
}

.product-body h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.product-body p {
  color: var(--text-soft);
}

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

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 360px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}

.gallery-card.large {
  grid-column: span 2;
  min-height: 420px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.16));
  color: var(--white);
}

.gallery-overlay h3 {
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.gallery-overlay p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
}

.process-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 75, 43, 0.14);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 18px;
}

.contact-section {
  background:
    radial-gradient(circle at right top, rgba(255, 75, 43, 0.08), transparent 24%),
    linear-gradient(180deg, #090b11 0%, #10131a 100%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
}

.contact-content p {
  color: var(--text-soft);
}

.contact-list {
  margin-top: 26px;
  display: grid;
  gap: 16px;
}

.contact-item {
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.contact-item span {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.contact-item a {
  color: var(--white);
  font-weight: 700;
  font-size: 1.06rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  background: var(--primary);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 16px 35px rgba(255, 75, 43, 0.35);
  transition: var(--transition);
}

.floating-whatsapp:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.footer {
  background: #05060a;
  border-top: 1px solid var(--line);
  padding: 42px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-logo {
  width: 130px;
  margin-bottom: 16px;
}

.footer-brand p,
.footer-info p {
  color: var(--text-soft);
}

.footer-brand p {
  max-width: 520px;
}

.footer-info p {
  margin-bottom: 8px;
}

@media (max-width: 1100px) {
  .hero-grid,
  .trust-grid,
  .about-grid,
  .differentials-grid,
  .text-columns,
  .process-grid,
  .products-grid,
  .gallery-grid,
  .contact-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-card.large {
    grid-column: span 2;
  }

  .hero-badges {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 4%;
    width: min(320px, 92vw);
    background: rgba(10, 12, 18, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 10px 0;
  }

  .hero-grid,
  .trust-grid,
  .about-grid,
  .differentials-grid,
  .text-columns,
  .process-grid,
  .products-grid,
  .gallery-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .gallery-card.large {
    grid-column: span 1;
  }

  .topbar-content {
    justify-content: center;
    text-align: center;
  }

  .topbar-right {
    justify-content: center;
  }

  .brand-logo {
    width: 120px;
  }

  .hero {
    padding-top: 70px;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 2rem;
  }

  .section {
    padding: 76px 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    padding: 12px 16px;
  }
}
/* MODAL IMAGEM */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.95);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
/* CURSOR NAS IMAGENS CLICÁVEIS */
.gallery-card img,
.product-image img,
.hero-showcase-card img {
  cursor: pointer;
}

/* MODAL DE IMAGEM */
.image-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  padding: 30px;
  align-items: center;
  justify-content: center;
}

.image-modal.active {
  display: flex;
}

.modal-content {
  max-width: 90vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  background: #fff;
}

.close-modal {
  position: absolute;
  top: 18px;
  right: 28px;
  color: #ffffff;
  font-size: 42px;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
  z-index: 100000;
}
/* =========================
   ANIMAÇÕES SUTIS E FORMAIS
========================= */

/* transições gerais */
.btn,
.info-card,
.text-box,
.process-card,
.product-card,
.gallery-card,
.contact-box,
.badge-card,
.hero-showcase-card,
.nav a,
.brand-logo {
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease, filter 0.35s ease, background 0.35s ease;
}

/* logo com presença discreta */
.brand-logo:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 0 14px rgba(255, 75, 43, 0.32));
}

/* botões mais elegantes */
.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

/* cards com leve elevação */
.info-card:hover,
.text-box:hover,
.process-card:hover,
.contact-box:hover,
.badge-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.4);
}

/* produtos com movimento sutil */
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.42);
}

/* galeria com efeito premium */
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.42);
}

/* imagem principal do topo */
.hero-showcase-card {
  animation: heroFloatIn 1s ease both;
}

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

/* textos principais com entrada suave */
.hero-text .section-tag {
  animation: fadeUp 0.8s ease both;
}

.hero-text h1 {
  animation: fadeUp 1s ease both;
}

.hero-text .hero-description:nth-of-type(1) {
  animation: fadeUp 1.15s ease both;
}

.hero-text .hero-description:nth-of-type(2) {
  animation: fadeUp 1.3s ease both;
}

.hero-actions {
  animation: fadeUp 1.45s ease both;
}

.hero-badges {
  animation: fadeUp 1.6s ease both;
}

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

/* estado inicial para revelar ao rolar */
.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* pequenas variações para não ficar tudo igual */
.reveal-soft {
  opacity: 0;
  transform: translateY(16px);
}

.reveal-soft.reveal-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

/* barra do menu mais refinada */
.header {
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.header.header-scrolled {
  background: rgba(6, 8, 12, 0.97);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

/* whatsapp mais suave */
.floating-whatsapp {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 38px rgba(255, 75, 43, 0.38);
}

/* respeita acessibilidade */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-soft {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================
   DIVISÓRIAS PREMIUM
========================= */

.section,
.section-dark,
.contact-section,
.trust-strip {
  position: relative;
}

.section::before,
.section-dark::before,
.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, 88%);
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.08),
    rgba(255, 75, 43, 0.25),
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0)
  );
}

.section-heading {
  position: relative;
}

.section-heading::after {
  content: "";
  display: block;
  width: 82px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 75, 43, 0.15),
    rgba(255, 75, 43, 1),
    rgba(255, 75, 43, 0.15)
  );
  box-shadow: 0 0 18px rgba(255, 75, 43, 0.22);
}

.section-heading h2 {
  position: relative;
  display: inline-block;
}

.section-heading h2::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 75, 43, 0.85);
  box-shadow: 0 0 14px rgba(255, 75, 43, 0.35);
}

/* =========================
   CARDS COM ACABAMENTO PREMIUM
========================= */

.info-card,
.text-box,
.process-card,
.product-card,
.gallery-card,
.contact-box,
.badge-card,
.hero-showcase-card {
  position: relative;
  overflow: hidden;
}

.info-card::before,
.text-box::before,
.process-card::before,
.product-card::before,
.gallery-card::before,
.contact-box::before,
.badge-card::before,
.hero-showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.01) 30%,
    rgba(255, 75, 43, 0.04) 100%
  );
  pointer-events: none;
}

.info-card::after,
.text-box::after,
.process-card::after,
.contact-box::after,
.badge-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  width: 54px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), rgba(255, 75, 43, 0));
  border-radius: 999px;
}

/* =========================
   GALERIA MAIS SOFISTICADA
========================= */

.gallery-card {
  transform-origin: center center;
}

.gallery-card img {
  transition: transform 0.55s ease, filter 0.55s ease;
}

.gallery-card:hover img {
  transform: scale(1.025);
  filter: brightness(1.03);
}

.gallery-overlay {
  transform: translateY(12px);
  opacity: 0.92;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.gallery-card:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}

/* entrada especial da galeria */
.gallery-card.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
}

.gallery-card.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.floating-instagram {
  position: fixed;
  bottom: 90px;
  right: 22px;
  background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 16px 35px rgba(0,0,0,0.35);
  transition: 0.3s ease;
  z-index: 999;
  text-decoration: none;
}

.floating-instagram:hover {
  transform: translateY(-2px) scale(1.05);
}
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 22px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
  transition: 0.3s;
  z-index: 999;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}
