﻿:root {
  --bg: #000000;
  --ink: #ffffff;
  --muted: #cccccc;
  --line: #2a2a2a;
  --surface: #0f0f0f;
  --surface-soft: #151515;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

body.is-loading {
  overflow: hidden;
}

.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: grid;
  place-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease;
}

.splash img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  display: block;
}

.splash.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.topbar {
  max-width: 1140px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  width: 150px;
  height: auto;
  display: block;
  filter: none;
}

nav {
  display: flex;
  gap: 1rem;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
}

.menu-presentation-btn {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 400;
  cursor: pointer;
}

.menu-presentation-btn:hover {
  color: #ffffff;
  box-shadow: none;
  transform: none;
}

.menu-presentation-btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
  border-radius: 4px;
}

.landing {
  max-width: 1140px;
  margin: 0 auto;
  padding: 1rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.hero-media {
  min-height: 500px;
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  background: #060606;
}

.carousel-track {
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.carousel-slide.is-active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.carousel-btn.prev {
  left: 0.7rem;
}

.carousel-btn.next {
  right: 0.7rem;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 0.75rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
}

.carousel-dot {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.carousel-dot.is-active {
  background: #fff;
}

.premios-grid-carousel,
.colecoes-grid-carousel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #060606;
  padding: 0.7rem;
}

.premios-grid,
.colecoes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.premio-item,
.colecao-item {
  border: 1px solid #2f2f2f;
  border-radius: 12px;
  background: #0a0a0a;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.premio-item img,
.colecao-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.premios-controls,
.colecoes-controls {
  margin-top: 0.7rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.premios-btn,
.colecoes-btn {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero-copy {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.tag {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: #9b9b9b;
}

h1,
h2,
h3 {
  font-family: "Bodoni Moda", serif;
  line-height: 1.06;
  margin: 0.35rem 0 0.8rem;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
  font-size: 1.4rem;
}

.hero-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
}

ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.2rem;
}

li {
  margin-bottom: 0.35rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn {
  text-decoration: none;
  background: #fff;
  color: #000;
  border-radius: 999px;
  padding: 0.78rem 1rem;
  font-weight: 700;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn.ghost {
  background: transparent;
  color: #fff;
  border: 1px solid #555;
}

.stats {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.stats article {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  padding: 0.95rem;
}

.stats strong {
  display: block;
  margin-bottom: 0.25rem;
}

.stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.content-block,
.capture {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  padding: 1.2rem;
}

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

.steps article {
  border: 1px solid #2c2c2c;
  border-radius: 14px;
  background: var(--surface-soft);
  padding: 0.9rem;
}

.step-card-cadastro {
  position: relative;
}

.step-popup-trigger {
  margin-top: 0.55rem;
  border: 1px solid #4a4a4a;
  background: #1f1f1f;
  color: #fff;
  padding: 0.48rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.step-popup-trigger:hover {
  background: #2b2b2b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.steps p,
.content-block p,
.capture p,
.faq p {
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #2e2e2e;
}

.capture {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.lead-form {
  display: grid;
  gap: 0.55rem;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

input {
  border: 1px solid #3a3a3a;
  border-radius: 12px;
  padding: 0.75rem 0.8rem;
  font: inherit;
  color: var(--ink);
  background: #090909;
}

input:focus {
  outline: 2px solid rgba(255, 255, 255, 0.22);
  border-color: #9f9f9f;
}

button {
  margin-top: 0.45rem;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1rem;
  font: inherit;
  font-weight: 700;
  color: #000;
  cursor: pointer;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

small {
  color: var(--muted);
}

.cta-strip {
  display: grid;
  gap: 0.5rem;
}

.faq details {
  border: 1px solid #333;
  border-radius: 12px;
  padding: 0.8rem;
  margin-bottom: 0.6rem;
  background: #121212;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  transition: color 0.2s ease;
}

.faq details:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  border-color: #4a4a4a;
}

.faq details:hover summary {
  color: #ffffff;
}

.faq details[open] {
  border-color: #666;
  background: #161616;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.faq details:focus-within {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.68);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  padding: 1rem;
}

.modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  width: min(560px, 100%);
  border-radius: 16px;
  border: 1px solid #3a3a3a;
  background: #111;
  color: #fff;
  padding: 1rem;
  position: relative;
  transform: translateY(12px);
  transition: transform 0.25s ease;
}

.modal-backdrop.is-open .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 0.45rem;
  right: 0.5rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid #494949;
  background: #1b1b1b;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.modal-list {
  margin: 0.7rem 0 0.75rem;
  padding-left: 1.2rem;
}

.modal-highlight {
  margin: 0.4rem 0 0.2rem;
  font-weight: 700;
  color: #fff;
}

.modal-note {
  margin: 0;
  color: var(--muted);
}

.modal-media {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid #2f2f2f;
  margin: 0.3rem 0 0.75rem;
  display: block;
  background: #0a0a0a;
}

.btn:hover,
button:hover,
.carousel-btn:hover,
.modal-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
}

.btn:hover {
  background: #f2f2f2;
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #777;
}

.carousel-btn:hover,
.modal-close:hover {
  background: rgba(0, 0, 0, 0.55);
  border-color: rgba(255, 255, 255, 0.75);
}

.btn:focus-visible,
button:focus-visible,
.carousel-btn:focus-visible,
.modal-close:focus-visible,
.step-popup-trigger:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.footer {
  max-width: 1140px;
  margin: 0 auto;
  padding: 1.1rem 1rem 1.2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 1.2rem;
  row-gap: 0.7rem;
  align-items: start;
  border-top: 1px solid var(--line);
}

.footer-brand {
  color: var(--ink);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}

.footer-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  align-items: center;
  justify-content: flex-end;
}

.footer-address {
  grid-column: 1 / -1;
  padding-top: 0.75rem;
  border-top: 1px solid #242424;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.contact-item {
  color: #f1f1f1;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
}

.contact-item.whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.contact-item.whatsapp img {
  width: 18px;
  height: 18px;
  display: block;
}

.modal-media-joia {
  max-height: 312px;
  object-fit: cover;
  object-position: center;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.presentation-page {
  display: grid;
  gap: 0.2rem;
}

.presentation-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.09), transparent 44%),
    linear-gradient(135deg, #0f0f0f 0%, #161616 45%, #0b0b0b 100%);
}

.presentation-hero-copy {
  display: grid;
  align-content: center;
}

.presentation-bullets {
  margin-top: 0.7rem;
}

.presentation-hero-media {
  border: 1px solid #2e2e2e;
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  background: #090909;
}

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

.presentation-kpis article {
  background: linear-gradient(180deg, #121212 0%, #0d0d0d 100%);
}

.about-us {
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.08), transparent 36%),
    linear-gradient(150deg, #131313 0%, #101010 60%, #0c0c0c 100%);
}

.about-us h2 {
  max-width: 18ch;
}

.about-us p {
  max-width: 70ch;
}

.about-us-media {
  margin: 0.9rem 0 0;
}

.about-us-media img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #343434;
  display: block;
}

.presentation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.presentation-card {
  border: 1px solid #2f2f2f;
  border-radius: 14px;
  background: linear-gradient(180deg, #171717 0%, #121212 100%);
  padding: 0.95rem;
}

.presentation-roadmap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.presentation-roadmap article {
  border: 1px solid #313131;
  border-radius: 14px;
  background: #111111;
  padding: 0.85rem;
}

.presentation-roadmap span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  border: 1px solid #4b4b4b;
  color: #f0f0f0;
  font-weight: 700;
  font-size: 0.88rem;
}

.projection {
  border: 1px solid #2f2f2f;
  border-radius: 14px;
  overflow: hidden;
}

.projection-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem;
  border-bottom: 1px solid #242424;
}

.projection-row:last-child {
  border-bottom: 0;
}

.projection-row strong {
  font-size: 1.08rem;
}

.projection-row.highlight {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.projection-note {
  margin-top: 0.7rem;
  font-size: 0.9rem;
}

.presentation-final-cta {
  background:
    radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.08), transparent 40%),
    #111111;
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .hero,
  .capture,
  .steps,
  .stats,
  .gallery {
    grid-template-columns: 1fr;
  }

  .presentation-hero,
  .presentation-grid,
  .presentation-roadmap {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 360px;
  }

  .footer {
    grid-template-columns: 1fr;
    row-gap: 0.8rem;
  }

  .footer-contacts {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .topbar {
    padding: 0.75rem;
  }

  .logo img {
    width: 120px;
  }

  .landing {
    padding: 0.75rem;
  }

  .hero-media {
    min-height: 300px;
    border-radius: 18px;
  }

  .hero-copy,
  .content-block,
  .capture {
    border-radius: 16px;
    padding: 1rem;
  }

  h1 {
    font-size: clamp(1.9rem, 10vw, 2.7rem);
  }

  h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .hero-actions {
    gap: 0.5rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .carousel-btn {
    width: 2rem;
    height: 2rem;
  }

  .carousel-dot {
    width: 0.56rem;
    height: 0.56rem;
  }

  .steps article,
  .stats article {
    padding: 0.8rem;
  }

  .footer {
    padding: 1rem 0.75rem;
  }

  .modal-card {
    padding: 0.9rem;
  }

  .colecoes-grid,
  .premios-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .colecoes-grid-carousel,
  .premios-grid-carousel {
    padding: 0.45rem;
  }

  .colecao-item,
  .premio-item {
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 480px) {
  .splash img {
    width: 95%;
    height: 95%;
  }

  .hero-media {
    min-height: 250px;
  }

  .carousel-btn {
    top: auto;
    bottom: 0.65rem;
    transform: none;
  }

  .carousel-btn.prev {
    left: 0.55rem;
  }

  .carousel-btn.next {
    right: 0.55rem;
  }

  .carousel-dots {
    bottom: 0.8rem;
  }

  input,
  button {
    min-height: 44px;
  }

  .colecoes-grid,
  .premios-grid {
    gap: 0.4rem;
  }

  .colecao-item,
  .premio-item {
    aspect-ratio: 1 / 1.2;
  }
}

.contact-item.instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.contact-item.instagram img {
  width: 18px;
  height: 18px;
  display: block;
  filter: none;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1300;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.45);
  animation: waPulse 1.9s ease-out infinite;
}

.whatsapp-float img {
  width: 58px;
  height: 58px;
  display: block;
  filter: none;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.4);
  filter: brightness(1.02);
}

@keyframes waPulse {
  0% { transform: scale(0.92); opacity: 0.8; }
  70% { transform: scale(1.08); opacity: 0; }
  100% { transform: scale(1.08); opacity: 0; }
}

@media (max-width: 560px) {
  .whatsapp-float {
    right: 0.7rem;
    bottom: 0.7rem;
    width: 54px;
    height: 54px;
  }
}
