/* ═══ ENVIAR CASO ═══ */
.case-intake-visual { min-height: 520px; display: flex; align-items: center; justify-content: center; }
.case-intake-panel { width: min(100%, 500px); border-radius: var(--radius-lg); padding: 1.25rem; background: var(--dark); color: #fff; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.case-intake-panel::before { content: ''; position: absolute; inset: 0; background: url('img/dark_bg.png') center/cover no-repeat; opacity: 0.34; pointer-events: none; }
.case-intake-panel > * { position: relative; z-index: 1; }
.intake-panel-header { padding: 0.9rem 0.9rem 1.1rem; border-bottom: 1px solid var(--border-dark); margin-bottom: 0.75rem; }
.intake-panel-header span { display: block; color: #d79868; font-size: 0.68rem; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; margin-bottom: 0.25rem; }
.intake-panel-header strong { display: block; font-size: 1.15rem; letter-spacing: -0.02em; }
.intake-row { display: grid; grid-template-columns: 42px 1fr; gap: 0.9rem; align-items: start; padding: 1rem; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); background: rgba(255,255,255,0.055); margin-bottom: 0.75rem; }
.intake-row i { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.08); color: #d79868; font-size: 1.15rem; }
.intake-row strong { display: block; color: #fff; font-size: 0.92rem; margin-bottom: 0.2rem; }
.intake-row span { display: block; color: var(--text-dark-muted); font-size: 0.76rem; line-height: 1.45; }
.intake-row.is-complete i { color: #fff; background: rgba(185,121,75,0.6); }
.intake-status-strip { display: flex; flex-wrap: wrap; gap: 0.65rem; padding: 0.7rem 0.85rem 0.2rem; color: var(--text-dark-muted); font-size: 0.74rem; font-weight: 700; }
.intake-status-strip span { display: inline-flex; align-items: center; gap: 0.35rem; }
.case-type-section .section-header { margin-bottom: 1.75rem; }
.form-section { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; margin-top: 2rem; }
.form-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 2.5rem; }
.form-box h4 { margin-bottom: 1.5rem; font-size: 1.1rem; border-bottom: 1px solid var(--border); padding-bottom: 1rem; color: var(--dark); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-main); }
.form-group label span { color: red; }
.form-group input, .form-group select, .form-group textarea { padding: 0.8rem 1rem; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 0.9rem; font-family: inherit; background: #fff; transition: border-color 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--copper); box-shadow: 0 0 0 3px var(--copper-light); }
.form-group textarea { resize: vertical; min-height: 100px; }
.checkbox-group { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.8rem; color: var(--text-light); }
.checkbox-group input { margin-top: 3px; }
.form-actions { display: flex; gap: 1rem; margin-top: 2rem; }
.form-actions .btn-primary { flex: 1; }

.support-box { background: var(--dark); color: #fff; border-radius: var(--radius-md); padding: 2.5rem; position: sticky; top: 100px; }
.support-box h4 { margin-bottom: 1.5rem; color: #fff; font-size: 1.2rem; }
.support-lead { font-size: 0.85rem; color: var(--text-dark-muted); margin-bottom: 2rem; }
.support-list { display: flex; flex-direction: column; gap: 1.5rem; }
.support-item { display: flex; gap: 1rem; align-items: center; border-bottom: 1px solid var(--border-dark); padding-bottom: 1.5rem; }
.support-item:last-child { border-bottom: none; padding-bottom: 0; }
.support-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; color: var(--copper); flex-shrink: 0; }
.support-text h5 { font-size: 0.9rem; margin-bottom: 0.2rem; }
.support-text p { font-size: 0.8rem; color: var(--text-dark-muted); margin: 0; }
.support-note { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border-dark); display: flex; gap: 1rem; align-items: flex-start; font-size: 0.8rem; color: var(--text-dark-muted); }
.support-note p { margin: 0; }

.upload-box { border: 2px dashed var(--border); border-radius: var(--radius-md); padding: 3rem; text-align: center; background: #fafafa; transition: var(--transition); cursor: pointer; }
.upload-box:hover { border-color: var(--copper); background: var(--copper-light); }
.upload-box svg { color: var(--copper); margin-bottom: 1rem; }
.upload-box h5 { margin-bottom: 0.5rem; }
.upload-box p { font-size: 0.8rem; color: var(--text-light); margin-bottom: 1.5rem; }

.case-types { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2rem; }
.type-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; transition: var(--transition); cursor: pointer; }
.type-card:hover { border-color: var(--copper); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.type-card svg { color: var(--copper); }
.type-card h5 { font-size: 1rem; margin-bottom: 0.3rem; }
.type-card p { font-size: 0.75rem; color: var(--text-light); }

.requirements-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; align-items: start; }
.checklist-section { background: var(--surface); }
.checklist-title { margin-bottom: 2rem; }
.req-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.req-item { display: flex; gap: 1rem; }
.req-item svg { color: var(--copper); flex-shrink: 0; margin-top: 2px; }
.req-item h5 { font-size: 0.9rem; margin-bottom: 0.25rem; }
.req-item p { font-size: 0.8rem; color: var(--text-light); margin: 0; }
.submission-assurance { margin-bottom: 4rem; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.assurance-item { display: grid; grid-template-columns: 56px 1fr; gap: 1rem; align-items: start; min-width: 0; }
.assurance-item .p-icon { flex-shrink: 0; margin: 0; }
.assurance-item h5 { margin-bottom: 0.3rem; }
.assurance-item p { margin: 0; font-size: 0.78rem; color: var(--text-light); line-height: 1.5; }

/* ═══ PAGE HEROS ═══ */
.page-hero { padding: 9rem 0 4rem; background: var(--bg); position: relative; overflow: hidden; }
.page-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 1.5rem; }

/* ═══ SOLUÇÕES ═══ */
.solutions-hub-hero { padding-bottom: 5rem; }
.solutions-hero-inner { grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.85fr); align-items: stretch; }
.solutions-hero-inner .hero-actions { margin-top: 2rem; }
.solution-proof-strip { display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem; margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid var(--border); color: var(--text-light); font-size: 0.78rem; font-weight: 600; }
.solution-proof-strip span { display: inline-flex; align-items: center; gap: 0.45rem; min-width: 0; }
.solution-proof-strip i { color: var(--copper); font-size: 1.05rem; }
.solutions-decision-board { align-self: stretch; min-height: 430px; border-radius: var(--radius-lg); padding: 1.1rem; background: linear-gradient(135deg, rgba(11,31,36,0.96), rgba(20,52,58,0.9)); color: #fff; box-shadow: 0 28px 70px rgba(11,31,36,0.18); display: flex; flex-direction: column; gap: 0.75rem; overflow: hidden; position: relative; }
.solutions-decision-board::before { content: ''; position: absolute; inset: 0; background: url('img/dark_bg.png') center/cover no-repeat; opacity: 0.28; pointer-events: none; }
.solutions-decision-board > * { position: relative; z-index: 1; }
.board-header { padding: 1rem 1rem 0.6rem; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 0.25rem; }
.board-header span { display: block; color: #d79868; font-size: 0.68rem; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; margin-bottom: 0.25rem; }
.board-header strong { display: block; font-size: 1.1rem; letter-spacing: -0.02em; }
.solutions-decision-board a { display: grid; grid-template-columns: 42px 1fr; gap: 0.85rem; align-items: start; padding: 1rem; border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius-md); background: rgba(255,255,255,0.055); transition: var(--transition); }
.solutions-decision-board a:hover { transform: translateY(-2px); background: rgba(255,255,255,0.09); border-color: rgba(215,152,104,0.32); }
.solutions-decision-board i { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.08); color: #d79868; display: inline-flex; align-items: center; justify-content: center; font-size: 1.15rem; }
.solutions-decision-board a > div { min-width: 0; }
.solutions-decision-board strong { display: block; color: #fff; font-size: 0.92rem; margin-bottom: 0.2rem; }
.solutions-decision-board span { display: block; color: var(--text-dark-muted); font-size: 0.76rem; line-height: 1.45; overflow-wrap: anywhere; }
.solution-hub-section { padding-top: 4rem; }
.solution-hub-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.3rem; }
.solution-hub-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; min-height: 360px; display: flex; flex-direction: column; transition: var(--transition); box-shadow: 0 1px 0 rgba(11,31,36,0.02); }
.solution-hub-card:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(11,31,36,0.09); border-color: rgba(185,121,75,0.28); }
.solution-hub-card img { width: 100%; height: 170px; object-fit: cover; background: #f4eee7; }
.solution-hub-card > div { padding: 1.35rem; display: flex; flex-direction: column; flex: 1; }
.solution-hub-card h3 { font-size: 1.25rem; letter-spacing: -0.025em; margin: 0.1rem 0 0.65rem; color: var(--text-main); }
.solution-hub-card p { color: var(--text-light); font-size: 0.82rem; line-height: 1.55; margin: 0 0 1.25rem; }
.solution-kicker { color: var(--copper); font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.4px; }
.solution-mini-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.45rem; margin: 0 0 1.25rem; }
.solution-mini-list li { min-width: 0; padding: 0.42rem 0.5rem; border-radius: var(--radius-sm); background: var(--bg); color: var(--text-light); font-size: 0.68rem; line-height: 1.25; font-weight: 600; overflow-wrap: anywhere; }
.solution-link { margin-top: auto; display: inline-flex; align-items: center; gap: 0.45rem; color: var(--dark); font-size: 0.8rem; font-weight: 700; }
.solution-link i { color: var(--copper); transition: var(--transition); }
.solution-hub-card:hover .solution-link i { transform: translateX(4px); }
.solution-hub-card.is-large { grid-column: span 2; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr); min-height: 360px; }
.solution-hub-card.is-large img { height: 100%; min-height: 360px; }
.solution-hub-card.is-action { grid-column: span 3; min-height: 220px; background: var(--dark); color: #fff; justify-content: flex-end; position: relative; overflow: hidden; }
.solution-hub-card.is-action::before { content: ''; position: absolute; inset: 0; background: url('img/dark_bg.png') center/cover no-repeat; opacity: 0.38; pointer-events: none; }
.solution-hub-card.is-action > div { position: relative; z-index: 1; justify-content: flex-end; min-height: 100%; }
.solution-hub-card.is-action h3, .solution-hub-card.is-action .solution-link { color: #fff; }
.solution-hub-card.is-action p { color: var(--text-dark-muted); }
.decision-guide-section { padding-top: 3rem; background: var(--bg); }
.decision-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.decision-card { background: transparent; border-top: 1px solid var(--border); padding: 1.35rem 0.4rem 0; }
.decision-card > i { color: var(--copper); font-size: 1.45rem; margin-bottom: 0.8rem; display: inline-block; }
.decision-card h3 { font-size: 1rem; margin-bottom: 0.55rem; color: var(--text-main); }
.decision-card p { color: var(--text-light); font-size: 0.78rem; line-height: 1.58; margin-bottom: 1rem; }
.decision-card a { color: var(--copper); font-size: 0.78rem; font-weight: 700; display: inline-flex; align-items: center; gap: 0.35rem; }
.material-map-section { padding-top: 0; }
.material-map { border-radius: var(--radius-lg); background: var(--dark); color: #fff; padding: 2rem; display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr); gap: 2rem; overflow: hidden; position: relative; box-shadow: var(--shadow-lg); }
.material-map::before { content: ''; position: absolute; inset: 0; background: url('img/dark_bg.png') center/cover no-repeat; opacity: 0.32; pointer-events: none; }
.material-map > * { position: relative; z-index: 1; }
.material-map .tag { color: #d79868; }
.material-map h2 { color: #fff; margin-bottom: 0.8rem; }
.material-map p { color: var(--text-dark-muted); font-size: 0.86rem; line-height: 1.6; max-width: 460px; }
.material-map-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.material-map-list a { border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.055); border-radius: var(--radius-md); padding: 1rem; transition: var(--transition); }
.material-map-list a:hover { transform: translateY(-2px); background: rgba(255,255,255,0.09); border-color: rgba(215,152,104,0.3); }
.material-map-list strong { display: block; color: #fff; margin-bottom: 0.35rem; font-size: 0.9rem; }
.material-map-list span { color: var(--text-dark-muted); font-size: 0.76rem; line-height: 1.45; }
.filter-bar { display: flex; gap: 1rem; margin-bottom: 3rem; overflow-x: auto; padding-bottom: 1rem; scrollbar-width: none; }
.filter-bar::-webkit-scrollbar { display: none; }
.filter-btn { padding: 0.8rem 1.5rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-pill); font-size: 0.85rem; font-weight: 600; color: var(--text-main); white-space: nowrap; cursor: pointer; transition: var(--transition); display: flex; align-items: center; gap: 0.5rem; }
.filter-btn svg { color: var(--copper); }
.filter-btn:hover, .filter-btn.active { background: var(--dark); border-color: var(--dark); color: #fff; }

.materials-bar { background: var(--dark); border-radius: var(--radius-lg); padding: 2rem; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; margin: 4rem 0; color: #fff; }
.mat-item { background: rgba(255,255,255,0.05); border-radius: var(--radius-md); padding: 1.5rem; border: 1px solid var(--border-dark); display: flex; flex-direction: column; justify-content: space-between; gap: 1rem; }
.mat-item h5 { font-size: 0.9rem; color: #fff; }
.mat-item p { font-size: 0.75rem; color: var(--text-dark-muted); }

.indications-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.ind-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.5rem; }
.ind-card h5 { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; font-size: 0.9rem; }
.ind-card h5 svg { color: var(--copper); }
.ind-card ul { display: flex; flex-direction: column; gap: 0.5rem; }
.ind-card ul li { font-size: 0.75rem; color: var(--text-light); position: relative; padding-left: 12px; }
.ind-card ul li::before { content: '•'; position: absolute; left: 0; color: var(--copper); }
.ind-card .saiba-mais { display: inline-block; margin-top: 1rem; font-size: 0.75rem; font-weight: 600; color: var(--copper); }

/* ═══ PPR & REMOVÍVEIS ═══ */
.ppr-hero-features { display: flex; gap: 2rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.ph-feat { display: flex; align-items: center; gap: 0.8rem; }
.ph-feat svg { width: 24px; height: 24px; color: var(--copper); }
.ph-feat span { display: block; font-size: 0.8rem; font-weight: 700; line-height: 1.25; }
.ph-feat small { display: block; margin-top: 0.12rem; color: var(--text-light); font-size: 0.7rem; font-weight: 400; line-height: 1.35; }
.ppr-hero-visual { height: 520px; }
.ppr-feature-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.ppr-solutions-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.features-bar, .solutions-grid, .fb-item, .sol-card { min-width: 0; max-width: 100%; }
.fb-item > div, .sol-info, .ph-feat span { min-width: 0; }
.fb-item h5, .fb-item p, .sol-info h4, .sol-info p, .source-line { overflow-wrap: anywhere; }
.ppr-real-hero { height: 100%; border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); box-shadow: var(--shadow-lg); position: relative; mask-image: none !important; -webkit-mask-image: none !important; }
.ppr-real-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: none !important; filter: none !important; }
.image-credit { margin: 0; font-size: 0.66rem; line-height: 1.45; color: var(--text-light); }
.ppr-glass-card { width: min(260px, 48%); max-width: 260px; display: flex; align-items: flex-start; gap: 0.8rem; padding: 0.9rem; animation-duration: 6s; }
.ppr-glass-top { top: 12%; right: -0.7rem; }
.ppr-glass-mid { top: 42%; right: 1.2rem; animation-delay: 0.8s; }
.ppr-glass-bottom { bottom: 9%; right: -0.35rem; animation-delay: 1.4s; }
.ppr-glass-icon { width: 34px; height: 34px; border-radius: 50%; flex: 0 0 34px; display: inline-flex; align-items: center; justify-content: center; color: var(--copper); background: rgba(185,121,75,0.12); border: 1px solid rgba(185,121,75,0.16); box-shadow: inset 0 1px 0 rgba(255,255,255,0.45); }
.ppr-glass-icon svg { width: 18px; height: 18px; }
.ppr-glass-card h5 { font-size: 0.78rem; margin-bottom: 0.25rem; color: #243134; }
.ppr-glass-card p { font-size: 0.68rem; color: rgba(23,23,23,0.76); line-height: 1.35; margin: 0; }

.hotspot-wrapper { position: relative; max-width: 800px; margin: 0 auto; }
.hotspot-wrapper img { width: 100%; border-radius: var(--radius-lg); }
.hotspot { position: absolute; width: 28px; height: 28px; background: var(--dark); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; cursor: pointer; box-shadow: 0 0 0 4px rgba(11,31,36,0.3); transition: var(--transition); }
.hotspot:hover { transform: scale(1.1); background: var(--copper); box-shadow: 0 0 0 4px rgba(185,121,75,0.3); }
.hs-1 { top: 45%; left: 45%; } .hs-2 { top: 20%; right: 25%; } .hs-3 { bottom: 30%; right: 15%; } .hs-4 { bottom: 10%; left: 35%; } .hs-5 { top: 60%; left: 15%; }

.ppr-kennedy-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.kennedy-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.25rem; min-height: 240px; display: flex; flex-direction: column; gap: 0.9rem; }
.kennedy-card h5 { color: var(--dark); }
.kennedy-card p { font-size: 0.78rem; color: var(--text-light); line-height: 1.5; margin: 0; }
.ppr-reference-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.95fr); gap: 1.5rem; align-items: stretch; }
.ppr-reference-media { margin: 0; padding: 1rem; border: 1px solid var(--border); border-radius: var(--radius-md); background: #fff; display: flex; flex-direction: column; justify-content: center; gap: 0.75rem; overflow: hidden; box-shadow: var(--shadow-sm); }
.ppr-reference-media img { width: 100%; height: auto; display: block; object-fit: contain; }
.ppr-reference-media .image-credit { color: var(--text-light); }
.ppr-kennedy-grid.text-only { grid-template-columns: 1fr 1fr; }
.ppr-kennedy-grid.text-only .kennedy-card { min-height: auto; background: var(--bg); }
.kennedy-arch { height: 90px; border: 2px solid var(--border); border-bottom-width: 8px; border-radius: 48px 48px 30px 30px; position: relative; background: linear-gradient(180deg,#fff,#f4eee7); overflow: hidden; }
.kennedy-arch::before { content: ''; position: absolute; inset: 18px 20px 12px; border-radius: 34px 34px 18px 18px; border: 1px dashed rgba(11,31,36,0.2); }
.kennedy-arch span { position: absolute; bottom: 10px; width: 18%; height: 38px; background: #fff; border: 1px solid var(--border); border-radius: 10px 10px 6px 6px; box-shadow: 0 4px 10px rgba(0,0,0,0.04); }
.kennedy-arch span:nth-child(1) { left: 20%; }
.kennedy-arch span:nth-child(2) { left: 42%; }
.kennedy-arch span:nth-child(3) { right: 20%; }
.kennedy-arch .gap { background: repeating-linear-gradient(45deg,rgba(185,121,75,0.12),rgba(185,121,75,0.12) 6px,rgba(185,121,75,0.22) 6px,rgba(185,121,75,0.22) 12px); border-color: rgba(185,121,75,0.34); }
.kennedy-arch .center { left: 41%; right: auto; width: 20%; }
.kennedy-arch.anterior .gap { top: 8px; bottom: auto; left: 40%; height: 30px; }

.ppr-framework-diagram { flex: 1; min-height: 420px; max-width: 520px; border-radius: var(--radius-lg); background: radial-gradient(circle at 50% 40%,#fff 0,#f8f3ec 42%,#ede4d8 100%); border: 1px solid var(--border); position: relative; overflow: hidden; box-shadow: var(--shadow-sm); }
.fw-palate { position: absolute; left: 18%; right: 18%; top: 16%; height: 54%; border-radius: 50% 50% 42% 42%; background: linear-gradient(180deg,#efd8ce,#f7ebe3); border: 1px solid rgba(185,121,75,0.18); }
.fw-major { position: absolute; left: 22%; right: 22%; top: 43%; height: 52px; border-radius: 50px; border: 11px solid var(--dark); border-top-color: transparent; background: transparent; transform: rotate(0deg); }
.fw-saddle { position: absolute; width: 78px; height: 120px; bottom: 16%; border-radius: 20px 20px 14px 14px; background: linear-gradient(180deg,#d49a76,#b9794b); opacity: 0.95; box-shadow: inset 0 0 0 4px rgba(255,255,255,0.16); }
.fw-saddle.left { left: 16%; transform: rotate(-10deg); }
.fw-saddle.right { right: 16%; transform: rotate(10deg); }
.fw-rest { position: absolute; width: 58px; height: 18px; background: #d8dde0; border: 3px solid #a7b0b5; border-radius: 20px; box-shadow: 0 4px 12px rgba(11,31,36,0.12); }
.fw-rest.r1 { left: 31%; top: 36%; transform: rotate(-15deg); }
.fw-rest.r2 { right: 31%; top: 36%; transform: rotate(15deg); }
.fw-clasp { position: absolute; width: 72px; height: 72px; border: 8px solid #a7b0b5; border-left-color: transparent; border-bottom-color: transparent; border-radius: 50%; }
.fw-clasp.c1 { left: 23%; top: 29%; transform: rotate(-45deg); }
.fw-clasp.c2 { right: 23%; top: 29%; transform: rotate(135deg); }
.fw-label { position: absolute; background: var(--dark); color: #fff; border-radius: var(--radius-pill); padding: 0.35rem 0.65rem; font-size: 0.68rem; font-weight: 700; box-shadow: var(--shadow-sm); white-space: nowrap; }
.fw-label::before { content: ''; position: absolute; width: 28px; height: 1px; background: var(--dark); top: 50%; }
.l-major { left: 50%; bottom: 18%; transform: translateX(-50%); }
.l-rest { left: 10%; top: 35%; }
.l-clasp { right: 8%; top: 31%; }
.l-saddle { left: 8%; bottom: 13%; }
.l-rest::before { right: -28px; }
.l-clasp::before { left: -28px; }
.l-saddle::before { right: -28px; }
.ppr-components-section { background: var(--surface); }
.ppr-components-layout { display: grid; grid-template-columns: minmax(220px, 0.75fr) minmax(360px, 1.35fr) minmax(260px, 0.8fr); gap: 2rem; align-items: center; }
.ppr-component-intro { max-width: 330px; }
.ppr-component-intro h2 { margin-bottom: 0.85rem; }
.ppr-component-intro p { color: var(--text-light); font-size: 0.86rem; line-height: 1.65; margin-bottom: 1.25rem; }
.ppr-component-photo { width: 100%; margin: 0; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.ppr-component-photo img { width: 100%; height: 420px; object-fit: cover; object-position: center; display: block; }
.ppr-component-photo .image-credit { padding: 0.65rem 0.85rem; background: var(--surface); }
.ppr-component-list { display: grid; gap: 1.1rem; }
.component-point { display: grid; grid-template-columns: 28px 1fr; gap: 0.85rem; align-items: start; min-width: 0; }
.component-point > span { width: 28px; height: 28px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--dark); color: #fff; font-size: 0.72rem; font-weight: 800; }
.component-point h5 { font-size: 0.9rem; margin-bottom: 0.25rem; color: var(--text-main); }
.component-point p { margin: 0; color: var(--text-light); font-size: 0.75rem; line-height: 1.5; }

.ppr-maintenance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.maintenance-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.5rem; }
.maintenance-card svg { width: 28px; height: 28px; color: var(--copper); margin-bottom: 1rem; }
.maintenance-card h5 { margin-bottom: 0.5rem; }
.maintenance-card p { color: var(--text-light); font-size: 0.82rem; margin: 0; }

.quality-grid { display: grid; grid-template-columns: repeat(4, 1fr) 1.2fr; gap: 1.5rem; }
.q-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.q-img { height: 132px; overflow: hidden; background: #f4eee7; display: flex; align-items: center; justify-content: center; }
.q-img img { width: 100%; height: 100%; object-fit: contain; padding: 0.45rem; transform: none !important; }
.q-card img,.type-card img,.mat-item img,.hotspot-wrapper img,.float-card img{user-select:none;-webkit-user-select:none;-webkit-user-drag:none}
.q-card h5 { padding: 1rem 1rem 0.5rem; font-size: 0.9rem; }
.q-card p { padding: 0 1rem 1rem; font-size: 0.75rem; color: var(--text-light); }
.source-line { margin-top: 0.8rem; }
.q-dark { background: var(--dark); color: #fff; border: none; padding: 1.5rem; display: flex; flex-direction: column; justify-content: center; }
.q-dark h5 { padding: 0; margin-bottom: 1rem; color: #fff; }
.q-dark ul li { font-size: 0.8rem; color: var(--text-dark-muted); margin-bottom: 0.5rem; display: flex; gap: 0.5rem; align-items: center; }
.q-dark ul li svg { color: var(--copper); }
.ppr-observe-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.observe-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; min-width: 0; }
.observe-card img { width: 100%; height: 150px; object-fit: cover; display: block; background: #f4eee7; }
.observe-card:first-child img { object-fit: contain; background: #fff; padding: 0.5rem; }
.observe-card div { padding: 1rem; }
.observe-card h5 { margin-bottom: 0.45rem; font-size: 0.9rem; }
.observe-card p { margin: 0; color: var(--text-light); font-size: 0.76rem; line-height: 1.55; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; }
.faq-intro h2 { margin-bottom: 1rem; }
.accordion { display: flex; flex-direction: column; gap: 1rem; }
.acc-item { border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); overflow: hidden; }
.acc-header { padding: 1.2rem 1.5rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; font-size: 0.95rem; transition: var(--transition); }
.acc-header:hover { color: var(--copper); }
.acc-header svg { transition: transform 0.3s; }
.acc-header.active svg { transform: rotate(180deg); color: var(--copper); }
.acc-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
.acc-content p { padding: 0 1.5rem 1.5rem; font-size: 0.85rem; color: var(--text-light); }

/* ═══ TECNOLOGIAS ═══ */
.tech-flow { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.tech-flow-media { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.15rem; }
.tech-box { background: var(--dark); border-radius: var(--radius-md); padding: 1.5rem 1rem; text-align: center; color: #fff; border: 1px solid var(--border-dark); overflow: hidden; }
.tech-flow-media .tech-box { min-width: 0; padding: 0; text-align: left; background: #fff; color: var(--text-main); border-color: var(--border); box-shadow: 0 18px 42px rgba(11,31,36,0.06); }
.tech-box-media { height: 150px; overflow: hidden; background: #f4eee7; border-bottom: 1px solid var(--border); }
.tech-box-media img { width: 100%; height: 100%; object-fit: cover; display: block; transform: none !important; }
.tech-img-fresagem { object-position: 50% 60%; }
.tech-box-copy { padding: 1rem; }
.tech-box svg { width: 32px; height: 32px; color: var(--copper); margin-bottom: 1rem; }
.tech-box i { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; margin-bottom: 0.8rem; border-radius: 9px; background: rgba(185,121,75,0.1); color: var(--copper); font-size: 1.1rem; }
.tech-box h5 { font-size: 0.85rem; margin-bottom: 0.5rem; }
.tech-box p { font-size: 0.7rem; color: var(--text-dark-muted); }
.tech-flow-media .tech-box p { color: var(--text-light); line-height: 1.45; }
.tech-box-quality { grid-column: auto; }
.tech-app-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.tech-app-img--modelos { object-position: 50% 66%; }
.tech-app-img--guias { object-position: 50% 48%; }
.tech-app-img--provisorios { object-position: 50% 54%; }
.tech-app-img--mockups { object-position: 50% 58%; }
.tech-app-img--estruturas { object-position: 50% 38%; }

.tech-compare { background: var(--dark); border-radius: var(--radius-lg); padding: 0; display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; color: #fff; overflow: hidden; margin: 3rem 0; }
.tc-col { padding: 3rem; position: relative; z-index: 1; }
.tc-col h3 { margin-bottom: 1.5rem; color: #fff; }
.tc-col ul { display: flex; flex-direction: column; gap: 1rem; }
.tc-col ul li { display: flex; gap: 0.8rem; font-size: 0.9rem; color: var(--text-dark-muted); }
.tc-col ul li svg { color: var(--copper); flex-shrink: 0; margin-top: 2px; }
.tc-mid { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0 2rem; position: relative; }
.tc-mid::before, .tc-mid::after { content: ''; position: absolute; left: 50%; width: 1px; height: 40%; background: var(--border-dark); }
.tc-mid::before { top: 0; } .tc-mid::after { bottom: 0; }
.tc-circle { width: 100px; height: 100px; border-radius: 50%; border: 1px solid var(--border-dark); display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--dark); position: relative; z-index: 2; font-size: 0.7rem; text-align: center; line-height: 1.2; font-weight: 600; }
.tc-circle svg { margin-bottom: 4px; color: var(--copper); width: 20px; height: 20px; }

.formats-bar { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 2rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; }
.formats-list { display: flex; gap: 2rem; flex: 1; }
.fmt-item { display: flex; gap: 0.8rem; align-items: center; }
.fmt-item svg { width: 28px; height: 28px; color: var(--text-light); }
.fmt-item h5 { font-size: 0.9rem; margin-bottom: 2px; }
.fmt-item p { font-size: 0.7rem; color: var(--text-light); }
.formats-cta { background: var(--bg); padding: 1.5rem; border-radius: var(--radius-sm); border: 1px solid var(--border); width: 280px; }

@media(max-width:1024px) {
    .page-hero .hero-visual { order: 0; }
    .form-section, .requirements-grid, .faq-grid { grid-template-columns: 1fr; }
    .solutions-hero-inner, .material-map { grid-template-columns: 1fr; }
    .solutions-decision-board { min-height: auto; }
    .solution-hub-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .solution-hub-card.is-large { grid-column: span 2; grid-template-columns: 1fr; }
    .solution-hub-card.is-action { grid-column: span 2; }
    .solution-hub-card.is-large img { height: 240px; min-height: 0; }
    .decision-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .support-box { position: static; }
    .case-types { grid-template-columns: 1fr 1fr; }
    .materials-bar { grid-template-columns: repeat(3, 1fr); }
    .indications-grid { grid-template-columns: repeat(3, 1fr); }
    .ppr-reference-layout { grid-template-columns: 1fr; }
    .ppr-components-layout { grid-template-columns: 1fr; }
    .ppr-component-intro { max-width: 620px; }
    .ppr-component-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ppr-kennedy-grid, .ppr-maintenance-grid, .ppr-observe-grid { grid-template-columns: repeat(2, 1fr); }
    .solutions-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .quality-grid { grid-template-columns: repeat(2, 1fr); }
    .tech-flow { grid-template-columns: repeat(3, 1fr); }
    .tech-box-quality { grid-column: auto; }
    .tech-compare { grid-template-columns: 1fr; text-align: center; }
    .tc-col ul li { justify-content: center; }
    .tc-mid { display: none; }
    .formats-bar { flex-direction: column; align-items: flex-start; }
    .formats-list { flex-wrap: wrap; }
    .ppr-glass-card { display: none; }
}
@media(max-width:768px) {
    .solutions-hub-hero, .solution-hub-section, .decision-guide-section, .material-map-section, .ppr-components-section, .case-type-section, .checklist-section { overflow-x: hidden; }
    .page-hero-inner { grid-template-columns: 1fr; }
    .page-hero-inner > * { min-width: 0; }
    .page-hero h1 { max-width: 12ch; }
    .solutions-hub-hero .page-hero-inner, .solutions-hero-inner { gap: 2rem; }
    .solutions-hub-hero .container, .solution-hub-section .container, .decision-guide-section .container, .material-map-section .container { max-width: 100%; }
    .solutions-hub-hero h1, .solution-hub-section h2, .decision-guide-section h2, .material-map h2 { max-width: 100%; overflow-wrap: anywhere; }
    .solutions-hub-hero h1 { font-size: clamp(1.75rem, 7.2vw, 2.05rem); max-width: 10.5ch; text-wrap: balance; }
    .solutions-hub-hero p, .solution-hub-section p, .decision-guide-section p, .material-map p { max-width: 100%; overflow-wrap: anywhere; }
    .solutions-hub-hero .btn { max-width: 100%; white-space: normal; }
    .solution-proof-strip { flex-direction: column; gap: 0.75rem; }
    .solutions-decision-board { width: calc(100vw - 6rem); max-width: 100%; padding: 0.85rem; border-radius: var(--radius-md); margin-inline: auto; }
    .solutions-decision-board.reveal-right { transform: translateY(30px); }
    .solutions-decision-board.reveal-right.active { transform: translateY(0); }
    .solutions-decision-board a { grid-template-columns: 36px 1fr; padding: 0.85rem; }
    .solutions-decision-board i { width: 36px; height: 36px; }
    .solution-hub-section .section-header, .decision-guide-section .section-header { width: calc(100vw - 6rem); max-width: 100%; margin-inline: auto; }
    .solution-hub-grid, .decision-grid, .material-map-list { width: calc(100vw - 6rem); max-width: 100%; grid-template-columns: minmax(0, 1fr); justify-items: stretch; margin-inline: auto; }
    .solution-hub-card, .solution-hub-card.is-large, .solution-hub-card.is-action, .decision-card, .material-map { width: 100%; max-width: 100%; grid-column: auto; min-height: auto; }
    .solution-hub-card img, .solution-hub-card.is-large img { height: 190px; }
    .solution-mini-list { grid-template-columns: 1fr; }
    .material-map { padding: 1.4rem; border-radius: var(--radius-md); }
    .material-map h2 { font-size: clamp(1.55rem, 7vw, 1.9rem); max-width: 13ch; }
    .page-hero p { max-width: 32ch; }
    .page-hero .hero-actions { flex-direction: column; align-items: flex-start; }
    .page-hero .hero-actions .btn { white-space: normal; }
    .case-intake-visual { min-height: auto; width: 100%; max-width: 100%; margin-inline: auto; }
    .case-intake-visual, .case-type-section .section-header, .checklist-section .requirements-grid, .case-types, .form-section, .submission-assurance { max-width: 320px; }
    .case-intake-visual.reveal-right { transform: translateY(30px); }
    .case-intake-visual.reveal-right.active { transform: translateY(0); }
    .case-intake-panel { width: 100%; padding: 0.85rem; border-radius: var(--radius-md); }
    .intake-row { grid-template-columns: 36px minmax(0, 1fr); padding: 0.85rem; }
    .intake-row i { width: 36px; height: 36px; }
    .intake-status-strip { flex-direction: column; align-items: flex-start; }
    .case-type-section .section-header, .checklist-section .requirements-grid, .case-types, .form-section, .submission-assurance { width: 100%; max-width: 100%; margin-inline: auto; }
    .case-type-section .section-header h2 { max-width: 12ch; text-wrap: balance; }
    .case-type-section .section-header p, .checklist-title { max-width: 30ch; overflow-wrap: anywhere; }
    .intake-row strong, .intake-row span { overflow-wrap: anywhere; }
    .case-type-section .case-types { grid-template-columns: 1fr; }
    .type-card, .form-box, .support-box, .upload-box, .req-item, .assurance-item { min-width: 0; max-width: 100%; overflow: hidden; }
    .type-card h5, .type-card p, .req-item h5, .req-item p, .assurance-item h5, .assurance-item p, .support-text p { overflow-wrap: anywhere; }
    .requirements-grid { gap: 2rem; }
    .form-actions { flex-direction: column; }
    .form-actions .btn { width: 100%; }
    .submission-assurance { grid-template-columns: 1fr; }
    .ppr-hero-features { flex-direction: column; gap: 1rem; }
    .ppr-hero-visual { height: 420px; }
    .ppr-hero-visual, .ppr-real-hero { width: calc(100vw - 5rem); max-width: 100%; margin-inline: auto; }
    .form-grid { grid-template-columns: 1fr; }
    .req-list { grid-template-columns: 1fr; }
    .features-bar, .materials-bar, .indications-grid, .solutions-grid, .quality-grid { grid-template-columns: 1fr !important; }
    .ppr-kennedy-grid, .ppr-maintenance-grid, .ppr-observe-grid, .ppr-kennedy-grid.text-only { grid-template-columns: 1fr; }
    .ppr-framework-diagram { min-height: 340px; width: 100%; }
    .ppr-component-photo { max-width: none; width: 100%; }
    .ppr-component-photo img { height: 300px; }
    .ppr-component-list { grid-template-columns: 1fr; }
    .ppr-feature-strip, .ppr-solutions-grid, .ppr-reference-layout, .ppr-components-layout, .quality-grid, .ppr-maintenance-grid, .ppr-observe-grid, .faq-grid { width: calc(100vw - 5rem); max-width: 100%; margin-inline: auto; overflow: hidden; }
    .ppr-feature-strip .fb-item { grid-template-columns: 28px minmax(0, 1fr); }
    .ppr-feature-strip .fb-item p, .ppr-feature-strip .fb-item h5 { max-width: 100%; overflow-wrap: anywhere; }
    .ppr-solutions-grid .sol-card, .ppr-reference-media, .kennedy-card, .ppr-component-photo, .component-point, .q-card, .maintenance-card, .observe-card { max-width: 100%; min-width: 0; overflow: hidden; }
    .ppr-solutions-grid .sol-info p, .ppr-solutions-grid .sol-info h4, .component-point p, .component-point h5, .kennedy-card p, .observe-card p { max-width: 100%; overflow-wrap: anywhere; }
    .fw-label { font-size: 0.62rem; }
    .tech-flow { grid-template-columns: repeat(2, 1fr); }
    .tech-box-quality { grid-column: auto; }
}
@media(max-width:600px) {
    .tech-flow-media { grid-template-columns: 1fr !important; }
    .tech-flow-media .tech-box, .tech-box-quality { grid-column: span 1; }
}
@media(max-width:480px) {
    .case-types { grid-template-columns: 1fr; }
    .materials-bar, .indications-grid, .quality-grid, .tech-flow, .ppr-observe-grid, .solutions-grid { grid-template-columns: 1fr !important; }
    .tech-box-quality { grid-column: auto; }
    .ppr-reference-media { padding: 0.65rem; }
    .ppr-hero-visual { height: 360px; }
    .ppr-hero-visual, .ppr-real-hero, .ppr-feature-strip, .ppr-solutions-grid, .ppr-reference-layout, .ppr-components-layout, .quality-grid, .ppr-maintenance-grid, .ppr-observe-grid, .faq-grid { width: calc(100vw - 4.5rem); }
    .case-intake-visual, .case-type-section .section-header, .checklist-section .requirements-grid, .case-types, .form-section, .submission-assurance { width: 100%; }
}
