/* =========================================================
RJX LOCAÇÕES — v2 design tokens
Editorial direction: serif authority (Fraunces) + brand's own
Source Sans body. Palette refined to a sober oxblood instead
of a bright "retail" red, on a warm paper background.
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,500&family=Source+Sans+3:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root{
--ink: #17130f;
--ink-soft: #362f29;
--wine: #7a1220;
--wine-dark: #591019;
--wine-bright:#b81f2b;
--gold: #a9813f;
--paper: #faf7f2;
--paper-soft: #f1ebe1;
--line: #e4dccd;
--gray: #5c554e;
--gray-soft: #8a8377;
--dark: #17130f;
--dark-soft: #241e19;

--display: 'Fraunces', 'Source Sans 3', serif;
--body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;

--shard: 22px;
--radius: 3px;
--maxw: 1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
margin:0;
font-family:var(--body);
color:var(--ink-soft);
background:var(--paper);
line-height:1.6;
-webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ margin:0; font-family:var(--display); font-weight:600; line-height:1.08; color:var(--ink); }
p{ margin:0; }
.container{ max-width:var(--maxw); margin:0 auto; padding:0 28px; }

/* ---------- shard motif ---------- */
.shard-tl{ clip-path: polygon(var(--shard) 0, 100% 0, 100% 100%, 0 100%, 0 var(--shard)); }
.shard-br{ clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--shard)), calc(100% - var(--shard)) 100%, 0 100%); }
.shard-both{ clip-path: polygon(var(--shard) 0, 100% 0, 100% calc(100% - var(--shard)), calc(100% - var(--shard)) 100%, 0 100%, 0 var(--shard)); }

/* ---------- eyebrow ---------- */
.eyebrow{
font-family:var(--body); font-weight:700; font-size:12.5px;
letter-spacing:.16em; text-transform:uppercase; color:var(--wine);
display:inline-flex; align-items:center; gap:10px;
}
.eyebrow::before{ content:""; width:26px; height:1.5px; background:var(--wine); display:inline-block; }
.eyebrow.on-dark{ color:var(--gold); }
.eyebrow.on-dark::before{ background:var(--gold); }

/* ---------- buttons ---------- */
.btn{
display:inline-flex; align-items:center; justify-content:center; gap:10px;
padding:15px 30px; font-family:var(--body); font-weight:700; font-size:15px;
letter-spacing:.01em; border-radius:var(--radius); border:1.5px solid transparent;
cursor:pointer; transition:transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{ background:var(--wine); color:var(--paper); }
.btn-primary:hover{ background:var(--wine-dark); }
.btn-dark{ background:var(--ink); color:var(--paper); }
.btn-dark:hover{ background:#000; }
.btn-outline{ background:transparent; border-color:rgba(250,247,242,.5); color:var(--paper); }
.btn-outline:hover{ background:var(--paper); color:var(--ink); }
.btn-outline-dark{ background:transparent; border-color:var(--ink); color:var(--ink); }
.btn-outline-dark:hover{ background:var(--ink); color:var(--paper); }
.btn-ghost{ background:transparent; border-color:var(--line); color:var(--gray); padding:11px 16px; font-size:13.5px; }
.btn-ghost:hover{ border-color:var(--wine); color:var(--wine); background:transparent; transform:none; }
.btn-block{ width:100%; }

/* ---------- header ---------- */
.site-header{
position:sticky; top:0; z-index:100;
background:rgba(250,247,242,.92); backdrop-filter:blur(8px);
border-bottom:1px solid var(--line);
}
.site-header .container{ display:flex; align-items:center; justify-content:space-between; height:84px; }
.site-header .logo img{ height:36px; }
.nav-links{ display:flex; align-items:center; gap:22px; }
.nav-links a{ font-size:14.5px; font-weight:600; color:var(--ink-soft); position:relative; padding:6px 0; white-space:nowrap; }
.nav-links a:hover{ color:var(--wine); }
.nav-links a.active{ color:var(--wine); }
.nav-cta{ display:flex; align-items:center; gap:10px; }
.nav-toggle{ display:none; background:none; border:0; cursor:pointer; padding:8px; }
.nav-toggle span{ display:block; width:24px; height:2px; background:var(--ink); margin:5px 0; }

/* ---------- footer ---------- */
.site-footer{ background:var(--dark); color:#cfc7bc; padding:64px 0 28px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,.1); }
.footer-grid h4{ font-family:var(--body); font-weight:700; font-size:13px; letter-spacing:.1em; text-transform:uppercase; color:var(--paper); margin-bottom:16px; }
.footer-grid a, .footer-grid p{ font-size:14.5px; color:#b3aa9d; line-height:1.9; }
.footer-grid a:hover{ color:var(--gold); }
.footer-logo img{ height:32px; margin-bottom:14px; }
.footer-legal{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; padding-top:24px; font-size:13px; color:#7d766b; }

/* ---------- sections ---------- */
section{ padding:100px 0; }
.section-soft{ background:var(--paper-soft); }
.section-dark{ background:var(--dark); color:var(--paper); }
.section-head{ max-width:640px; margin-bottom:52px; }
.section-head h2{ font-size:40px; margin-top:16px; font-weight:600; }
.section-head p{ color:var(--gray); font-size:17px; margin-top:16px; }
.section-dark .section-head p{ color:#b3aa9d; }

/* ---------- hero ---------- */
.hero{ background:var(--dark); color:var(--paper); position:relative; overflow:hidden; padding:100px 0 0; }
.hero::after{
content:""; position:absolute; inset:0;
background:
radial-gradient(ellipse at 75% 20%, rgba(122,18,32,.35) 0%, transparent 55%),
repeating-linear-gradient(115deg, rgba(255,255,255,.03) 0 1px, transparent 1px 64px);
pointer-events:none;
}
.hero-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:50px; align-items:end; position:relative; z-index:1; }
.hero-copy{ padding-bottom:70px; }
.hero h1{ font-size:54px; line-height:1.08; margin-top:20px; font-weight:600; color:var(--paper); }
.hero h1 em{ font-style:italic; color:var(--gold); font-weight:500; }
.hero p.lead{ font-family:var(--body); font-size:18px; color:#cfc7bc; max-width:520px; margin-top:22px; }
.hero-ctas{ display:flex; gap:16px; margin-top:36px; flex-wrap:wrap; }
.hero-media{ position:relative; align-self:end; }
.hero-media img{ width:100%; border-radius:var(--radius); }
.hero-media .shard-both{ background:var(--ink-soft); }

/* ---------- stat strip ---------- */
.stat-strip{ background:var(--wine); }
.stat-strip .container{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:rgba(255,255,255,.15); }
.stat-strip .stat{ background:var(--wine); padding:34px 30px; text-align:left; }
.stat-strip .stat b{ font-family:var(--display); font-size:38px; color:var(--paper); font-weight:600; display:block; }
.stat-strip .stat span{ font-size:13px; color:#f0d9c8; text-transform:uppercase; letter-spacing:.08em; display:block; margin-top:6px; }

/* ---------- authority / trust grid ---------- */
.trust-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); border:1px solid var(--line); }
.trust-card{ background:var(--paper); padding:34px 28px; }
.trust-card .trust-icon{
width:40px; height:40px; border-radius:50%; border:1.5px solid var(--wine); color:var(--wine);
display:flex; align-items:center; justify-content:center; font-family:var(--display); font-size:16px; margin-bottom:20px;
}
.trust-card h3{ font-size:19px; margin-bottom:8px; font-weight:600; }
.trust-card p{ color:var(--gray); font-size:14.5px; }

/* ---------- equipment cards ---------- */
.eq-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }
.eq-card{ background:var(--paper); border:1px solid var(--line); display:flex; flex-direction:column; overflow:hidden; transition:box-shadow .2s ease, transform .2s ease; }
.eq-card:hover{ box-shadow:0 18px 40px rgba(23,19,15,.1); transform:translateY(-4px); }
.eq-card .eq-media{ aspect-ratio:16/11; background:var(--paper-soft); overflow:hidden; position:relative; display:flex; align-items:center; justify-content:center; padding:18px; }
.eq-card .eq-media img{ width:100%; height:100%; object-fit:contain; }
.eq-card .eq-body{ padding:28px; display:flex; flex-direction:column; gap:12px; flex:1; }
.eq-tag{ font-size:12px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--wine); }
.eq-card h3{ font-size:22px; font-weight:600; }
.eq-card p{ color:var(--gray); font-size:15px; flex:1; }
.eq-card .eq-link{ font-weight:700; font-size:14.5px; display:inline-flex; align-items:center; gap:8px; color:var(--ink); font-family:var(--body); }
.eq-card .eq-link:hover{ color:var(--wine); }

/* ---------- CTA band ---------- */
.cta-band{ background:var(--wine); color:var(--paper); padding:80px 0; }
.cta-band-inner{ display:grid; grid-template-columns:1.2fr .8fr; gap:40px; align-items:center; }
.cta-band h2{ font-size:34px; color:var(--paper); }
.cta-band ul{ margin-top:20px; display:flex; flex-wrap:wrap; gap:14px 30px; }
.cta-band li{ font-weight:700; font-size:15px; display:flex; align-items:center; gap:8px; font-family:var(--body); }
.cta-band li::before{ content:"✓"; }
.cta-band .btn-outline{ border-color:rgba(250,247,242,.6); }

/* ---------- Visão / Missão / Valores ---------- */
.vvm-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }
.vvm-card{ background:var(--paper); border:1px solid var(--line); padding:38px 34px; }
.vvm-card .vvm-icon{
width:42px; height:42px; border-radius:50%; background:var(--wine); color:var(--paper);
display:flex; align-items:center; justify-content:center; font-family:var(--display); font-size:16px; margin-bottom:22px;
}
.vvm-card h3{ font-size:21px; margin-bottom:12px; font-weight:600; }
.vvm-card p{ color:var(--gray); font-size:15px; }
.vvm-values{ display:flex; flex-wrap:wrap; gap:10px; margin-top:18px; }
.vvm-values span{ font-size:13px; font-weight:700; padding:7px 14px; border:1.5px solid var(--line); border-radius:100px; color:var(--ink-soft); font-family:var(--body); }

/* ---------- benefits list ---------- */
.check-list li{ position:relative; padding-left:30px; margin-bottom:14px; font-size:15.5px; color:var(--ink-soft); font-family:var(--body); }
.check-list li::before{
content:"✓"; position:absolute; left:0; top:0;
width:20px; height:20px; border-radius:50%; background:var(--wine); color:#fff;
font-size:12px; display:flex; align-items:center; justify-content:center;
}

/* ---------- page hero (inner pages) ---------- */
.page-hero{ background:var(--dark); color:var(--paper); padding:68px 0 56px; }
.breadcrumb{ font-size:13.5px; color:#b3aa9d; margin-bottom:16px; font-family:var(--body); }
.breadcrumb a:hover{ color:var(--gold); }
.page-hero h1{ font-size:42px; color:var(--paper); }
.page-hero p{ color:#cfc7bc; max-width:600px; margin-top:16px; font-size:16.5px; font-family:var(--body); }

/* ---------- forms ---------- */
.form-card{ background:var(--paper); border:1px solid var(--line); padding:44px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.field{ margin-bottom:20px; }
.field label{ display:block; font-size:13.5px; font-weight:700; margin-bottom:8px; color:var(--ink-soft); font-family:var(--body); }
.field input, .field select, .field textarea{
width:100%; padding:13px 15px; border:1.5px solid var(--line); border-radius:var(--radius);
font-family:var(--body); font-size:15px; background:var(--paper); color:var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--wine); }
.field textarea{ resize:vertical; min-height:110px; }

/* ---------- spec table ---------- */
.spec-table{ width:100%; border-collapse:collapse; }
.spec-table tr{ border-bottom:1px solid var(--line); }
.spec-table td{ padding:14px 0; font-size:15px; font-family:var(--body); }
.spec-table td:first-child{ color:var(--gray); width:44%; }
.spec-table td:last-child{ font-weight:700; }

/* ---------- equipment detail hero image ---------- */
.equip-hero-img{ width:100%; max-height:520px; object-fit:contain; background:var(--paper-soft); padding:28px; }

/* ---------- gallery ---------- */
.gallery{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.gallery img{ width:100%; aspect-ratio:1/1; object-fit:cover; }

.text-center{ text-align:center; margin-left:auto; margin-right:auto; }

/* ---------- notice box ---------- */
.notice-box{ display:flex; gap:16px; align-items:flex-start; background:var(--paper-soft); border-left:4px solid var(--wine); padding:22px 26px; margin-top:28px; }
.notice-box .notice-icon{ flex:none; width:30px; height:30px; border-radius:50%; background:var(--ink); color:var(--paper); display:flex; align-items:center; justify-content:center; font-family:var(--display); font-size:15px; }
.notice-box p{ font-size:14.5px; color:var(--ink-soft); line-height:1.6; font-family:var(--body); }
.notice-box strong{ color:var(--ink); }

/* ---------- FAQ accordion ---------- */
.faq-list{ border-top:1px solid var(--line); }
.faq-item{ border-bottom:1px solid var(--line); padding:20px 0; }
.faq-item summary{
cursor:pointer; font-weight:700; font-size:16px; color:var(--ink); font-family:var(--body);
list-style:none; display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
content:"+"; flex:none; font-family:var(--display); font-size:22px; color:var(--wine); line-height:1;
}
.faq-item[open] summary::after{ content:"–"; }
.faq-item p{ color:var(--gray); font-size:15px; margin-top:14px; line-height:1.6; }

/* ---------- availability quick-check widget ---------- */
.avail-live-badge{
display:inline-flex; align-items:center; gap:7px; font-size:12px; font-weight:700;
letter-spacing:.04em; text-transform:uppercase; color:var(--wine); margin-bottom:14px;
}
.avail-live-badge .avail-live-dot{
width:8px; height:8px; border-radius:50%; background:var(--wine);
box-shadow:0 0 0 rgba(122,18,32,.5); animation:avail-pulse 1.8s infinite;
}
@keyframes avail-pulse{
0%{ box-shadow:0 0 0 0 rgba(122,18,32,.45); }
70%{ box-shadow:0 0 0 8px rgba(122,18,32,0); }
100%{ box-shadow:0 0 0 0 rgba(122,18,32,0); }
}

/* card variant — used on the Equipamentos listing page (has equipment selector) */
.avail-quick-card{ background:var(--paper); border:1px solid var(--line); padding:36px; }
.avail-quick-card .field{ margin-bottom:20px; }
.avail-quick-title{ font-family:var(--display); font-size:22px; font-weight:600; margin:10px 0 20px; color:var(--ink); }

/* compact linear variant — used on individual equipment pages */
.avail-quick-inline{ background:var(--paper); border:1px solid var(--line); padding:22px 26px; }
.avail-quick-row{ display:flex; align-items:flex-end; gap:14px; flex-wrap:wrap; }
.avail-quick-row .field-inline{ flex:1; min-width:150px; margin-bottom:0; }
.avail-quick-row .field-inline label{ display:block; font-size:12.5px; font-weight:700; margin-bottom:6px; color:var(--ink-soft); font-family:var(--body); }
.avail-quick-row .field-inline input, .avail-quick-row .field-inline select{
width:100%; padding:11px 13px; border:1.5px solid var(--line); border-radius:var(--radius);
font-family:var(--body); font-size:14.5px; background:var(--paper); color:var(--ink);
}
.avail-quick-row .field-inline input:focus, .avail-quick-row .field-inline select:focus{ outline:none; border-color:var(--wine); }
.avail-quick-row .btn{ padding:12px 24px; white-space:nowrap; }

/* result message — shared by both variants */
.avail-result-msg{ margin-top:16px; padding:14px 14px 14px 18px; border-radius:var(--radius); font-size:15px; font-weight:600; display:none; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap; }
.avail-result-msg.is-ok, .avail-result-msg.is-bad{ display:flex; }
.avail-result-msg .avail-result-text{ display:flex; align-items:center; gap:10px; }
.avail-result-msg .avail-result-icon{ width:22px; height:22px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:700; flex:none; }
.avail-result-msg.is-ok{ background:#eaf3ea; color:#1e5c2e; }
.avail-result-msg.is-ok .avail-result-icon{ background:#3a8a4a; color:#fff; }
.avail-result-msg.is-bad{ background:#fbeceb; color:#9b3a35; }
.avail-result-msg.is-bad .avail-result-icon{ background:#c1443c; color:#fff; }
.avail-result-msg .avail-result-cta{ flex:none; padding:10px 18px; font-size:13.5px; white-space:nowrap; }
.avail-result-msg.is-ok .avail-result-cta{ background:#2f7a3d; color:#fff; }
.avail-result-msg.is-ok .avail-result-cta:hover{ background:#256330; }
.avail-result-msg.is-bad .avail-result-cta{ background:#9b3a35; color:#fff; }
.avail-result-msg.is-bad .avail-result-cta:hover{ background:#7f2e2a; }

.avail-disclaimer{
display:flex; gap:10px; align-items:flex-start; margin-top:16px; padding-top:14px;
border-top:1px solid var(--line); font-size:12.5px; color:var(--gray-soft); line-height:1.6;
}
.avail-disclaimer svg{ flex:none; width:15px; height:15px; margin-top:1px; }

/* ---------- AFE / ANVISA authorization badge ---------- */
.afe-strip{ background:var(--paper-soft); border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:18px 0; }
.afe-strip .container{ display:flex; align-items:center; justify-content:center; gap:16px; flex-wrap:wrap; text-align:left; }
.afe-seal{ flex:none; width:46px; height:46px; }
.afe-strip-text b{ font-size:14.5px; color:var(--ink); font-family:var(--body); font-weight:700; display:block; }
.afe-strip-text span{ font-size:13px; color:var(--gray); }
.afe-strip-divider{ width:1px; height:30px; background:var(--line); }
.afe-strip-number{ font-size:12.5px; color:var(--gray-soft); font-family:var(--body); }
.afe-strip-link{
font-size:13px; font-weight:700; color:var(--wine); font-family:var(--body);
white-space:nowrap; padding:8px 14px; border:1.5px solid var(--wine); border-radius:100px;
transition:background .2s ease, color .2s ease;
}
.afe-strip-link:hover{ background:var(--wine); color:var(--paper); }

.afe-badge-inline{ display:inline-flex; align-items:center; gap:10px; background:var(--paper); border:1px solid var(--line); border-radius:100px; padding:8px 16px 8px 8px; }
.afe-badge-inline .afe-seal{ width:32px; height:32px; }
.afe-badge-inline span{ font-size:13px; font-weight:700; color:var(--ink); font-family:var(--body); }
.afe-badge-inline.on-dark{ background:rgba(250,247,242,.08); border-color:rgba(250,247,242,.25); }
.afe-badge-inline.on-dark span{ color:var(--paper); }

/* ---------- how it works ---------- */
.how-it-works{ display:grid; grid-template-columns:repeat(4,1fr); gap:28px; position:relative; }
.how-step{ text-align:center; padding:0 12px; }
.how-step-num{
width:48px; height:48px; border-radius:50%; background:var(--wine); color:var(--paper);
display:flex; align-items:center; justify-content:center; font-family:var(--display); font-size:20px; font-weight:600;
margin:0 auto 18px;
}
.how-step h3{ font-size:19px; margin-bottom:8px; font-weight:600; }
.how-step p{ color:var(--gray); font-size:14.5px; }

/* ---------- availability teaser ---------- */
.avail-teaser{
background:var(--paper-soft); border:1px solid var(--line); border-radius:var(--radius);
padding:40px 44px; display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap;
}
.avail-teaser-text{ flex:1; min-width:280px; }

/* ---------- utility ---------- */
.grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.mt-8{ margin-top:8px;} .mt-16{ margin-top:16px;} .mt-24{ margin-top:24px;} .mt-32{ margin-top:32px;}

/* ---------- whatsapp float ---------- */
.wa-float{
position:fixed; right:24px; bottom:24px; z-index:200; width:58px; height:58px; border-radius:50%;
background:#25D366; display:flex; align-items:center; justify-content:center; box-shadow:0 10px 24px rgba(0,0,0,.25);
}
.wa-float svg{ width:28px; height:28px; fill:#fff; }

/* ---------- responsive ---------- */
@media (max-width: 900px){
.hero-grid{ grid-template-columns:1fr; }
.hero h1{ font-size:38px; }
.stat-strip .container{ grid-template-columns:1fr 1fr; }
.trust-grid{ grid-template-columns:1fr 1fr; }
.eq-grid{ grid-template-columns:1fr; }
.cta-band-inner{ grid-template-columns:1fr; }
.footer-grid{ grid-template-columns:1fr 1fr; }
.grid-2{ grid-template-columns:1fr; gap:32px; }
.vvm-grid{ grid-template-columns:1fr; }
.how-it-works{ grid-template-columns:1fr; gap:36px; }
.nav-links, .nav-cta .btn-outline-dark{ display:none; }
.nav-toggle{ display:block; }
section{ padding:64px 0; }
}
