
/* ============================================================
   HEADER RCA SHOP — padrão visual do layout antigo, em PHP puro
   ============================================================ */
:root{
  --rca-navy:#002855;
  --rca-navy-2:#0b2d55;
  --rca-yellow:#fff200;
}
.rs-site-header{background:var(--rca-navy);position:sticky;top:0;z-index:500;box-shadow:0 2px 10px rgba(7,26,51,.18)}
.rs-header-top{background:var(--rca-navy)}
.rs-header-top-in{height:69px;display:grid;grid-template-columns:310px minmax(280px,370px) minmax(210px,1fr) auto;align-items:center;gap:22px}
.rs-brand{display:inline-flex;flex-direction:column;align-items:center;justify-content:center;line-height:1;color:#fff;min-width:220px}
.rs-brand-line{display:block;font-weight:900;letter-spacing:-.06em;font-size:31px;line-height:.86;white-space:nowrap}
.rs-brand-rca{color:#fff;text-transform:uppercase}
.rs-brand-shop{color:var(--rca-yellow);font-size:58px;font-weight:400;letter-spacing:-.08em;text-transform:lowercase;margin-left:2px}
.rs-brand-slogan{display:block;margin-top:-2px;color:#fff;font-size:14px;font-weight:900;letter-spacing:-.04em;text-transform:uppercase;white-space:nowrap}
.rs-brand:hover{color:#fff}
.rs-top-search{height:40px;background:#fff;border-radius:4px;display:flex;align-items:center;overflow:hidden;box-shadow:0 1px 2px rgba(0,0,0,.15)}
.rs-top-search input{width:100%;height:100%;border:0;outline:0;padding:0 14px;font-size:14px;color:#27364a;font-family:inherit;background:#fff}
.rs-top-search input::placeholder{color:#6b7280}
.rs-top-search button{width:48px;height:100%;border:0;background:#fff;color:#000;display:flex;align-items:center;justify-content:center;cursor:pointer}
.rs-top-search button:hover{background:#f5f7fb;color:var(--rca-navy)}
.rs-header-meta{justify-self:end;color:#fff;font-size:14px;white-space:nowrap;border-right:1px solid rgba(255,255,255,.13);padding-right:16px;line-height:1.4}
.rs-header-social{display:flex;align-items:center;gap:18px;justify-content:flex-end;min-width:110px}
.rs-header-social a{display:inline-flex;align-items:center;justify-content:center;color:var(--rca-yellow);width:18px;height:18px}
.rs-header-social svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.rs-header-social a:first-child svg{fill:currentColor;stroke:none}
.rs-header-social a:hover{color:#fff}
.rs-header-nav-row{background:var(--rca-navy-2);height:33px}
.rs-header-nav-in{height:33px;display:flex;align-items:center;justify-content:center}
.rs-main-nav{height:33px;display:flex;align-items:center;justify-content:center;gap:0;width:100%;overflow-x:auto;scrollbar-width:none}
.rs-main-nav::-webkit-scrollbar{display:none}
.rs-main-nav a{height:33px;display:inline-flex;align-items:center;justify-content:center;padding:0 22px;color:#fff;font-size:12px;font-weight:900;text-transform:uppercase;white-space:nowrap;border-radius:0;line-height:1}
.rs-main-nav a:hover{background:rgba(255,255,255,.08);color:#fff}
.rs-main-nav a.on{color:var(--rca-yellow)}

@media (max-width:1100px){
  .rs-header-top-in{grid-template-columns:250px minmax(260px,1fr) auto;gap:16px}
  .rs-header-meta{display:none}
  .rs-main-nav a{padding:0 14px;font-size:11px}
}
@media (max-width:760px){
  .rs-site-header{position:sticky;top:0}
  .rs-header-top-in{height:auto;min-height:64px;grid-template-columns:1fr auto;grid-template-areas:"brand social" "search search";gap:8px 12px;padding-top:8px;padding-bottom:8px}
  .rs-brand{grid-area:brand;align-items:flex-start;min-width:0}
  .rs-brand-line{font-size:25px}
  .rs-brand-shop{font-size:45px}
  .rs-brand-slogan{font-size:11px;margin-top:-1px}
  .rs-top-search{grid-area:search;height:40px;width:100%}
  .rs-header-social{grid-area:social;gap:12px;min-width:88px}
  .rs-header-nav-row{height:36px}
  .rs-header-nav-in{height:36px;padding:0}
  .rs-main-nav{justify-content:flex-start;padding:0 10px;height:36px}
  .rs-main-nav a{height:36px;padding:0 13px;font-size:11px}
}

/* ============================================================
   RCA Shop — style.css  (padrão visual IgrejaNet, sem WordPress)
   Azul escuro + amarelo de destaque, fundo claro, cards brancos.
   ============================================================ */
:root{
  --blue:#00214f;
  --blue-2:#0d2b52;
  --blue-soft:#eef4fc;
  --blue-border:#c9ddf6;
  --yellow:#f6da09;
  --bg:#f3f6fb;
  --card:#ffffff;
  --border:#dfe7f3;
  --ink:#071a33;
  --muted:#64748b;
  --shadow:0 8px 24px rgba(7,26,51,.06);
  --shadow-sm:0 4px 14px rgba(7,26,51,.04);
  --radius:18px;
  --radius-sm:12px;
  --r-card:16px;
  --maxw:1160px;
}

*{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;background:var(--bg);color:var(--ink);
  font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  font-size:15px;line-height:1.6;-webkit-font-smoothing:antialiased;
}
a{color:var(--blue);text-decoration:none}
a:hover{color:var(--blue-2)}
img{max-width:100%;height:auto;display:block}
h1,h2,h3{letter-spacing:-.02em;line-height:1.18;margin:0}
.rs-wrap{max-width:var(--maxw);margin:0 auto;padding:0 16px}
.rs-skip{position:absolute;left:-999px}
.rs-skip:focus{left:8px;top:8px;z-index:9999;background:#fff;padding:8px 12px;border-radius:8px}

/* ---- Header / Nav --------------------------------------------------- */
.rs-header{background:var(--blue);position:sticky;top:0;z-index:200;box-shadow:0 2px 10px rgba(7,26,51,.15)}
.rs-header-in{display:flex;align-items:center;gap:18px;min-height:58px}
.rs-logo{display:inline-flex;align-items:center;font-weight:900;font-size:20px;letter-spacing:-.03em}
.rs-logo-mark{color:var(--yellow)}
.rs-logo-text{color:#fff}
.rs-logo:hover{color:#fff}
.rs-nav{display:flex;align-items:center;gap:2px;margin-left:auto}
.rs-nav a{color:rgba(255,255,255,.86);font-weight:700;font-size:13px;padding:8px 11px;border-radius:9px}
.rs-nav a:hover{color:#fff;background:rgba(255,255,255,.08)}
.rs-nav a.on{color:var(--yellow)}
.rs-nav-cta{background:var(--yellow);color:#091b32 !important;font-weight:900;margin-left:6px}
.rs-nav-cta:hover{background:#ffe43a;color:#091b32 !important}

.rs-main{display:block;min-height:55vh}

/* ---- Hero ----------------------------------------------------------- */
.rs-hero{background:linear-gradient(135deg,var(--blue),var(--blue-2));color:#fff;padding:34px 0 30px}
.rs-hero .rs-breadcrumb{color:rgba(255,255,255,.7)}
.rs-hero h1{font-size:clamp(26px,3.6vw,42px);font-weight:900;margin:0 0 10px;color:#fff}
.rs-hero p{max-width:660px;color:rgba(255,255,255,.85);font-size:15px;margin:0}
.rs-hero-grid{display:grid;grid-template-columns:minmax(0,1fr) 270px;gap:24px;align-items:center}
.rs-kicker{display:inline-flex;align-items:center;gap:6px;background:rgba(246,218,9,.12);border:1px solid rgba(246,218,9,.35);
  color:#fff6a5;border-radius:999px;padding:6px 12px;font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.07em;margin-bottom:12px}
.rs-hero-box{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.16);border-radius:16px;padding:18px}
.rs-hero-box strong{display:block;font-size:32px;font-weight:900;line-height:1;color:#fff}
.rs-hero-box span{display:block;font-size:12px;color:rgba(255,255,255,.75);margin:6px 0 12px}

/* ---- Breadcrumb ----------------------------------------------------- */
.rs-breadcrumb{display:flex;flex-wrap:wrap;align-items:center;gap:6px;font-size:12px;font-weight:700;margin-bottom:14px}
.rs-breadcrumb a{color:#36577c}
.rs-breadcrumb .sep{opacity:.5}
.rs-breadcrumb strong{color:inherit}

/* ---- Tabs sticky ---------------------------------------------------- */
.rs-tabs{background:#fff;border-bottom:1px solid var(--border);position:sticky;top:58px;z-index:120;box-shadow:0 2px 8px rgba(7,26,51,.04)}
.rs-tabs-in{display:flex;gap:0;overflow-x:auto;scrollbar-width:none}
.rs-tabs-in::-webkit-scrollbar{display:none}
.rs-tabs-in a{display:inline-flex;align-items:center;min-height:46px;padding:0 14px;white-space:nowrap;font-size:13px;font-weight:800;color:#334155;border-bottom:3px solid transparent}
.rs-tabs-in a.on,.rs-tabs-in a:hover{color:var(--blue);border-bottom-color:var(--yellow)}

/* ---- Containers / sections ------------------------------------------ */
.rs-section{padding:22px 0}
.rs-card{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);padding:18px;margin-bottom:16px;box-shadow:var(--shadow)}
.rs-sec-head{margin-bottom:14px}
.rs-sec-head.split{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;flex-wrap:wrap}
.rs-sec-head h2{font-size:20px;font-weight:900;margin:0 0 4px}
.rs-sec-head p{font-size:13px;color:var(--muted);margin:0}
.rs-mini-link{font-size:12px;font-weight:900;color:var(--blue);background:var(--blue-soft);border:1px solid var(--blue-border);padding:8px 11px;border-radius:10px;white-space:nowrap}

/* ---- Buttons -------------------------------------------------------- */
.rs-btn{display:inline-flex;align-items:center;justify-content:center;gap:7px;border-radius:var(--radius-sm);min-height:42px;padding:10px 16px;font-size:13px;font-weight:900;cursor:pointer;border:1px solid transparent}
.rs-btn--dark{background:var(--blue);color:#fff}
.rs-btn--dark:hover{background:var(--blue-2);color:#fff}
.rs-btn--yellow{background:var(--yellow);color:#091b32}
.rs-btn--yellow:hover{background:#ffe43a;color:#091b32}
.rs-btn--light{background:#fff;color:var(--blue);border-color:var(--blue-border)}
.rs-btn--light:hover{background:var(--blue-soft)}
.rs-btn--full{width:100%}

/* ---- Search form ---------------------------------------------------- */
.rs-search{display:flex;gap:10px;align-items:center}
.rs-search input{flex:1;min-width:200px;border:1px solid var(--border);border-radius:var(--radius-sm);padding:12px 14px;font-size:14px;outline:0;font-family:inherit}
.rs-search input:focus{border-color:#9cbce3;box-shadow:0 0 0 3px rgba(0,33,79,.08)}
.rs-search button{background:var(--blue);color:#fff;border:0;border-radius:var(--radius-sm);min-height:44px;padding:0 18px;font-weight:900;cursor:pointer}

/* ---- Chips ---------------------------------------------------------- */
.rs-chips{display:flex;gap:8px;flex-wrap:wrap}
.rs-chips a{display:inline-flex;gap:6px;align-items:center;border:1px solid var(--border);background:#fff;color:#334155;border-radius:999px;padding:7px 12px;font-size:12px;font-weight:800}
.rs-chips a small{color:#7c8798;font-weight:800}
.rs-chips a.on,.rs-chips a:hover{background:var(--blue);border-color:var(--blue);color:#fff}
.rs-chips a.on small,.rs-chips a:hover small{color:rgba(255,255,255,.75)}

/* ---- Card grids (providers / companies) ----------------------------- */
.rs-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(250px,1fr));gap:12px}
.rs-tile{background:#fff;border:1px solid var(--border);border-radius:var(--r-card);padding:15px;display:flex;flex-direction:column;min-height:200px;box-shadow:var(--shadow-sm);transition:.16s ease}
.rs-tile:hover{transform:translateY(-2px);box-shadow:0 10px 24px rgba(7,26,51,.09);border-color:var(--blue-border)}
.rs-tile-top{display:flex;gap:12px;align-items:center;margin-bottom:10px}
.rs-badge-ico{width:48px;height:48px;border-radius:14px;background:var(--blue);color:var(--yellow);display:flex;align-items:center;justify-content:center;font-weight:900;font-size:14px;flex-shrink:0}
.rs-tile-head{min-width:0}
.rs-pill{display:inline-flex;align-items:center;gap:4px;background:#fff8dc;border:1px solid #efd16a;color:#493600;border-radius:999px;padding:3px 8px;font-size:10px;font-weight:900;max-width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.rs-tile h3{font-size:16px;font-weight:900;margin:5px 0 0;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.rs-tile p{font-size:13px;color:#475569;margin:0 0 10px;flex:1;line-height:1.5}
.rs-tile-meta{display:flex;align-items:center;gap:6px;font-size:12px;font-weight:800;color:var(--muted);margin-bottom:10px}
.rs-tile-meta svg{color:#94a3b8}
.rs-tile .rs-btn{margin-top:auto;width:100%;background:var(--blue);color:#fff}
.rs-tile .rs-btn:hover{background:var(--blue-2)}

/* ---- Category / city cards ------------------------------------------ */
.rs-cat-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:12px}
.rs-cat{display:flex;align-items:center;gap:12px;background:#fff;border:1px solid var(--border);border-radius:var(--r-card);padding:14px;box-shadow:var(--shadow-sm);transition:.16s}
.rs-cat:hover{transform:translateY(-2px);border-color:var(--blue-border);box-shadow:0 10px 22px rgba(7,26,51,.08)}
.rs-cat .ico{width:44px;height:44px;border-radius:12px;background:var(--blue-soft);color:var(--blue);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.rs-cat strong{display:block;font-size:14px;font-weight:800;color:var(--ink)}
.rs-cat span{font-size:12px;color:var(--muted)}

/* ---- Empty / states ------------------------------------------------- */
.rs-empty{background:#f8fafc;border:1px dashed #cbd5e1;color:#64748b;border-radius:14px;padding:18px;font-weight:700;text-align:center}

/* ---- Detail layout -------------------------------------------------- */
.rs-detail-top{background:var(--bg);padding:18px 0 0}
.rs-detail-head{background:#fff;border:1px solid var(--border);border-radius:var(--radius);padding:22px;box-shadow:var(--shadow);display:grid;grid-template-columns:78px 1fr;gap:18px;align-items:center}
.rs-detail-logo{width:78px;height:78px;border-radius:22px;background:var(--blue);color:var(--yellow);display:flex;align-items:center;justify-content:center;font-size:20px;font-weight:900}
.rs-detail-head h1{font-size:clamp(24px,4vw,38px);font-weight:900;margin:6px 0}
.rs-detail-tags{display:flex;gap:7px;flex-wrap:wrap}
.rs-detail-loc{font-size:13px;font-weight:800;color:var(--muted);display:flex;align-items:center;gap:6px}
.rs-layout{display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:18px;padding:18px 0 60px}
.rs-side .sticky{position:sticky;top:74px}
.rs-info-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin-bottom:16px}
.rs-info-grid div{background:#f8fafc;border:1px solid #e5edf7;border-radius:12px;padding:12px}
.rs-info-grid strong{display:block;font-size:11px;text-transform:uppercase;letter-spacing:.05em;color:#64748b;margin-bottom:4px}
.rs-info-grid span{display:block;font-weight:800;font-size:13px}
.rs-prose{font-size:14px;line-height:1.75;color:#334155}
.rs-prose p{margin:0 0 12px}
.rs-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px}
.rs-side h3{font-size:16px;font-weight:900;margin:0 0 8px}
.rs-side-links{display:flex;flex-direction:column;gap:6px}
.rs-side-links a{background:#f8fafc;border:1px solid #e5edf7;border-radius:10px;padding:9px 11px;font-size:12px;font-weight:800;color:#334155}
.rs-side-links a:hover{background:var(--blue-soft);color:var(--blue)}
.rs-related{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:10px}
.rs-related a{background:#fff;border:1px solid var(--border);border-radius:14px;padding:13px;box-shadow:var(--shadow-sm);color:var(--ink)}
.rs-related a strong{display:block;font-size:14px;margin:6px 0 4px}
.rs-related a small{display:block;font-size:12px;color:var(--muted);font-weight:800;margin-bottom:6px}
.rs-related a p{font-size:12px;color:#475569;margin:0;line-height:1.45}
.rs-map{width:100%;height:300px;border:0;border-radius:14px}

/* ---- Ads ------------------------------------------------------------ */
.rs-ad{background:#fff;border:1px solid var(--border);border-radius:14px;text-align:center;padding:8px;overflow:hidden;margin:16px 0}
.rs-ad-tag{display:block;font-size:9px;font-weight:900;letter-spacing:.08em;text-transform:uppercase;color:#94a3b8;margin-bottom:4px}
.rs-ad--inline{min-height:92px}
/* Bloqueio defensivo de formatos invasivos do AdSense (âncora/vinheta/fixos) */
.google-auto-placed[style*="fixed"],
ins.adsbygoogle[data-anchor-status],
ins.adsbygoogle[data-vignette-loaded],
iframe[id^="google_ads_iframe"][style*="position: fixed"],
div[id^="aswift_"][style*="position: fixed"],
body>ins.adsbygoogle[style*="position: fixed"]{display:none!important;visibility:hidden!important;pointer-events:none!important}

/* ---- Pager ---------------------------------------------------------- */
.rs-pager{display:flex;gap:6px;flex-wrap:wrap;margin-top:16px;justify-content:center}
.rs-pager a,.rs-pager span{min-width:38px;height:38px;display:inline-flex;align-items:center;justify-content:center;padding:0 10px;border-radius:9px;border:1px solid var(--border);background:#fff;font-weight:800;font-size:13px;color:var(--ink)}
.rs-pager a:hover{border-color:var(--blue);color:var(--blue)}
.rs-pager .on{background:var(--blue);color:#fff;border-color:var(--blue)}

/* ---- Bridge CTA ----------------------------------------------------- */
.rs-bridge{display:grid;grid-template-columns:1fr auto;gap:16px;align-items:center}
.rs-bridge h2{font-size:19px;font-weight:900;margin:0 0 5px}
.rs-bridge p{font-size:13px;color:var(--muted);margin:0}
.rs-bridge-actions{display:flex;gap:10px;flex-wrap:wrap}

/* ---- Footer --------------------------------------------------------- */
.rs-footer{background:var(--blue);color:rgba(255,255,255,.8);margin-top:30px;padding:34px 0 20px}
.rs-footer-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr;gap:24px}
.rs-footer h3{color:#fff;font-size:13px;text-transform:uppercase;letter-spacing:.06em;margin:0 0 10px}
.rs-footer a{display:block;color:rgba(255,255,255,.78);font-size:13px;padding:4px 0;font-weight:600}
.rs-footer a:hover{color:var(--yellow)}
.rs-footer p{font-size:13px;line-height:1.6;margin:8px 0 0;max-width:360px}
.rs-logo--foot{font-size:22px}
.rs-copy{border-top:1px solid rgba(255,255,255,.12);margin-top:22px;padding-top:16px;font-size:12px;color:rgba(255,255,255,.6)}

/* ---- Mobile tabbar / drawer (base; ajustes em mobile.css) ----------- */
.rs-tabbar,.rs-drawer{display:none}

/* ---- Produtos / Ofertas --------------------------------------------- */
.rs-product-grid{grid-template-columns:repeat(auto-fill,minmax(210px,1fr))}
.rs-product-card{min-height:300px}
.rs-product-card .rs-pill{margin-bottom:8px;width:max-content;max-width:100%}
.rs-product-card h3 a{color:var(--ink)}
.rs-product-img{height:150px;background:#f8fafc;border:1px solid #e5edf7;border-radius:14px;margin-bottom:12px;display:flex;align-items:center;justify-content:center;overflow:hidden}
.rs-product-img img{width:100%;height:100%;object-fit:contain;padding:10px}
.rs-price-row{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin:2px 0 12px}
.rs-price-row strong{font-size:18px;font-weight:900;color:#071a33}
.rs-price-row span{font-size:11px;font-weight:900;background:#e7f8ed;color:#166534;border:1px solid #bbf7d0;border-radius:999px;padding:3px 8px}
.rs-product-head{grid-template-columns:220px 1fr;align-items:center}
.rs-product-photo{width:220px;height:220px;background:#fff;border:1px solid #e5edf7;border-radius:18px;display:flex;align-items:center;justify-content:center;overflow:hidden}
.rs-product-photo img{width:100%;height:100%;object-fit:contain;padding:14px}
.rs-price-big{display:flex;align-items:baseline;gap:8px;flex-wrap:wrap;margin:10px 0 14px}
.rs-price-big strong{font-size:28px;font-weight:900;color:var(--blue)}
.rs-price-big del{font-size:13px;color:#94a3b8;font-weight:700}
.rs-price-big span{font-size:12px;font-weight:900;background:#e7f8ed;color:#166534;border:1px solid #bbf7d0;border-radius:999px;padding:4px 9px}
.rs-benefits{display:grid;grid-template-columns:repeat(auto-fill,minmax(230px,1fr));gap:10px}
.rs-benefits div{display:flex;gap:9px;align-items:flex-start;background:#f8fafc;border:1px solid #e5edf7;border-radius:12px;padding:11px;font-weight:750;font-size:13px;color:#334155}
.rs-benefits svg{color:#166534;flex-shrink:0;margin-top:1px}
.rs-buy-box-mobile{display:none}
.rs-buy-links a{display:flex;justify-content:space-between;align-items:center}


/* Ícones SVG por categoria de fornecedores */
.rs-badge-ico--svg,.rs-detail-logo--svg{background:linear-gradient(135deg,#eef4ff,#fffbe6);color:#002855;border:1px solid rgba(0,40,85,.12)}
.rs-category-icon{width:100%;height:100%;display:flex;align-items:center;justify-content:center;border-radius:inherit;color:#002855}
.rs-category-icon svg{display:block;stroke-width:1.9}
.rs-category-icon--beauty{color:#9d174d;background:linear-gradient(135deg,#fdf2f8,#fff7ed)}
.rs-category-icon--apparel{color:#6d28d9;background:linear-gradient(135deg,#f5f3ff,#eef2ff)}
.rs-category-icon--tech{color:#0369a1;background:linear-gradient(135deg,#e0f2fe,#eef6ff)}
.rs-category-icon--food{color:#166534;background:linear-gradient(135deg,#f0fdf4,#fefce8)}
.rs-category-icon--tag{color:#92400e;background:linear-gradient(135deg,#fffbeb,#fff7ed)}
.rs-category-icon--car{color:#1e3a8a;background:linear-gradient(135deg,#eff6ff,#f8fafc)}
.rs-category-icon--pet{color:#7c2d12;background:linear-gradient(135deg,#fff7ed,#fefce8)}
.rs-category-icon--build{color:#374151;background:linear-gradient(135deg,#f3f4f6,#fffbeb)}
.rs-category-icon--edu{color:#065f46;background:linear-gradient(135deg,#ecfdf5,#eef2ff)}
.rs-category-icon--health{color:#be123c;background:linear-gradient(135deg,#fff1f2,#f0fdf4)}
.rs-tool-legacy{max-width:1100px;margin:0 auto;padding:22px 18px 54px}.rs-tool-legacy .container{max-width:1100px;margin:0 auto}.rs-tool-legacy .row{display:grid;grid-template-columns:1fr 1fr;gap:22px}.rs-tool-legacy .col-md-6{min-width:0}.rs-tool-legacy .btn{display:inline-flex;align-items:center;justify-content:center;border-radius:8px;border:1px solid #cbd5e1;padding:8px 12px;background:#fff;color:#111827;font-weight:700;cursor:pointer;text-decoration:none}.rs-tool-legacy .btn-primary{background:#002855;color:#fff;border-color:#002855}.rs-tool-legacy .btn-success{background:#16a34a;color:#fff;border-color:#16a34a}.rs-tool-legacy .btn-info{background:#0284c7;color:#fff;border-color:#0284c7}.rs-tool-legacy .btn-warning{background:#facc15;color:#111827;border-color:#eab308}.rs-tool-legacy .btn-default{background:#f8fafc;color:#0f172a}.rs-tool-legacy .form-control{width:100%;border:1px solid #cbd5e1;border-radius:8px;padding:8px 10px}@media(max-width:760px){.rs-tool-legacy .row{grid-template-columns:1fr}.rs-tool-legacy{padding-bottom:92px}}
