/* ========================================
   LP Conjunto PI64 — Dark Luxury Catalog
   Bodoni Moda · Jost · DM Mono
   Black + Gold + Brushed Steel
   ======================================== */

:root {
    color-scheme: dark;
    --deep:          #060608;
    --bg-section:    #0A0A0D;
    --bg-card:       #0F0F14;
    --bg-card-alt:   #13131A;

    --gold:          #BF9B30;
    --gold-light:    #D4B244;
    --gold-dim:      rgba(191, 155, 48, 0.35);
    --gold-border:   rgba(191, 155, 48, 0.18);

    --steel:         #9AA4AF;
    --steel-light:   #BFC8D0;
    --steel-border:  rgba(154, 164, 175, 0.22);

    --ivory:         #F5EDD8;
    --text-muted:    rgba(245, 237, 216, 0.58);
    --text-soft:     rgba(245, 237, 216, 0.80);

    --font-display:  'Bodoni Moda', Georgia, serif;
    --font-body:     'Jost', system-ui, sans-serif;
    --font-mono:     'DM Mono', 'Courier New', monospace;

    --trans:         all 0.3s ease;
    --shadow-gold:   0 8px 32px rgba(191, 155, 48, 0.22);
    --shadow-steel:  0 8px 32px rgba(154, 164, 175, 0.10);
    --shadow-dark:   0 20px 60px rgba(0, 0, 0, 0.55);
}

/* ========================================
   Reset & Base
   ======================================== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--ivory);
    background: var(--deep);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body { max-width: 100%; }

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; transition: var(--trans); }
ul  { list-style: none; }

/* ========================================
   Container
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Shared: Eyebrow
   ======================================== */

.hero-eyebrow,
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-eyebrow.centered {
    display: flex;
    justify-content: center;
}

.eyebrow-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

/* ========================================
   Shared: Section Title
   ======================================== */

.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1px;
    color: var(--ivory);
    margin-bottom: 20px;
}

.section-title.centered {
    text-align: center;
}

/* Conjunto PI64: eyebrow direita */
.conjunto-content .section-eyebrow {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

/* Conjunto PI64: feature-list — ícone esquerda, texto direita */
.conjunto-content .feature-list li {
    flex-direction: row;
    align-items: flex-start;
}
.conjunto-content .feature-list li span {
    flex: 1;
    text-align: right;
}

/* Conjunto PI64: título e desc espelham hero no desktop */
.conjunto-content .section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 76px;
    line-height: 1.0;
    margin-bottom: 22px;
}

.conjunto-content .section-title em {
    font-weight: 600;
}

.conjunto-content .section-desc {
    line-height: 1.7;
    color: var(--text-soft);
}

.section-title em {
    font-style: italic;
    display: block;
    background: linear-gradient(105deg, var(--gold) 0%, var(--ivory) 55%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 32px;
}

/* ========================================
   Shared: Buttons
   ======================================== */

.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: linear-gradient(105deg, #c9a535 0%, #d4b244 45%, #BF9B30 100%);
    color: var(--deep);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: ctaGlow 2.8s ease-in-out infinite;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.55s ease;
    pointer-events: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 42px rgba(191, 155, 48, 0.55);
    animation-play-state: paused;
}

.btn-primary:hover::before { left: 130%; }

.btn-primary i { font-size: 16px; flex-shrink: 0; opacity: 0.9; }

.btn-nav {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    border: 1px solid var(--gold-border);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
    white-space: nowrap;
    touch-action: manipulation;
}

.btn-nav:hover {
    background: var(--gold);
    color: var(--deep);
    border-color: var(--gold);
}

/* Ripple */
.btn-primary { overflow: hidden; }
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    transform: scale(0);
    animation: ripple 0.65s linear;
    pointer-events: none;
}
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* ========================================
   Navbar
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    padding-top: max(20px, env(safe-area-inset-top, 20px));
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(6, 6, 8, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gold-border);
}

.logo img {
    height: 46px;
    width: auto;
    transition: height 0.4s ease;
}

.navbar.scrolled .logo img { height: 38px; }

/* ========================================
   Hero Section
   ======================================== */

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--deep);
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    z-index: 0;
}

img.hero-desk { display: block; }
img.hero-mob  { display: none; }

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(6, 6, 8, 0.97) 0%,
        rgba(6, 6, 8, 0.88) 40%,
        rgba(6, 6, 8, 0.40) 70%,
        transparent 90%
    );
}

.hero-section .container { position: relative; z-index: 2; width: 100%; }

.hero-content {
    max-width: 560px;
    padding-top: 140px;
    padding-bottom: 60px;
}

.hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 76px;
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -1px;
    color: var(--ivory);
    margin-bottom: 22px;
}

.hero-title em {
    font-style: italic;
    font-weight: 600;
    display: block;
    background: linear-gradient(105deg, var(--gold) 0%, var(--ivory) 55%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.stat-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 18px 12px;
    border-top: 2px solid var(--gold);
    background: rgba(6, 6, 8, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 2px;
}

.stat-badge.steel-badge {
    border-top-color: var(--steel);
}

.stat-info strong {
    display: block;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--ivory);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-info span {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(245, 237, 216, 0.60);
}

/* Hero CTA */
.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: fit-content;
    margin-bottom: 18px;
}

.hero-cta-note {
    margin-top: 11px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(245, 237, 216, 1);
    text-align: center;
    width: 100%;
    animation: ctaNotePulse 2.2s ease-in-out infinite 1.6s backwards;
}

/* Hero Veil — transição fumaça, mobile only */
.hero-veil { display: none; }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.45;
}

.mouse {
    width: 22px;
    height: 34px;
    border: 1.5px solid var(--ivory);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 3px;
    height: 6px;
    background: var(--ivory);
    border-radius: 2px;
    animation: scrollWheel 1.6s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%   { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

/* ========================================
   O Conjunto Section
   ======================================== */

.conjunto-section {
    background: var(--bg-section);
    padding: 110px 0;
    position: relative;
}

.conjunto-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

/* Background images — full-bleed like hero */
.conjunto-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.conjunto-bg-mob { display: none; }   /* shown only on mobile */

/* Overlay — dark on RIGHT, transparent on LEFT */
.conjunto-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        270deg,
        rgba(6,6,8,0.97) 0%,
        rgba(6,6,8,0.88) 42%,
        rgba(6,6,8,0.35) 68%,
        transparent 88%
    );
}

/* Grid: flex com texto ancorado à direita — espelha hero (texto à esquerda) */
.conjunto-grid {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left column — spec badge: oculto no desktop, visível só no mobile via responsive */
.conjunto-left {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 120px 0;
}

/* Glass spec badge */
.conjunto-spec-badge {
    display: inline-flex;
    flex-direction: column;
    background: rgba(6, 6, 8, 0.62);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--gold-border);
    border-top: 2px solid var(--gold);
    border-radius: 4px;
    padding: 32px 44px 36px;
    min-width: 240px;
}

.spec-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.spec-badge-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.spec-badge-rule {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--gold-border), transparent);
    margin-bottom: 20px;
}

.spec-badge-number {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 14px;
    overflow: hidden;
}

.spec-count {
    font-family: var(--font-mono);
    font-size: 88px;
    font-weight: 300;
    color: var(--ivory);
    line-height: 1;
    letter-spacing: -3px;
    display: block;
}

.spec-badge-unit {
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 300;
    color: var(--steel-light);
    line-height: 1;
    letter-spacing: 0;
}

.spec-badge-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Right column — mesma largura da hero, mesma distância da borda */
.conjunto-content {
    width: 560px;
    max-width: 100%;
    padding-top: 120px;
    padding-bottom: 120px;
    text-align: right;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature-list li i {
    color: var(--gold);
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 4px;
}

.feature-list li span {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-soft);
    line-height: 1.6;
}

/* Mobile spec strip (hidden on desktop) */
.spec-strip-mob { display: none; }

.conjunto-cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
}

.conjunto-cta-wrap .hero-cta-note {
    text-align: right;
}

.orcamento-cta-note {
    margin-top: 11px;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(245, 237, 216, 1);
    text-align: center;
    width: 100%;
    animation: ctaNotePulse 2.2s ease-in-out infinite;
}

/* ========================================
   Materiais Section
   ======================================== */

.materiais-section {
    background: var(--deep);
    padding: 110px 0;
    position: relative;
}

.materiais-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--steel-border), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.materiais-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 20px;
    align-items: start;
}

.materiais-cards-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.material-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.35s ease;
}

.material-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
}

.material-card.featured {
    border-color: var(--steel-border);
}

.material-card.featured:hover {
    border-color: var(--steel);
}

.material-card.gold-card {
    border-color: var(--gold-border);
}

.material-card.gold-card:hover {
    border-color: var(--gold-dim);
}

.material-img-wrap {
    overflow: hidden;
    max-height: 260px;
}

.material-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.material-card:hover .material-img {
    transform: scale(1.04);
}

.material-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    color: var(--steel);
    font-size: 26px;
    opacity: 0.85;
}

.gold-icon { color: var(--gold); }

.material-body { padding: 20px 24px 26px; }

.material-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--steel);
    border: 1px solid var(--steel-border);
    padding: 4px 10px;
    border-radius: 2px;
    margin-bottom: 14px;
}

.gold-tag {
    color: var(--gold);
    border-color: var(--gold-border);
}

.material-body h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--ivory);
    margin-bottom: 10px;
    line-height: 1.25;
}

.material-body p {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ========================================
   Medidas Section
   ======================================== */

.medidas-section {
    background: var(--bg-section);
    padding: 110px 0;
    position: relative;
}

.medidas-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.medidas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.medidas-img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.medidas-img {
    width: 100%;
    max-width: 480px;
    border-radius: 4px;
    filter: drop-shadow(0 0 1px rgba(154,164,175,0.15));
}

/* Specs Table */
.specs-table {
    display: flex;
    flex-direction: column;
    margin-bottom: 36px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.spec-row:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.spec-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.2px;
}

.spec-value {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    color: var(--steel-light);
    letter-spacing: 1px;
}

.btn-specs {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--gold-border);
    transition: gap 0.3s ease, border-color 0.3s ease;
}

.btn-specs:hover {
    gap: 16px;
    border-color: var(--gold);
    color: var(--gold-light);
}

/* ========================================
   Mosaico Section
   ======================================== */

/* Mosaico section banners */
.baner3-mob  { display: none; }
.baner3-desk {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* Grid replaced by banners on all viewports */
.mosaico-grid { display: none; }

.mosaico-section {
    background: var(--deep);
    padding: 0;
    position: relative;
}

.mosaico-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--steel-border), transparent);
}

.mosaico-header {
    text-align: center;
    padding: 80px 0 48px;
}

/* Grid layout */
.mosaico-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: 460px 360px;
    gap: 10px;
}

.bloco-mesa    { grid-column: 1 / 3; grid-row: 1; }
.bloco-aco     { grid-column: 3;     grid-row: 1 / 3; }
.bloco-medidas { grid-column: 1;     grid-row: 2; }
.bloco-specs   { grid-column: 2;     grid-row: 2; }

/* Each block base */
.mosaico-bloco {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: var(--bg-card);
}

/* Full-bleed image */
.bloco-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s ease;
}

.bloco-img-medidas {
    object-fit: contain;
    padding: 16px;
}

.bloco-medidas {
    background: var(--bg-card-alt);
}

.mosaico-bloco:hover .bloco-img { transform: scale(1.04); }

/* Overlay */
.bloco-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(6,6,8,0.93) 0%,
        rgba(6,6,8,0.50) 45%,
        rgba(6,6,8,0.06) 100%
    );
    z-index: 1;
}

.bloco-overlay-medidas {
    background: linear-gradient(
        to top,
        rgba(6,6,8,0.98) 0%,
        rgba(6,6,8,0.80) 55%,
        rgba(6,6,8,0.28) 100%
    );
}

/* Content layer (anchored to bottom by default) */
.bloco-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 32px;
    z-index: 2;
}

/* Tags */
.bloco-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--steel);
    border: 1px solid var(--steel-border);
    padding: 4px 10px;
    border-radius: 2px;
    margin-bottom: 12px;
}

.bloco-tag-steel {
    color: var(--steel-light);
    border-color: var(--steel);
    background: rgba(154, 164, 175, 0.08);
}

.bloco-tag-gold {
    color: var(--gold);
    border-color: var(--gold-border);
    background: rgba(191, 155, 48, 0.08);
}

.bloco-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--ivory);
    margin-bottom: 14px;
}

.bloco-features {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 18px;
}

.bloco-features li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bloco-features li i {
    color: var(--gold);
    font-size: 10px;
    flex-shrink: 0;
}

.bloco-features li span {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-soft);
}

.bloco-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-soft);
    line-height: 1.65;
    max-width: 320px;
}

/* Big measurement number */
.bloco-number {
    font-family: var(--font-mono);
    font-size: 52px;
    font-weight: 300;
    color: var(--ivory);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.bloco-number-label {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Specs block — dark card, no image */
.bloco-specs {
    background: var(--bg-card-alt);
    border: 1px solid var(--gold-border);
}

/* specs-content fills entire block and centers */
.specs-content {
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
}

.specs-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
    margin-bottom: 28px;
}

.spec-mini-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.spec-mini-item strong {
    font-family: var(--font-mono);
    font-size: 22px;
    font-weight: 500;
    color: var(--steel-light);
    line-height: 1;
}

.spec-mini-item span {
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.gold-spec strong { color: var(--gold); }

.btn-specs-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--gold-border);
    padding-bottom: 4px;
    width: fit-content;
    transition: gap 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn-specs-link:hover {
    gap: 14px;
    border-color: var(--gold);
    color: var(--gold-light);
}

/* ========================================
   Banner 4 Section
   ======================================== */

.banner4-section {
    background: var(--deep);
    line-height: 0;
}

.baner4-desk {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

.baner4-mob { display: none; }

/* ========================================
   Captura de Lead Section
   ======================================== */

.captura-section {
    background: var(--deep);
    padding: 110px 0;
    position: relative;
}

.captura-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.captura-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Copy side */
.captura-benefits {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}

.captura-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.captura-benefits li i {
    color: var(--gold);
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.captura-benefits li span {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-soft);
    line-height: 1.6;
}

.captura-wpp { margin-top: 8px; }

.wpp-label {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.btn-wpp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #25D366;
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
    border-radius: 3px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-wpp i { font-size: 18px; }

.btn-wpp:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
}

/* Form side */
.captura-form-wrap {
    position: relative;
}

.captura-form {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-top: 3px solid var(--gold);
    border-radius: 4px;
    padding: 40px;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-top: 3px solid var(--gold);
    border-radius: 4px;
    padding: 60px 40px;
    gap: 16px;
}

.form-success i {
    font-size: 48px;
    color: var(--gold);
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--ivory);
}

.form-success p {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
}

.form-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--ivory);
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-group input,
.form-group select {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 3px;
    padding: 14px 16px;
    color: var(--ivory);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    transition: border-color 0.3s ease, background 0.3s ease;
    outline: none;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--gold);
    background: rgba(191, 155, 48, 0.04);
}

.form-group input.error,
.form-group select.error {
    border-color: rgba(220, 80, 80, 0.6);
}

.form-group input::placeholder { color: rgba(245, 237, 216, 0.22); }

.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23BF9B30' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-color: rgba(255,255,255,0.04);
    padding-right: 44px;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--ivory);
}

.field-error {
    font-size: 11px;
    color: rgba(220, 100, 100, 0.85);
    display: none;
    padding-top: 2px;
}

.field-error.visible { display: block; }

.form-submit-wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-top: 8px;
}

.btn-form {
    width: 100%;
    justify-content: center;
    padding: 18px 24px;
    font-size: 14px;
}

.form-note {
    margin-top: 11px;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(245, 237, 216, 1);
    text-align: center;
    animation: ctaNotePulse 2.2s ease-in-out infinite;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: #000;
    padding: 40px 0 28px;
    padding-bottom: max(28px, calc(env(safe-area-inset-bottom, 0px) + 16px));
    border-top: 1px solid var(--gold-border);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.footer-logo {
    height: 48px;
    width: auto;
    margin: 0 auto 6px;
}

.footer-company {
    font-size: 12px;
    font-weight: 300;
    color: rgba(245, 237, 216, 0.32);
    line-height: 1.7;
}

/* ========================================
   Modal Oferta
   ======================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    padding-top: max(20px, env(safe-area-inset-top, 20px));
    padding-bottom: max(20px, env(safe-area-inset-bottom, 20px));
    background: rgba(6, 6, 8, 0.72);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
}

.modal-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    position: relative;
    width: 100%;
    max-width: 460px;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-top: 2px solid var(--gold);
    border-radius: 4px;
    padding: 48px 44px 44px;
    -webkit-transform: translateY(24px) scale(0.97);
    transform: translateY(24px) scale(0.97);
    transition: -webkit-transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-overlay.is-open .modal-box {
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--steel-light);
    font-size: 16px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: color 0.2s ease, background 0.2s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.modal-close:hover {
    color: var(--gold);
    background: rgba(191, 155, 48, 0.08);
}

.modal-eyebrow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.modal-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -0.5px;
    color: var(--ivory);
    margin-bottom: 12px;
    text-align: center;
}

.modal-title em {
    font-style: italic;
    font-weight: 600;
    display: block;
    background: linear-gradient(105deg, var(--gold) 0%, var(--ivory) 55%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 28px;
    text-align: center;
}

.modal-form .form-group { margin-bottom: 18px; }

.btn-modal-submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

.modal-note {
    margin-top: 12px;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(245, 237, 216, 0.35);
    text-align: center;
}

.modal-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 24px 0 8px;
}

.modal-success i { font-size: 44px; color: var(--gold); }

.modal-success h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--ivory);
}

.modal-success p {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   Back to Top
   ======================================== */

.back-to-top {
    position: fixed;
    bottom: max(28px, calc(env(safe-area-inset-bottom, 0px) + 16px));
    right: max(24px, env(safe-area-inset-right, 24px));
    z-index: 999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--deep);
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(191, 155, 48, 0.35);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover { transform: translateY(-3px); }
