/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { 
  min-height: 100dvh; 
  line-height: 1.6; 
  -webkit-font-smoothing: antialiased; 
  font-family: 'Source Sans 3', sans-serif; 
  background: var(--bg-body); 
  color: var(--text-main); 
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; background: none; border: none; color: inherit; font: inherit; outline: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { overflow-wrap: break-word; line-height: 1.1; }
::selection { background: var(--red); color: white; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ==========================================================================
   TOKENS & VARIABLES
   ========================================================================== */
:root {
  --red: #DC2626;
  --red-dark: #B91C1C;
  --red-glow: rgba(220, 38, 38, 0.4);
  --black: #0C0A09;
  --black-light: #1C1917;
  --white: #FAFAF9;
  --white-mute: #F5F5F4;
  --gray-dark: #292524;
  --gray: #57534E;
  --gray-light: #A8A29E;
  
  --bg-body: var(--white);
  --text-main: var(--black);
  --text-muted: var(--gray);
  
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  
  --container: min(100% - 2.5rem, 80rem);
  --gap-section: clamp(4rem, 8vw, 8rem);
  
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ==========================================================================
   TYPOGRAPHY & COMPONENTS
   ========================================================================== */
.container { width: var(--container); margin-inline: auto; }

.section-label {
  font-family: var(--font-display); 
  font-size: 1.125rem; 
  letter-spacing: 0.2em;
  color: var(--red); 
  display: inline-flex; 
  align-items: center; 
  gap: 1rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-label::before { content: ''; width: 2.5rem; height: 2px; background: var(--red); }

.section-title {
  font-family: var(--font-display); 
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: 0.01em; 
  color: var(--black);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.section-title .red { color: var(--red); }

.section-desc { 
  font-size: 1.125rem; 
  color: var(--text-muted); 
  max-width: 36rem; 
}

/* Buttons */
.btn {
  display: inline-flex; 
  align-items: center; 
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-display); 
  font-size: 1.25rem; 
  letter-spacing: 0.1em;
  padding: 1rem 2.5rem; 
  transition: all 0.4s var(--ease-out);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: transform 0.4s var(--ease-out);
}

.btn--primary { 
  background: var(--red); 
  color: white; 
  box-shadow: 0 4px 14px var(--red-glow);
}
.btn--primary::before { background: var(--black); transform: scaleX(0); transform-origin: left; }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 10px 24px var(--red-glow); color: white; }
.btn--primary:hover::before { transform: scaleX(1); }

.btn--outline-light { 
  border: 1px solid rgba(255,255,255,0.3); 
  color: white; 
  backdrop-filter: blur(4px);
}
.btn--outline-light::before { background: white; transform: scaleY(0); transform-origin: bottom; }
.btn--outline-light:hover { border-color: white; color: var(--black); transform: translateY(-3px); }
.btn--outline-light:hover::before { transform: scaleY(1); }

.btn--whatsapp { 
  background: #25D366; 
  color: white; 
  border-radius: 99px;
  padding: 1rem 2rem;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}
.btn--whatsapp:hover { 
  background: #1ebe5d; 
  transform: translateY(-3px) scale(1.02); 
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4); 
}

/* Reveal Animations */
.reveal { 
  opacity: 0; 
  transform: translateY(3rem); 
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); 
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal--d1 { transition-delay: 0.1s; }
.reveal--d2 { transition-delay: 0.2s; }
.reveal--d3 { transition-delay: 0.3s; }

/* ==========================================================================
   HEADER (Navegação)
   ========================================================================== */
.nav { 
  position: fixed; 
  top: 0; left: 0; right: 0; 
  z-index: 100; 
  height: 5rem; 
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background 0.3s, height 0.3s;
}
.nav.scrolled {
  height: 4.5rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.nav__inner { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  height: 100%; 
  width: var(--container); 
  margin-inline: auto; 
}
.nav__brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav__logo-img { height: 2.5rem; width: auto; transition: height 0.3s; }
.nav.scrolled .nav__logo-img { height: 2rem; }
.nav__brand-info { display: flex; flex-direction: column; line-height: 1.2; }
.nav__brand-name { 
  font-family: var(--font-display); font-size: 1.25rem; 
  letter-spacing: 0.04em; color: var(--black); white-space: nowrap;
}
.nav__brand-slogan {
  font-family: var(--font-body); font-size: 0.7rem;
  color: var(--gray-light); white-space: nowrap; letter-spacing: 0.02em;
}
@media (max-width: 480px) {
  .nav__brand-info { display: none; }
  .nav__logo-img { height: 2rem; }
}

.nav__links { display: flex; align-items: center; gap: 2.5rem; }
.nav__link { 
  font-family: var(--font-display); 
  font-size: 1.125rem; 
  letter-spacing: 0.1em; 
  color: var(--black-light); 
  transition: color 0.3s; 
  position: relative; 
  padding: 0.5rem 0;
}
.nav__link::after { 
  content: ''; 
  position: absolute; 
  bottom: 0; left: 0; 
  width: 100%; height: 2px; 
  background: var(--red); 
  transform: scaleX(0); 
  transform-origin: right;
  transition: transform 0.4s var(--ease-out); 
}
.nav__link:hover { color: var(--red); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }

.mobile-toggle { 
  display: none; 
  width: 3rem; height: 3rem; 
  flex-direction: column; 
  align-items: center; justify-content: center; 
  gap: 6px; 
  z-index: 101;
}
.mobile-toggle span { 
  display: block; width: 24px; height: 2px; 
  background: var(--black); 
  transition: all 0.3s var(--ease-out); 
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(10px); }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav__menu-logo { display: none; } /* only visible inside mobile menu */

@media (max-width: 992px) {
  .nav { background: #ffffff; backdrop-filter: none; }
  .nav.scrolled { background: #ffffff; }
  .nav__links { 
    position: fixed; left: 0; right: 0; top: 5rem; bottom: 0;
    background: #ffffff; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center;
    gap: 2rem; 
    transform: translateY(-1rem);
    opacity: 0; pointer-events: none; 
    transition: opacity 0.3s ease, transform 0.3s ease; 
    padding: 2rem;
    z-index: 99;
    display: flex;
  }
  .nav__links.open { opacity: 1; pointer-events: all; transform: translateY(0); }
  .nav__link { font-size: 1.8rem; }
  .mobile-toggle { display: flex; }
  .nav__links .nav__menu-logo {
    display: flex; align-items: center; justify-content: center; gap: 0.75rem;
    margin-bottom: 0.5rem;
  }
  .nav__links .nav__menu-logo img { height: 2.5rem; width: auto; }
  .nav__links .nav__menu-logo span {
    font-family: var(--font-display); font-size: 1.15rem;
    letter-spacing: 0.04em; color: var(--black);
  }
}

/* ==========================================================================
   HERO — Split layout
   ========================================================================== */
.hero {
  position: relative; width: 100%; height: 100dvh; min-height: 620px;
  overflow: hidden; background: var(--black);
}
.hero__inner { position: relative; width: 100%; height: 100%; }
.hero__slide {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 42% 58%;
  opacity: 0; pointer-events: none;
  transition: opacity 0.8s ease; z-index: 0;
}
.hero__slide.active { opacity: 1; pointer-events: all; z-index: 1; }

.hero__body {
  display: flex; flex-direction: column;
  justify-content: center; padding: 4rem;
  background: var(--black); position: relative; overflow: hidden;
}
.hero__body::before {
  content: ''; position: absolute;
  top: -50%; right: -20%; width: 70%; height: 200%;
  background: radial-gradient(circle, rgba(220,38,38,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero__body-inner { max-width: 480px; }
.hero__slide.active .hero__body-inner {
  animation: heroContentIn 0.7s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes heroContentIn {
  from { opacity: 0; transform: translateX(-2rem); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero__bg {
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}

.hero__tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em;
  color: var(--red); text-transform: uppercase;
  margin-bottom: 1.5rem; padding: 0.3rem 0.9rem;
  border: 1px solid rgba(220,38,38,0.25); border-radius: 100px;
  background: rgba(220,38,38,0.06);
  width: fit-content;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 0.92; letter-spacing: 0.01em;
  color: var(--white); text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7; margin-bottom: 2rem; max-width: 420px;
}
.hero__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.85rem 2rem; font-size: 0.85rem; font-weight: 700;
  border-radius: 999px; text-decoration: none; transition: all 0.3s ease;
  border: none; cursor: pointer; letter-spacing: 0.04em; text-transform: uppercase;
}
.hero__btn--primary {
  background: var(--red); color: white;
  box-shadow: 0 4px 20px rgba(220,38,38,0.35);
}
.hero__btn--primary:hover {
  background: #ef4444; transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(220,38,38,0.45);
}
.hero__btn--outline {
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,0.2);
}
.hero__btn--outline:hover {
  border-color: white; background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.hero__nav {
  position: absolute; bottom: 2rem; left: 2rem; z-index: 10;
  display: flex; gap: 0.5rem;
}
.hero__dot {
  width: 2rem; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,0.2); cursor: pointer;
  transition: all 0.4s; border: none; padding: 0; position: relative; overflow: hidden;
}
.hero__dot.active { background: rgba(255,255,255,0.15); }
.hero__dot.active::after {
  content: ''; position: absolute; inset: 0;
  background: var(--red);
  animation: heroProgress 6s linear forwards;
}
@keyframes heroProgress {
  from { width: 0%; }
  to   { width: 100%; }
}

@media (max-width: 768px) {
  .hero { height: 100dvh; min-height: 560px; }
  .hero__slide {
    grid-template-columns: 1fr;
  }
  .hero__bg {
    position: absolute; inset: 0; z-index: 0;
  }
  .hero__bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 55%, rgba(0,0,0,0) 100%);
    pointer-events: none;
  }
  .hero__body {
    position: relative; z-index: 1;
    background: transparent; justify-content: flex-end;
    padding: 2rem 1.5rem 4rem;
  }
  .hero__body::before { display: none; }
  .hero__body-inner { max-width: 100%; }
  .hero__title { font-size: 2rem; }
  .hero__desc { font-size: 0.85rem; max-width: 100%; margin-bottom: 1.5rem; }
  .hero__nav { left: 1.5rem; bottom: 1.5rem; }
  .hero__dot { width: 1.5rem; }
  .hero__btn { padding: 0.6rem 1.25rem; font-size: 0.75rem; }
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee { 
  width: 100%; overflow: hidden; 
  background: var(--red); 
  padding: 1rem 0; 
  position: relative;
  z-index: 2;
}
.marquee__track { 
  display: flex; flex-wrap: nowrap;
  animation: marqueeScroll 35s linear infinite; 
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee__item { 
  font-family: var(--font-display); 
  font-size: 1.4rem; 
  letter-spacing: 0.1em; 
  color: white; 
  white-space: nowrap; 
  padding: 0 2.5rem; 
  display: flex; align-items: center; 
  flex-shrink: 0;
}
.marquee__item::after { 
  content: '✦'; 
  color: rgba(0,0,0,0.4); 
  margin-left: 2.5rem; 
  font-size: 0.8rem;
}

@keyframes marqueeScroll { 
  0% { transform: translateX(0); } 
  100% { transform: translateX(-50%); } 
}

/* ==========================================================================
   HIGHLIGHTS (Vídeos Destaque — estilo Stories Instagram)
   ========================================================================== */
.highlights {
  padding: 1.5rem 0 0.5rem;
  background: var(--white);
}
.highlights__row {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 0.5rem 0 1rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  justify-content: center;
}
.highlights__row::-webkit-scrollbar { display: none; }
.highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: transform 0.2s;
}
.highlight:hover { transform: scale(1.05); }
.highlight__avatar {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #DC2626, #991b1b);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 3px solid var(--red);
  padding: 2px;
}
.highlight__avatar img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: white;
}
.highlight__icon {
  color: white;
  font-size: 1.4rem;
}
.highlight__label {
  font-size: 0.7rem;
  color: var(--text-muted);
  max-width: 72px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ==========================================================================
   STORY VIEWER (Fullscreen Vídeo)
   ========================================================================== */
.story-overlay {
  position: fixed; inset: 0;
  z-index: 300;
  background: rgba(0,0,0,0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.story-overlay.open { opacity: 1; pointer-events: all; }
.story__close {
  position: absolute; top: 1rem; right: 1rem;
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.story__close:hover { background: var(--red); }
.story__container {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 9 / 16;
  max-height: 85vh;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 0 60px rgba(0,0,0,0.5);
}
.story__media {
  width: 100%; height: 100%;
  border: none;
  object-fit: contain;
  background: #000;
}
.story__media--video { display: none; }
.story__loading {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
}
.story__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
}
.story__nav-btn {
  background: rgba(255,255,255,0.1);
  color: white;
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.story__nav-btn:hover { background: rgba(255,255,255,0.2); }
.story__counter {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-family: var(--font-body);
}

/* ==========================================================================
   MODELS (CATÁLOGO)
   ========================================================================== */
.models { padding: var(--gap-section) 0; background: var(--white); }

.models__header { 
  display: flex; flex-direction: column; align-items: center; 
  text-align: center; margin-bottom: 3.5rem; 
}

.models__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.model-card {
  background: white;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.35s ease;
  position: relative;
}
.model-card:hover { 
  transform: translateY(-6px); 
  box-shadow: 0 16px 32px rgba(0,0,0,0.1); 
  border-color: rgba(220,38,38,0.25);
}

.model-card__image {
  position: relative;
  aspect-ratio: 4/3;
  background: #f5f5f4;
  overflow: hidden;
}
.model-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.model-card:hover .model-card__image img { transform: scale(1.08); }

.model-card__estoque {
  position: absolute; top: 0.75rem; left: 0.75rem; z-index: 5;
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: white;
  padding: 0.25rem 0.65rem; border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.model-card__image::after {
  content: 'Ver detalhes';
  position: absolute; inset: 0;
  background: rgba(12,10,9,0.65);
  color: white; font-family: var(--font-display);
  font-size: 1.25rem; letter-spacing: 0.08em;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.model-card:hover .model-card__image::after { opacity: 1; }

.model-card__body {
  padding: 1.25rem;
  display: flex; flex-direction: column; flex: 1;
}
.model-card__cat {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
  color: var(--red); text-transform: uppercase; margin-bottom: 0.4rem;
}
.model-card__title {
  font-family: var(--font-display); font-size: 1.6rem;
  color: var(--black); line-height: 1; letter-spacing: 0.02em;
}
.model-card__sub {
  font-size: 0.8rem; color: var(--text-muted); margin-top: 0.35rem;
}
.model-card__bottom {
  margin-top: auto; padding-top: 1.25rem;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.model-card__price {
  font-family: var(--font-display); font-size: 1.3rem;
  color: var(--red); line-height: 1;
}
.model-card__price small {
  font-family: var(--font-body); font-size: 0.7rem;
  color: var(--gray-light); display: block; margin-top: 0.2rem;
}
.model-card__arrow {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: var(--white-mute);
  display: flex; align-items: center; justify-content: center;
  color: var(--black); font-size: 1.1rem;
  transition: all 0.3s;
}
.model-card:hover .model-card__arrow { 
  background: var(--red); color: white; transform: rotate(45deg); 
}

@media (max-width: 1024px) {
  .models__grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (max-width: 480px) {
  .models__grid { grid-template-columns: 1fr; gap: 1rem; }
  .model-card__title { font-size: 1.4rem; }
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials { padding: var(--gap-section) 0; background: var(--white-mute); }
.testimonials__header { text-align: center; margin-bottom: 4rem; display: flex; flex-direction: column; align-items: center;}

.testimonials__grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 2rem; 
}

.testimonial-card { 
  background: white; 
  padding: 2.5rem; 
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  position: relative;
  transition: transform 0.3s;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 12px 24px rgba(0,0,0,0.06); }
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 2rem;
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--white-mute);
  line-height: 1;
  z-index: 0;
}
.testimonial-card__stars { 
  color: #F59E0B; /* Dourado para estrelas */
  font-size: 1.25rem; 
  margin-bottom: 1rem; 
  letter-spacing: 2px;
  position: relative; z-index: 1;
}
.testimonial-card__text { 
  font-size: 1rem; 
  color: var(--text-muted); 
  font-style: italic; 
  line-height: 1.7;
  position: relative; z-index: 1;
}
.testimonial-card__author { 
  margin-top: 2rem; 
  display: flex; align-items: center; gap: 1rem; 
  position: relative; z-index: 1;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 1.5rem;
}
.testimonial-card__avatar { 
  width: 3rem; height: 3rem; 
  background: var(--red); color: white; 
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.25rem; 
}
.testimonial-card__name { font-weight: 700; font-size: 1rem; color: var(--black); }
.testimonial-card__role { font-size: 0.75rem; color: var(--gray-light); text-transform: uppercase; letter-spacing: 0.1em; }

/* ==========================================================================
   CTA
   ========================================================================== */
.cta { 
  padding: clamp(4rem, 10vw, 7rem) 0; 
  background: linear-gradient(135deg, #0C0A09 0%, #1C1917 50%, #0C0A09 100%);
  color: white; text-align: center; position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(220,38,38,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta__inner {
  position: relative; z-index: 2;
  width: min(100% - 2rem, 80rem); margin: 0 auto;
}
.cta__content { max-width: 600px; margin: 0 auto; }
.cta__title { 
  font-family: var(--font-display); 
  font-size: clamp(2.8rem, 7vw, 5rem); 
  line-height: 0.95; text-transform: uppercase; margin-bottom: 1rem;
}
.cta__desc { 
  font-size: 1.1rem; color: rgba(255,255,255,0.7); 
  line-height: 1.6; margin-bottom: 2.5rem;
}
.cta__actions { display: flex; gap: 1rem; justify-content: center; }
.cta__btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 2.2rem; border-radius: 3px; font-size: 1.05rem; font-weight: 700;
  background: #25D366; color: white; text-decoration: none;
  transition: all 0.25s; box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}
.cta__btn:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.4); }
.cta__btn svg { flex-shrink: 0; }

@media (max-width: 480px) {
  .cta__title { font-size: 2.2rem; }
  .cta__desc { font-size: 0.95rem; }
  .cta__btn { width: 100%; justify-content: center; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { 
  padding: 5rem 0 0; 
  background: #f5f5f4; 
  color: var(--black-light); 
}
.footer__inner { 
  width: var(--container); margin-inline: auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; 
  padding-bottom: 4rem; 
}
.footer__brand img { height: 3rem; width: auto; }
.footer__desc { font-size: 0.9375rem; color: var(--gray); margin-top: 1rem; max-width: 22rem; line-height: 1.7; }
.footer__heading { 
  font-family: var(--font-display); font-size: 1.25rem; 
  letter-spacing: 0.1em; color: var(--black); margin-bottom: 1.5rem; 
}
.footer__links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__link { 
  font-size: 0.9375rem; color: var(--gray); 
  transition: color 0.3s; 
  width: fit-content; 
}
.footer__link:hover { color: var(--red); }

.footer__bottom { background: var(--red); padding: 1.25rem 0; }
.footer__bottom-inner { 
  width: var(--container); margin-inline: auto; 
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; 
  font-size: 0.875rem; color: rgba(255,255,255,0.85); 
}
.footer__nortear { color: rgba(255,255,255,0.7); transition: color 0.3s; }
.footer__nortear:hover { color: white; }

@media (max-width: 768px) { 
  .footer__inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; } 
  .footer__brand img { margin: 0 auto; }
  .footer__link { margin: 0 auto; }
  .footer__bottom-inner { flex-direction: column; text-align: center; } 
}

/* ==========================================================================
   WHATSAPP FLOATING
   ========================================================================== */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 150;
  display: flex; align-items: center; gap: 0.75rem;
  background: #25D366; color: white;
  padding: 0.75rem 1.5rem 0.75rem 0.75rem;
  border-radius: 99px;
  font-family: var(--font-display); font-size: 1.125rem; letter-spacing: 0.05em;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.whatsapp-float:hover { transform: translateY(-5px) scale(1.05); background: #1ebe5d; }
.whatsapp-float__icon {
  width: 2.5rem; height: 2.5rem;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.whatsapp-float__icon svg { width: 1.25rem; height: 1.25rem; fill: white; }
.whatsapp-float__close {
  position: absolute; top: -5px; right: -5px;
  width: 20px; height: 20px;
  background: var(--black); color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  opacity: 0; transition: opacity 0.3s;
}
.whatsapp-float:hover .whatsapp-float__close { opacity: 1; }
.whatsapp-float.hidden { transform: translateY(150px); opacity: 0; pointer-events: none; }

@media (max-width: 480px) {
  .whatsapp-float { bottom: 1.5rem; right: 1.5rem; padding: 0.75rem; }
  .whatsapp-float__text { display: none; }
}

/* ==========================================================================
   CHAT WIDGET
   ========================================================================== */
.chat-widget { position: fixed; bottom: 2rem; right: 2rem; z-index: 160; display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem; }
.chat-widget__card {
  width: 340px; max-width: calc(100vw - 2rem);
  background: white; border-radius: 16px; overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.2);
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(20px) scale(0.95);
  pointer-events: none; transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  transform-origin: bottom right;
}
.chat-widget__card.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.chat-widget__header {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.25rem; background: #25D366; color: white;
}
.chat-widget__header-avatar {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.chat-widget__header-title { font-weight: 700; font-size: 0.95rem; }
.chat-widget__header-status { font-size: 0.7rem; opacity: 0.8; }
.chat-widget__close {
  margin-left: auto; width: 1.75rem; height: 1.75rem; border-radius: 50%;
  background: rgba(0,0,0,0.15); color: white; border: none; cursor: pointer;
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.2s;
}
.chat-widget__close:hover { background: rgba(0,0,0,0.3); }
.chat-widget__body { padding: 1.25rem; display: flex; flex-direction: column; gap: 1rem; background: #f0f5fb; }
.chat-widget__msg { display: flex; flex-direction: column; }
.chat-widget__msg--received { align-items: flex-start; }
.chat-widget__bubble {
  background: white; padding: 0.85rem 1rem; border-radius: 8px 8px 8px 4px;
  font-size: 0.9rem; color: var(--black); line-height: 1.5;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04); max-width: 100%;
}
.chat-widget__time { font-size: 0.7rem; color: var(--gray-light); margin-top: 0.4rem; }
.chat-widget__actions { display: flex; flex-direction: column; gap: 0.5rem; }
.chat-widget__btn {
  display: flex; align-items: center; justify-content: center;
  padding: 0.75rem; border-radius: 8px; font-weight: 700; font-size: 0.85rem;
  background: #25D366; color: white; text-decoration: none;
  transition: background 0.2s; border: none; cursor: pointer;
}
.chat-widget__btn:hover { background: #1ebe5d; }
.chat-widget__btn--outline { background: transparent; color: var(--gray); border: 1px solid #d4d4d4; }
.chat-widget__btn--outline:hover { background: #f5f5f5; }
.chat-widget__fab {
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: #25D366; color: white; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: all 0.3s cubic-bezier(0.175,0.885,0.32,1.275);
  flex-shrink: 0;
}
.chat-widget__fab:hover { transform: scale(1.1); background: #1ebe5d; }
@media (max-width: 480px) {
  .chat-widget { bottom: 1.5rem; right: 1.5rem; left: 1.5rem; }
  .chat-widget__card { width: 100%; max-width: 100%; }
}

/* ==========================================================================
   MODAL (Pop-up de Detalhes)
   ========================================================================== */
.modal-overlay { 
  position: fixed; inset: 0; z-index: 200; 
  background: rgba(0,0,0,0.75); 
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; 
  padding: 1.5rem; 
  opacity: 0; pointer-events: none; 
  transition: opacity 0.3s; 
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal { 
  background: white; border-radius: 16px; overflow: hidden;
  width: 100%; max-width: 850px; max-height: 90dvh;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "gallery info"
    "footer footer";
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }

.modal__close { 
  position: absolute; top: 0.75rem; right: 0.75rem; z-index: 20;
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  background: rgba(0,0,0,0.4); color: white; border: none;
  font-size: 1.3rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.modal__close:hover { background: var(--red); }

.modal__gallery { 
  position: relative; background: #111; grid-area: gallery;
  overflow: hidden; min-height: 300px;
}
.modal__gallery-track { display: flex; height: 100%; transition: transform 0.4s ease; }
.modal__gallery-slide { flex: 0 0 100%; display: flex; align-items: center; justify-content: center; }
.modal__gallery-slide img { max-width: 100%; max-height: 100%; object-fit: contain; }

.modal__gallery-btn { 
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  background: rgba(255,255,255,0.85); border: none; cursor: pointer;
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15); transition: all 0.2s;
  z-index: 5;
}
.modal__gallery-btn:hover { background: var(--red); color: white; }
.modal__gallery-btn--prev { left: 0.5rem; }
.modal__gallery-btn--next { right: 0.5rem; }

.modal__dots-row {
  position: absolute; bottom: 0.75rem; left: 50%; transform: translateX(-50%);
  display: flex; justify-content: center; gap: 0.35rem; z-index: 5;
}
.modal__gallery-dot {
  width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.4);
  cursor: pointer; transition: all 0.2s; padding: 0; border: none;
}
.modal__gallery-dot.active { background: var(--red); width: 20px; border-radius: 3px; }

.modal__gallery-360 { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: #111; z-index: 2; }
.modal__gallery-360 canvas, .modal__gallery-360 img { max-width: 100%; max-height: 100%; object-fit: contain; cursor: grab; user-select: none; }
.modal__gallery-360 img:active { cursor: grabbing; }
.modal__btn360 {
  position: absolute; top: 0.75rem; left: 0.75rem; z-index: 10;
  background: rgba(0,0,0,0.5); color: white; border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px; padding: 0.3rem 0.6rem; font-size: 0.7rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s; font-family: var(--font-display); letter-spacing: 0.04em;
}
.modal__btn360:hover { background: var(--red); border-color: var(--red); }
.modal__btn360.active { background: var(--red); border-color: var(--red); }

.modal__body {
  grid-area: info;
  padding: 1.5rem; overflow-y: auto;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.modal__label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; color: var(--red); text-transform: uppercase; }
.modal__title { font-family: var(--font-display); font-size: 2rem; line-height: 1; letter-spacing: 0.02em; text-transform: uppercase; color: var(--black); }
.modal__sub { font-size: 0.85rem; color: var(--gray); }

.modal__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.modal__spec-item { background: #f5f5f5; padding: 0.6rem 0.75rem; border-radius: 6px; border-left: 3px solid var(--red); }
.modal__spec-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--gray); }
.modal__spec-value { font-family: var(--font-display); font-size: 1.1rem; color: var(--black); margin-top: 0.1rem; }

.modal__desc { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

.modal__footer-bar {
  grid-area: footer;
  padding: 0.65rem 1.5rem; background: #fafafa; border-top: 1px solid #eee;
}
.modal__wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; padding: 0.75rem; border-radius: 8px;
  background: #25D366; color: white; text-decoration: none;
  font-weight: 700; font-size: 0.9rem; transition: background 0.2s;
}
.modal__wa-btn:hover { background: #1da851; }

@media (max-width: 767px) {
  .modal-overlay { padding: 0; }
  .modal { 
    max-width: 100%; max-height: 100dvh; border-radius: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas:
      "gallery"
      "info"
      "footer";
  }
  .modal__gallery { min-height: 220px; max-height: 40vh; }
  .modal__body { padding: 1.25rem; }
  .modal__title { font-size: 1.6rem; }
  .modal__specs { grid-template-columns: 1fr; }
  .modal__close { background: rgba(0,0,0,0.5); }
}

/* ==========================================================================
   ABOUT / SOBRE
   ========================================================================== */
.about {
  position: relative; padding: var(--gap-section) 0; overflow: hidden;
  background: var(--black); color: white;
}
.about__bg {
  position: absolute; inset: 0; opacity: 0.06;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><circle cx="30" cy="30" r="20" fill="%23DC2626"/></svg>') repeat;
  background-size: 60px 60px;
}
.about__inner {
  position: relative; z-index: 2;
  width: min(100% - 3rem, 80rem); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about__text .section-label { color: var(--red); }
.about__text .section-title { color: white; }
.about__desc {
  color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.7; margin-bottom: 1rem;
}
.about__stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.about__stat { text-align: center; }
.about__stat-num {
  display: block; font-family: var(--font-display); font-size: 2.2rem;
  color: var(--red); line-height: 1; margin-bottom: 0.3rem;
}
.about__stat-label {
  font-size: 0.7rem; color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.about__image { border-radius: 8px; overflow: hidden; }
.about__image img { width: 100%; display: block; }

@media (max-width: 768px) {
  .about__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__stats { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .about__stat-num { font-size: 1.8rem; }
}

/* ==========================================================================
   CALLBACK (Atendimento Rápido)
   ========================================================================== */
.callback {
  padding: var(--gap-section) 0;
  background: var(--white);
  position: relative;
}
.callback__inner {
  width: min(100% - 2rem, 48rem);
  margin: 0 auto;
}
.callback__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.callback__desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin-bottom: 2rem;
}
.callback__form {
  width: 100%;
}
.callback__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.callback__input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid #e5e5e4;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--black);
  background: #fafaf9;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.callback__input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}
.callback__input::placeholder { color: var(--gray-light); }
.callback__input select { cursor: pointer; }
.callback__captcha {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.callback__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 2.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 4px 14px var(--red-glow);
}
.callback__btn:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--red-glow);
}
.callback__btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.callback__msg {
  margin-top: 1rem;
  font-size: 0.95rem;
}
.callback__msg--ok {
  color: #16a34a;
  display: block;
  padding: 0.75rem;
  background: #f0fdf4;
  border-radius: 6px;
}
.callback__msg--err {
  color: #dc2626;
  display: block;
  padding: 0.75rem;
  background: #fef2f2;
  border-radius: 6px;
}
@media (max-width: 600px) {
  .callback__fields { grid-template-columns: 1fr; }
}

/* ==========================================================================
   COOKIE CONSENT BAR (LGPD)
   ========================================================================== */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 180;
  background: var(--black);
  color: rgba(255,255,255,0.85);
  padding: 1rem 0;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar__inner {
  width: min(100% - 2rem, 80rem);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-bar__text {
  font-size: 0.875rem;
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}
.cookie-bar__text a {
  color: var(--red);
  text-decoration: underline;
}
.cookie-bar__btn {
  flex-shrink: 0;
  padding: 0.6rem 1.5rem;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s;
  text-transform: uppercase;
}
.cookie-bar__btn:hover { background: var(--red-dark); }
@media (max-width: 480px) {
  .cookie-bar__inner { flex-direction: column; text-align: center; }
  .cookie-bar__btn { width: 100%; }
}

/* ==========================================================================
   FAQ — Accordion
   ========================================================================== */
.faq {
  padding: var(--gap-section) 0;
  background: var(--white);
}
.faq__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}
.faq__list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq__item {
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq__item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.faq__item[open] {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--black);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--white-mute);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.3s;
  position: relative;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--text-muted);
  transition: background 0.3s;
}
.faq__icon::before { width: 2px; height: 10px; }
.faq__icon::after { width: 10px; height: 2px; }
.faq__item[open] .faq__icon { transform: rotate(45deg); background: var(--red); }
.faq__item[open] .faq__icon::before,
.faq__item[open] .faq__icon::after { background: white; }
.faq__answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   SIMULADOR — Financiamento
   ========================================================================== */
.simulador {
  padding: var(--gap-section) 0;
  background: var(--white-mute);
}
.simulador__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}
.simulador__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 48rem;
  margin: 0 auto;
  align-items: start;
}
.simulador__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.simulador__group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.simulador__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.simulador__input {
  padding: 0.75rem 1rem;
  border: 1px solid #e5e5e4;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--black);
  background: white;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.simulador__input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}
.simulador__btn {
  padding: 0.75rem 1.5rem;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.simulador__btn:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}
.simulador__result {
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 200px;
}
.simulador__result-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--red);
  line-height: 1;
}
.simulador__result-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.simulador__result-detail {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
.simulador__disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-light);
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .simulador__box { grid-template-columns: 1fr; gap: 1.5rem; }
  .simulador__result-value { font-size: 2rem; }
}
