/* ============================================
   HERO LOGO (LP escorredor)
   Logo grande no canto superior esquerdo, encolhe para o header no scroll
   ============================================ */

:root {
  --confidence-bar-h: 90px;
}

.header .logo {
  position: absolute;
  top: 3rem;
  left: max(5vw, 3rem);
  z-index: 5;
  transform-origin: top left;
  transform: scale(3.5);
  transition: top 0.7s var(--ease-out), left 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.header.scrolled .logo {
  top: 0.5rem;
  left: 3rem;
  transform: scale(1);
}

.header-nav {
  margin-left: auto;
}

.header-nav a {
  opacity: 1;
}

.cart-icon {
  opacity: 1;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  transition: background var(--transition), border-color var(--transition);
}

.header.scrolled .cart-icon {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.header.scrolled .cart-icon:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
}

.tag-best-seller {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-accent);
  color: #fff;
  padding: 0.55rem 1.1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border-radius: 4px;
}

.logo img {
  height: 56px;
  width: auto;
  display: block;
}

.brand-logo {
  margin-bottom: 1.5rem;
  opacity: 1;
  line-height: 0;
}

.brand-logo img {
  height: 120px;
  width: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.45;
}

@media (max-width: 640px) {
  .header {
    height: 72px;
    padding: 0 1.25rem;
  }

  .header .logo {
    top: 50%;
    left: 1.25rem;
    transform: translateY(-50%) scale(1);
    transform-origin: center left;
  }

  .header.scrolled .logo {
    top: 50%;
    left: 1.25rem;
    transform: translateY(-50%) scale(1);
    transform-origin: center left;
  }

  .header-nav {
    display: flex;
    position: static;
    align-items: center;
    flex-direction: row;
    gap: 0;
    margin-left: auto;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .header-nav a {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .logo img {
    height: 42px;
  }

  .cart-icon {
    padding: 0.55rem;
    border-radius: 8px;
  }

  .cart-icon svg {
    width: 22px;
    height: 22px;
  }

  .brand-logo img {
    height: 90px;
  }
}

.tag-best-seller::before {
  content: '\2605';
  font-size: 0.9em;
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-bottom: 1.75rem;
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
}

.rating-pill .stars {
  color: var(--color-accent);
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.btn-text-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.btn-text-arrow svg {
  transition: transform var(--transition);
}

.btn-text-arrow:hover svg {
  transform: translateX(4px);
}

/* ============================================
   HERO
   ============================================ */

.hero {
    min-height: calc(100svh - var(--confidence-bar-h));
    height: calc(100svh - var(--confidence-bar-h));
    position: relative;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 75%;
}

.hero--az .hero-image {
    object-position: left 70%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.70) 0%,
            rgba(0,0,0,.40) 20%,
            rgba(0,0,0,0) 33%
        );
    z-index: 1;
}

.hero--az .hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.85) 0%,
            rgba(0,0,0,.65) 22%,
            rgba(0,0,0,.30) 40%,
            rgba(0,0,0,0) 55%
        );
}

.hero--az .hero-title {
    text-shadow: 0 2px 18px rgba(0,0,0,.45);
}

.hero--az .hero-subtitle {
    text-shadow: 0 1px 8px rgba(0,0,0,.5);
}

.hero--az .header .logo {
    transform: scale(2.2);
}

.hero-content {
    position: absolute;
    top: 25%;
    left: max(5vw, 2rem);
    width: min(90vw, 720px);
    text-align: left;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

.eyebrow {
    display: inline-block;
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0 0 1rem;
}

.hero-title {
    font-size: clamp(3rem, 5.5vw, 5rem);
    line-height: .92;
    letter-spacing: -0.03em;
    font-weight: 900;
    text-transform: uppercase;
    max-width: 16ch;
    margin: 0;
    color: white;
}

.hero-subtitle {
    max-width: 500px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255,255,255,.65);
    margin: 0;
    font-weight: 400;
}

.hero-trust {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.95rem;
    background: rgba(0, 177, 234, 0.12);
    border: 1px solid rgba(0, 177, 234, 0.32);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.hero-trust strong {
    font-weight: 700;
    color: #fff;
}

.hero-trust-icon {
    width: 16px;
    height: 16px;
    color: #00B1EA;
    flex-shrink: 0;
}

.hero-cta {
    margin-top: 0;
    min-width: 180px;
    height: 56px;
    border-radius: 0;
    font-weight: 700;
    letter-spacing: .08em;
    background: #f97316;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0 2.5rem;
    transition: .25s;
    font-size: .85rem;
    gap: 0.6rem;
}

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

.hero-cta-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.25s var(--ease-out);
}

.hero-cta:hover .hero-cta-arrow {
    transform: translateX(4px);
}

.hero-scroll {
    position: absolute;
    bottom: 7.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    text-decoration: none;
    display: block;
    transition: opacity .5s var(--ease-out);
}

.hero-scroll.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.hero-scroll-chevron {
    display: block;
    width: 28px;
    height: 14px;
    color: rgba(255,255,255,.45);
    transition: color .35s;
    animation: chevronHint 3s ease-in-out infinite;
}

.hero-scroll-chevron svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.hero-scroll:hover .hero-scroll-chevron {
    color: rgba(255,255,255,.8);
}

@keyframes chevronHint {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(5px); }
}

/* ============================================
   CONFIDENCE BAR
   ============================================ */

.confidence-bar {
  background: #0F0F0F;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  padding: 2rem 2rem;
  flex: 0 0 auto;
}

.confidence-items {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.confidence-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  letter-spacing: 0.02em;
}

.confidence-item svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  :root {
    --confidence-bar-h: 160px;
  }

  .confidence-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .confidence-item {
    font-size: 0.78rem;
    gap: 0.5rem;
    padding: 0.7rem 0.85rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    align-items: center;
  }

  .confidence-item svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
  }

  .mp-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }
  .mp-brand-symbol {
    width: 24px;
    height: 15px;
    display: block;
    flex-shrink: 0;
  }
  .mp-brand-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
  }
}

/* ============================================
   SEÇÃO FUNCIONAL
   ============================================ */

.section-funcional {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  min-height: 85vh;
  position: relative;
  overflow: hidden;
}

.funcional-image {
  position: relative;
  overflow: hidden;
}

.funcional-image {
  position: relative;
  overflow: hidden;
}

.funcional-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% center;
}

.funcional-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(0,0,0,0.15), rgba(0,0,0,0.55));
}

.funcional-content {
  position: relative;
  z-index: 2;
  padding: 4rem 3rem 4rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  background: var(--color-bg);
}

.funcional-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.funcional-header p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
}

.funcional-timeline {
  position: relative;
  padding-left: 2.5rem;
}

.funcional-timeline::before {
  content: '';
  position: absolute;
  left: 12.5px;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background: linear-gradient(to bottom, var(--color-accent) 0%, rgba(255,255,255,0.08) 100%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding: 0 0 2.5rem 1rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-icon {
  position: absolute;
  left: -2.5rem;
  top: 2px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  background: var(--color-bg);
  border-radius: 50%;
}

.timeline-icon svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
}

.timeline-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}

.timeline-text p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .section-funcional {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .funcional-image {
    height: 50vh;
  }

  .funcional-content {
    padding: 3rem 1.5rem;
    gap: 1.5rem;
  }

  .funcional-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.45), rgba(0,0,0,0.1));
  }
}

@media (max-width: 640px) {
  .funcional-image {
    height: 40vh;
  }

  .funcional-header h2 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .funcional-content {
    padding: 2.5rem 1.25rem;
    gap: 1.25rem;
  }

  .funcional-timeline {
    padding-left: 2rem;
  }

  .funcional-timeline::before {
    left: 10px;
  }

  .timeline-item {
    padding: 0 0 1.75rem 0.75rem;
  }

  .timeline-icon {
    left: -2rem;
    width: 22px;
    height: 22px;
  }

  .timeline-icon svg {
    width: 13px;
    height: 13px;
  }
}

/* ============================================
   SEÇÃO PROJETADO
   ============================================ */

.section-projetado {
  padding: 6rem 2rem;
  text-align: center;
  background: #0A0A0A;
}

.projetado-content {
  max-width: 700px;
  margin: 0 auto;
}

.projetado-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.section-projetado h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}

.projetado-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  margin: 0 0 2.5rem;
  line-height: 1.5;
}

.projetado-cta {
  display: inline-block;
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--transition);
}

.projetado-cta:hover {
  color: var(--color-accent-hover);
}

/* ============================================
   GALERIA
   ============================================ */

.gallery-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.gallery-header p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin: 0;
  font-weight: 300;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-thumb {
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  display: block;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

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

.gallery-foot {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-thumb {
    min-height: 120px;
  }
}

.spec-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 2rem 1rem;
  border-right: 1px solid var(--color-border);
}

.spec-block:last-child {
  border-right: none;
}

.spec-block-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: var(--color-accent);
  letter-spacing: -0.02em;
}

.spec-block-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-top: 0.5rem;
}

.spec-block-sub {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
}

@media (max-width: 768px) {
  .spec-block:nth-child(2) {
    border-right: none;
  }

  .spec-block:nth-child(1),
  .spec-block:nth-child(2) {
    border-bottom: 1px solid var(--color-border);
  }
}

/* ============================================
   BRAND SECTION
   ============================================ */

.brand-logo {
  line-height: 0;
}

.brand-logo img {
  height: clamp(180px, 20vw, 240px);
  width: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.85;
}

/* ============================================
   CTA FINAL + BUY BOX
   ============================================ */

.cta-final {
  padding: 5rem 3rem;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(242, 99, 28, 0.05) 0%, transparent 60%),
    var(--color-bg);
  position: relative;
}

.cta-final-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.cta-final-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  padding: 1rem;
}

.cta-buybox {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  position: relative;
}

.cta-buybox::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(135deg, var(--color-accent) 0%, transparent 50%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0.4;
  pointer-events: none;
}

.cta-buybox-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 0.95;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.cta-buybox-desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text-secondary);
  margin: 0;
}

.cta-buybox-price {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  font-family: var(--font-display);
  line-height: 1;
  margin-top: 0.5rem;
}

.cta-buybox-price-currency {
  font-size: 1.5rem;
  color: var(--color-text-secondary);
  font-weight: 400;
}

.cta-buybox-price-amount {
  font-size: 3.75rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.cta-buybox-price-cents {
  font-size: 1.75rem;
  color: var(--color-text-secondary);
  font-weight: 400;
}

.cta-buybox-parcels {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin-top: -0.5rem;
}

.cta-buybox-parcels strong {
  color: var(--color-text);
  font-weight: 600;
}

.cta-buybox-shipping {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: rgba(242, 99, 28, 0.08);
  border: 1px solid rgba(242, 99, 28, 0.2);
  border-radius: 8px;
  margin-top: 0.25rem;
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 600;
}

.cta-buybox-shipping-icon {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.cta-buybox-trust {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.cta-buybox-trust li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--color-text);
}

.cta-buybox-trust svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.cta-buybox .btn-add-cart {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  padding: 1.15rem 2rem;
}

.cta-buybox-payment {
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}

.cta-buybox-payment-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.7rem;
}

.payment-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.payment-badge.featured {
  background: rgba(0, 177, 234, 0.1);
  border-color: rgba(0, 177, 234, 0.3);
  color: var(--color-text);
}

.payment-badge svg {
  width: 16px;
  height: 16px;
}

.payment-secure {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--color-text-secondary);
}

.payment-secure svg {
  width: 14px;
  height: 14px;
  color: var(--color-accent);
}

@media (max-width: 1024px) {
  .cta-final-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .cta-final {
    padding: 4rem 2rem;
  }
  .cta-buybox {
    padding: 2rem 1.75rem;
  }
}

@media (max-width: 640px) {
  .cta-final {
    padding: 3rem 1.25rem;
  }
  .cta-buybox {
    padding: 1.5rem 1.25rem;
  }
  .cta-buybox-price-amount {
    font-size: 3.25rem;
  }
}

@media (max-width: 480px) {
  .cta-buybox {
    padding: 1.5rem 1.15rem;
  }
  .cta-buybox-trust li {
    font-size: 0.82rem;
  }
}

/* ============================================
   SIDE NOTE (cartão "post-it" no canto da seção)
   ============================================ */

.section-side-note {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem 0.85rem 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-accent);
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  max-width: 360px;
  transform: rotate(-1.5deg);
  transform-origin: center;
}

.section-side-note::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(2deg);
  width: 56px;
  height: 16px;
  background: rgba(242, 99, 28, 0.65);
  border-radius: 1px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.section-side-note-text {
  font-size: 0.9rem;
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.3;
}

.section-side-note-btn {
  font-size: 0.72rem;
  padding: 0.6rem 1.1rem;
  flex-shrink: 0;
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .section-side-note {
    position: static;
    margin: 1.5rem;
    transform: rotate(0);
    max-width: none;
  }
  .section-side-note::before {
    display: none;
  }
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
  transition: opacity var(--transition);
  opacity: 0.7;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
}

.lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
  line-height: 1;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

.lightbox-prev svg,
.lightbox-next svg {
  width: 28px;
  height: 28px;
}

.lightbox-counter {
  position: absolute;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.lightbox-thumbs {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  max-width: calc(100vw - 4rem);
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.lightbox-thumbs::-webkit-scrollbar {
  height: 6px;
}

.lightbox-thumbs::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.lightbox-thumb {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  padding: 0;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.lightbox-thumb:hover {
  opacity: 0.85;
}

.lightbox-thumb.is-active {
  opacity: 1;
  border-color: var(--color-accent);
  transform: scale(1.04);
}

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

@media (max-width: 640px) {
  .lightbox-counter {
    bottom: 5.5rem;
    font-size: 0.8rem;
  }

  .lightbox-thumbs {
    bottom: 1rem;
    gap: 0.5rem;
    padding: 0.5rem;
  }

  .lightbox-thumb {
    width: 56px;
    height: 56px;
  }
}

/* ============================================
   STICKY CTA MOBILE
   ============================================ */

.sticky-cta-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(11, 11, 11, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--color-border);
  padding: 0.85rem 1.25rem;
  /* Safe-area iOS: respeita home indicator em iPhones com notch.
     Requer <meta name="viewport" content="...viewport-fit=cover"> no HTML. */
  padding-bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}

.sticky-cta-mobile.visible {
  transform: translateY(0);
}

.sticky-cta-mobile .info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.sticky-cta-mobile .price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}

.sticky-cta-mobile .small {
  font-size: 0.7rem;
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
}

.sticky-cta-mobile .btn {
  padding: 0.85rem 1.5rem;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .sticky-cta-mobile {
    display: flex;
  }
  body.has-sticky-cta {
    padding-bottom: 80px;
  }
}

/* ============================================
   RESPONSIVO GERAL
   ============================================ */

@media (max-width: 1024px) {
    .hero-content {
        top: 15%;
    }

    .hero-title {
        font-size: clamp(2.8rem, 5.5vw, 4rem);
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 460px;
        height: calc(100svh - var(--confidence-bar-h));
        padding: 0;
    }

    .hero-image {
        object-position: 53% 75%;
        transform: scale(1.03);
        transform-origin: center center;
    }

    .hero--az .hero-image {
        object-position: 18% 80%;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,.70) 0%,
                rgba(0,0,0,.46) 32%,
                rgba(0,0,0,.10) 66%,
                rgba(0,0,0,.16) 100%
            ),
            linear-gradient(
                90deg,
                rgba(0,0,0,.76) 0%,
                rgba(0,0,0,.38) 42%,
                rgba(0,0,0,.06) 76%,
                rgba(0,0,0,0) 100%
            );
    }

    .hero-content {
        top: 15%;
        gap: 14px;
        left: 1.5rem;
        width: min(86vw, 360px);
    }

    .hero-tag {
        font-size: .72rem;
        letter-spacing: .22em;
    }

    .hero-title {
        font-size: clamp(2.35rem, 9.6vw, 2.85rem);
        line-height: .94;
        max-width: 15ch;
    }

    .hero-subtitle {
        font-size: .98rem;
        line-height: 1.42;
        max-width: 22ch;
    }

    .hero-cta {
        width: fit-content;
        min-width: 168px;
        height: 52px;
        padding: 0 2rem;
    }

    .hero-trust {
        font-size: 0.72rem;
        padding: 0.45rem 0.85rem;
    }

    .hero-scroll {
        bottom: 14rem;
    }

    .hero-scroll-chevron {
        width: 24px;
        height: 12px;
    }

    .section-funcional {
        padding: 4rem 1.5rem;
    }

    .section-projetado,
    .section-brand,
    .section-faq {
        padding: 4rem 1.5rem;
    }

    .gallery-section {
        padding: 3rem 1.5rem;
    }

    .cta-final {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(2.1rem, 8.4vw, 2.6rem);
    }
}

/* ============================================
   ESPECIFICAÇÕES E VISUAL — EDITORIAL / BAUHAUS
   ============================================ */

.section-specs {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 3rem 3rem 6rem;
  background:
    radial-gradient(ellipse at 28% 50%, #181818 0%, #0e0e0e 50%, #0B0B0B 100%);
}

.section-specs.reveal {
  opacity: 1;
  transform: none;
}

.section-specs .specs-viewer,
.section-specs .specs-header,
.section-specs .specs-info {
  opacity: 0;
  transition: opacity 0.7s var(--ease-out);
}

.section-specs .specs-viewer {
  transition-delay: 0.05s;
}

.section-specs .specs-header {
  transition-delay: 0.15s;
}

.section-specs .specs-info {
  transition-delay: 0.25s;
}

.section-specs.reveal-done .specs-viewer,
.section-specs.reveal-done .specs-header,
.section-specs.reveal-done .specs-info {
  opacity: 1;
}

.specs-header {
  position: relative;
  z-index: 1;
  text-align: left;
  margin: 0 0 4rem;
  max-width: 600px;
  width: 100%;
}

.specs-header .eyebrow {
  margin-bottom: 1rem;
}

.specs-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.9;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.specs-header p {
  font-size: 1.05rem;
  color: #B0B0B0;
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
}

.specs-layout {
  position: relative;
  z-index: 1;
  pointer-events: none;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.specs-viewer {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.specs-viewer::before {
  content: '';
  position: absolute;
  width: 65%;
  height: 65%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    rgba(242, 99, 28, 0.06) 0%,
    rgba(242, 99, 28, 0.02) 30%,
    transparent 55%
  );
  pointer-events: none;
  z-index: 0;
}

.lp-3d-model {
  width: 100%;
  height: 100%;
  flex: 1;
  min-height: 0;
  --poster-color: transparent;
  --progress-bar-color: transparent;
  --progress-bar-height: 0;
  background-color: transparent;
  --offset-x: -15%;
  animation: lp-3d-float 4.5s ease-in-out infinite;
  filter: brightness(1.08) contrast(1.05)
          drop-shadow(0 10px 30px rgba(0, 0, 0, 0.45))
          drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

@keyframes lp-3d-float {
  0%, 100% { transform: translateX(var(--offset-x)) translateY(0); }
  50% { transform: translateX(var(--offset-x)) translateY(-10px); }
}

.lp-3d-model::part(default-progress-bar) {
  display: none;
}

.lp-3d-model::part(annotation-layer) {
  background-color: transparent;
}

.viewer-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 100%;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-align: center;
  padding: 1.5rem;
}

.viewer-error img {
  max-width: min(60%, 360px);
  max-height: 75%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.viewer-error p {
  margin: 0;
  max-width: 30ch;
  line-height: 1.4;
}

.viewer-pill {
  position: absolute;
  bottom: 2.5rem;
  left: 15%;
  transform: translateX(-50%);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.8rem 0.35rem 0.7rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 450;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.5s ease;
}

.viewer-pill svg {
  display: block;
  opacity: 0.6;
}

.viewer-pill.is-hidden {
  opacity: 0;
}

.specs-viewer-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: grab;
  background: transparent;
  touch-action: none;
}

.specs-viewer.is-active .specs-viewer-overlay {
  display: none;
}

.viewer-fullscreen {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--color-text);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  user-select: none;
}

.viewer-fullscreen:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
  transform: scale(1.03);
}

.viewer-fullscreen:active {
  transform: scale(0.97);
}

.viewer-fullscreen svg {
  display: block;
}

.viewer-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.viewer-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.viewer-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.viewer-modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-3d-model-modal {
  width: 100%;
  height: 100%;
  --poster-color: transparent;
  --progress-bar-color: transparent;
  --progress-bar-height: 0;
  background-color: transparent;
  touch-action: none;
}

.viewer-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--color-text);
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.viewer-modal-close:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: scale(1.05);
}

.viewer-modal-close:active {
  transform: scale(0.95);
}

.viewer-modal-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  user-select: none;
  pointer-events: none;
}

body.viewer-modal-open {
  overflow: hidden;
}

.specs-canvas {
  /* placeholder: mantém a coluna esquerda do grid */
  pointer-events: none;
}

.specs-info {
  position: relative;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
}

.specs-info::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.06),
    transparent
  );
  pointer-events: none;
}

.specs-info .specs-dimensions {
  padding: 0 0 3rem;
}

.specs-info .specs-rule {
  margin: 0;
}

.specs-info .specs-list {
  padding: 3rem 0 0;
}

.specs-rule {
  border: 0;
  border-top: 1px solid var(--color-border);
  margin: 0;
}

.specs-dimensions {
  padding: 3rem 0;
  position: relative;
}

.specs-dimensions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 2.5px;
  background: var(--color-accent);
  border-radius: 2px;
}

.specs-dim-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.specs-dim-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.specs-dim {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 1rem;
}

.specs-dim-icon {
  width: 24px;
  height: auto;
  flex-shrink: 0;
  stroke: var(--color-accent);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  opacity: 0.7;
}

.specs-dim-num {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1;
  color: var(--color-accent);
  letter-spacing: -0.02em;
}

.specs-dim-num span {
  font-size: 0.35em;
  color: var(--color-text);
  margin-left: 0.15em;
  font-weight: 400;
  letter-spacing: 0;
}

.specs-dim-cap {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.specs-list {
  margin: 0;
  padding: 2.5rem 0 0;
}

.specs-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-border);
}

.specs-row:last-child {
  border-bottom: none;
}

.specs-row dt {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin: 0;
}

.specs-row dd {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--color-text);
  margin: 0;
  text-align: right;
}

.specs-foot {
  margin-top: 4rem;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

@media (min-width: 769px) {
  .viewer-fullscreen {
    display: none;
  }
}

@media (max-width: 768px) {
  .section-specs {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 4rem 1.5rem;
  }

  .specs-viewer {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: auto;
  }

  .lp-3d-model {
    --offset-x: 0;
  }

  .lp-3d-model::part(interaction-prompt) {
    display: none;
  }

  .specs-header {
    margin-bottom: 3rem;
  }

  .specs-layout {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 2.5rem;
    pointer-events: auto;
  }

  .specs-canvas {
    display: none;
  }

  .specs-dim-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .specs-dim-num {
    font-size: clamp(2.75rem, 10vw, 4rem);
  }

  .specs-info::before {
    display: none;
  }

  .specs-viewer-overlay {
    display: none;
  }

  .viewer-pill {
    display: none;
  }

  .specs-dim {
    border-left: none;
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .section-specs {
    padding: 3rem 1.25rem;
  }

  .specs-dimensions,
  .specs-list {
    padding-top: 2rem;
  }

  .specs-foot {
    margin-top: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .hero-scroll {
        display: none;
    }

    .parallax {
        transform: none !important;
    }
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color var(--transition);
}

.footer-link svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  opacity: 0.85;
}

.footer-link:hover svg {
  opacity: 1;
}

/* ============================================
   RESPONSIVO — Medium / small desktops (1025–1400px)
   ============================================ */

@media (max-width: 1400px) {
  body { overflow-x: hidden; }

  .header .logo {
    top: 1.5rem;
    left: max(2.5vw, 2rem);
    transform: scale(1.6);
  }

  .hero-content {
    top: 14%;
    width: min(88vw, 600px);
    gap: 20px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
  }

  .hero-subtitle {
    font-size: 1rem;
    max-width: 400px;
  }

  .section-funcional {
    min-height: 70vh;
  }

  .funcional-content {
    padding: 3rem 2rem 3rem 2rem;
  }

  .specs-layout {
    gap: 2.5rem;
  }

  .specs-dim-grid {
    gap: 1.5rem;
  }

  .specs-dim-num {
    font-size: clamp(2.5rem, 4vw, 4rem);
  }

  .cta-final-grid {
    gap: 2.5rem;
  }

  .cta-final {
    padding: 4rem 2rem;
  }

  .cta-buybox {
    padding: 2rem 1.75rem;
  }

  .cta-buybox-price-amount {
    font-size: 3rem;
  }
}

/* ============================================
   RESPONSIVO — Telas curtas (≤ 800px de altura)
   ============================================ */

@media (max-height: 800px) {
  body { overflow-x: hidden; }

  /* Garante que tudo apareça em telas curtas: o IntersectionObserver
     nem sempre dispara reveal-done para elementos que ficam fora da
     viewport em 1366x768. */
  .reveal,
  .reveal-done,
  [class*="reveal"] {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Forçar filhos do section-specs a aparecer (a regra original esconde
     eles até o pai ganhar reveal-done) */
  .section-specs .specs-viewer,
  .section-specs .specs-header,
  .section-specs .specs-info {
    opacity: 1 !important;
  }

  .header .logo {
    top: 1rem;
    left: 1.5rem;
    transform: scale(1.3);
    transform-origin: top left;
  }

  .header .logo img {
    height: 48px;
  }

  .hero {
    min-height: 420px;
    height: 420px;
  }

  .hero-content {
    top: 5rem;
    gap: 10px;
  }

  .hero-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
  }

  .hero-subtitle {
    font-size: 0.9rem;
    max-width: 360px;
  }

  .hero-trust {
    font-size: 0.7rem;
    padding: 0.35rem 0.7rem;
  }

  .hero-cta {
    min-width: 150px;
    height: 44px;
    font-size: 0.78rem;
    padding: 0 1.5rem;
  }

  .hero-scroll {
    display: none;
  }

  .section-funcional {
    min-height: auto;
    margin: 0 2rem;
    width: calc(100% - 4rem);
    padding-bottom: 5rem;
  }

  .section-specs {
    min-height: auto;
    padding: 1rem 2rem 2rem;
    display: block;
  }

  .section-specs .specs-header {
    text-align: left;
    margin: 0 0 1.5rem;
    max-width: 600px;
  }

  .section-specs .specs-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin: 0 0 0.25rem;
  }

  .section-specs .specs-header p {
    font-size: 1rem;
  }

  .section-specs .specs-header .eyebrow {
    margin-bottom: 0.25rem;
  }

  .section-specs .section-side-note {
    position: relative;
    bottom: auto;
    right: auto;
    display: inline-flex;
    float: right;
    margin-top: 2rem;
    padding: 0.65rem 0.85rem 0.65rem 1.5rem;
    transform: rotate(0);
    font-size: 0.85rem;
    max-width: calc(100% - 3rem);
  }

  .section-specs .section-side-note::before {
    background: rgba(242, 99, 28, 0.65);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }

  .specs-viewer {
    position: absolute;
    inset: 0;
  }

  .specs-viewer .lp-3d-model {
    min-height: 0;
    height: 100%;
    flex: 1;
  }

  .viewer-error img {
    max-width: min(75%, 380px);
    max-height: 80%;
  }

  .specs-layout {
    position: relative;
    z-index: 1;
    pointer-events: none;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
  }

  .specs-canvas {
    display: block;
    pointer-events: none;
  }

  .specs-info {
    pointer-events: auto;
    min-width: 0;
  }

  .specs-info::before {
    display: block;
    content: '';
    position: absolute;
    left: -24px;
    top: 15%;
    height: 70%;
    width: 1px;
    background: linear-gradient(
      to bottom,
      transparent,
      rgba(255, 255, 255, 0.06),
      transparent
    );
  }

  .specs-dimensions {
    padding: 0;
  }

  .specs-dim-grid {
    gap: 0.5rem;
  }

  .specs-dim-num {
    font-size: clamp(1.5rem, 2vw, 2rem);
  }

  .specs-list,
  .specs-info .specs-list {
    padding: 0.25rem 0 0;
  }

  .specs-row {
    padding: 0.5rem 0;
    font-size: 0.8rem;
  }

  .specs-dim-label {
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
  }

  .section-funcional .section-side-note {
    position: absolute;
    right: 2rem;
    bottom: 0.5rem;
    max-width: 320px;
    padding: 0.65rem 0.85rem 0.65rem 1.5rem;
    font-size: 0.85rem;
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--color-accent);
    border-radius: 4px;
    transform: rotate(-1deg);
  }

  .section-funcional .section-side-note .section-side-note-text {
    font-size: 0.85rem;
  }

  .section-funcional .section-side-note .section-side-note-btn {
    font-size: 0.7rem;
    padding: 0.5rem 1rem;
  }

  .section-funcional .section-side-note::before {
    background: rgba(242, 99, 28, 0.65);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }

  .cta-final {
    padding: 2.5rem 2rem;
  }

  .cta-final-grid {
    gap: 2rem;
  }

  .cta-buybox {
    padding: 1.5rem 1.25rem;
  }

  .cta-buybox-price-amount {
    font-size: 2.5rem;
  }
}

/* ============================================
   MOBILE OVERRIDE — Re-assert mobile rules that
   @media (max-height: 800px) overwrites on short
   phones (iPhone SE 375×667, Pixel 7 412×732, etc.)
   ============================================ */

@media (max-width: 768px) {
  .section-specs {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    background: transparent;
  }

  .section-specs .specs-header {
    margin: 0 0 1rem;
    max-width: none;
    padding: 1.5rem;
    background: rgba(11, 11, 11, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
  }

  .section-specs .section-side-note {
    position: static;
    float: none;
    display: flex;
    margin-top: 2rem;
    max-width: none;
    position: relative;
    z-index: 1;
  }

  .specs-layout {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0;
    pointer-events: auto;
    max-width: none;
    position: relative;
    z-index: 1;
  }

  .specs-canvas {
    display: none;
  }

  .specs-info {
    min-width: 0;
    padding: 1.5rem;
    background: rgba(11, 11, 11, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .specs-dim-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .specs-dim-num {
    font-size: clamp(2.75rem, 10vw, 4rem);
  }

  .specs-dim {
    border-left: none;
    padding-left: 0;
  }

  .specs-info::before {
    display: none;
  }

  .specs-dimensions {
    padding: 0;
  }

  .specs-list,
  .specs-info .specs-list {
    padding: 2rem 0 0;
  }

  .specs-row {
    padding: 1.25rem 0;
    font-size: inherit;
  }

  .specs-dim-label {
    margin-bottom: 2.5rem;
    font-size: 0.7rem;
  }

  .viewer-fullscreen {
    display: none;
  }

  .viewer-pill {
    display: none;
  }
}
