/* ========== DaRo Autos · Blog stylesheet ========== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
:root{
  --bg:#0a1628;
  --navy-900:#070d1a;
  --navy-800:#0f1d34;
  --navy-700:#152843;
  --silver-50:#f8fafb;
  --silver-100:#dde3ec;
  --silver-200:#b8c0cf;
  --silver-300:#8b94a7;
  --silver-400:#6a7384;
  --line:rgba(91,141,199,.15);
  --line-strong:rgba(91,141,199,.30);
  --accent:#5b8dc7;
  --accent-2:#7fa8d8;
  --gold:#c9a961;
  --radius:18px;
  --radius-sm:10px;
  --shadow-md:0 12px 30px rgba(0,0,0,.32);
}
html,body{background:var(--bg);color:var(--silver-100)}
body{
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  font-size:16px;line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:clip;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer}

.wrap{max-width:1240px;margin:0 auto;padding:0 32px}

/* ===== NAV (matches main site) ===== */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:200;
  padding:18px 0;
  background:rgba(7,13,26,.55);
  backdrop-filter:blur(22px) saturate(160%);
  -webkit-backdrop-filter:blur(22px) saturate(160%);
  border-bottom:1px solid rgba(255,255,255,.06);
  transition:background .25s, padding .25s, border-color .25s;
}
.nav.scrolled{background:rgba(7,13,26,.85);padding:12px 0;border-bottom-color:rgba(255,255,255,.10)}
.nav .wrap{display:flex;align-items:center;justify-content:space-between;gap:24px}
.logo{display:flex;align-items:center}
.logo img{height:34px;width:auto}
.nav-links{display:flex;gap:6px;align-items:center}
.nav-links a{
  color:var(--silver-200);font-size:14px;font-weight:500;
  padding:8px 14px;border-radius:8px;letter-spacing:.2px;
  transition:color .2s, background .2s;
  position:relative;
}
.nav-links a:hover{color:var(--silver-50);background:rgba(255,255,255,.04)}
.nav-links a.active{color:var(--silver-50)}
.nav-links a.active::after{
  content:'';position:absolute;left:14px;right:14px;bottom:2px;height:2px;
  background:linear-gradient(90deg,var(--accent),var(--accent-2));border-radius:2px;
}
.nav-cta{
  display:inline-flex;align-items:center;gap:8px;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  color:#fff;font-size:13.5px;font-weight:600;letter-spacing:.2px;
  padding:10px 18px;border-radius:99px;border:none;
  box-shadow:0 6px 18px rgba(91,141,199,.32),inset 0 1px 0 rgba(255,255,255,.18);
  transition:transform .2s, box-shadow .2s;
}
.nav-cta:hover{transform:translateY(-1px);box-shadow:0 10px 26px rgba(91,141,199,.45),inset 0 1px 0 rgba(255,255,255,.18)}
.nav-cta-icon{width:14px;height:14px}
.menu-toggle{display:none;background:none;border:none;color:var(--silver-100);padding:8px}
.menu-toggle svg{width:24px;height:24px}

/* ===== ARTICLE / PAGE LAYOUT ===== */
.page{padding-top:96px}

.crumbs{
  display:flex;gap:10px;align-items:center;color:var(--silver-300);
  font-size:13px;letter-spacing:.4px;padding:24px 0 0;flex-wrap:wrap;
}
.crumbs a{color:var(--silver-300);transition:color .2s}
.crumbs a:hover{color:var(--silver-50)}
.crumbs .sep{opacity:.4}
.crumbs span{color:var(--silver-100)}

/* ===== BLOG INDEX HERO ===== */
.blog-hero{
  padding:48px 0 24px;border-bottom:1px solid var(--line);
}
.blog-hero .eyebrow{
  font-size:12px;letter-spacing:3px;text-transform:uppercase;
  color:var(--accent-2);font-weight:600;margin-bottom:16px;
}
.blog-hero h1{
  font-family:'Bricolage Grotesque','Inter',sans-serif;
  font-size:clamp(40px,5vw,64px);font-weight:800;line-height:1.05;
  letter-spacing:-1.5px;color:var(--silver-50);margin-bottom:18px;
}
.blog-hero p.lead{
  font-size:18px;color:var(--silver-200);max-width:680px;line-height:1.6;
}

/* ===== BLOG GRID ===== */
.blog-section{padding:60px 0 100px}
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;margin-top:24px}
.post-card{
  background:linear-gradient(160deg, rgba(36,62,98,.30) 0%, rgba(20,36,62,.22) 60%, rgba(15,29,52,.18) 100%);
  backdrop-filter:blur(14px) saturate(160%);
  -webkit-backdrop-filter:blur(14px) saturate(160%);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);overflow:hidden;cursor:pointer;
  transition:transform .35s, border-color .35s, box-shadow .35s;
  display:flex;flex-direction:column;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.10);
}
.post-card:hover{
  transform:translateY(-4px);
  border-color:rgba(91,141,199,.30);
  box-shadow:0 16px 40px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.14);
}
.post-img{aspect-ratio:16/10;overflow:hidden;position:relative;background:var(--navy-800)}
.post-img img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .6s}
.post-card:hover .post-img img{transform:scale(1.05)}
.post-cat{
  position:absolute;top:14px;left:14px;
  background:rgba(7,13,26,.7);backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  color:var(--silver-50);font-size:11px;letter-spacing:1.5px;
  text-transform:uppercase;font-weight:600;
  padding:6px 12px;border-radius:99px;border:1px solid rgba(255,255,255,.10);
}
.post-body{padding:24px;display:flex;flex-direction:column;gap:12px;flex:1}
.post-meta{font-size:12.5px;color:var(--silver-400);letter-spacing:.3px}
.post-card h2{
  font-family:'Bricolage Grotesque','Inter',sans-serif;
  font-size:21px;font-weight:700;line-height:1.25;color:var(--silver-50);
  letter-spacing:-.4px;
}
.post-excerpt{color:var(--silver-200);font-size:14.5px;line-height:1.55;flex:1}
.post-link{
  display:inline-flex;align-items:center;gap:8px;
  color:var(--accent-2);font-size:13.5px;font-weight:600;letter-spacing:.3px;
  margin-top:auto;
}
.post-link svg{width:14px;height:14px;transition:transform .25s}
.post-card:hover .post-link svg{transform:translateX(4px)}

/* ===== ARTICLE PAGE ===== */
.article-hero{padding:32px 0 0}
.article-eyebrow{
  display:inline-block;
  font-size:11.5px;letter-spacing:2.5px;text-transform:uppercase;
  color:var(--accent-2);font-weight:700;margin-bottom:18px;
  padding:6px 14px;border-radius:99px;
  background:rgba(91,141,199,.10);border:1px solid rgba(91,141,199,.25);
}
.article-title{
  font-family:'Bricolage Grotesque','Inter',sans-serif;
  font-size:clamp(34px,4.6vw,58px);font-weight:800;line-height:1.08;
  letter-spacing:-1.4px;color:var(--silver-50);
  max-width:920px;margin-bottom:24px;
}
.article-deck{
  font-size:18px;color:var(--silver-200);max-width:740px;line-height:1.6;
  margin-bottom:28px;
}
.article-meta-row{
  display:flex;flex-wrap:wrap;gap:24px 32px;align-items:center;
  padding:18px 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line);
  margin-bottom:40px;
}
.article-author{display:flex;align-items:center;gap:14px}
.author-pic{
  width:44px;height:44px;border-radius:50%;overflow:hidden;flex-shrink:0;
  background:linear-gradient(135deg,#3a5680,#1a2840);
  display:flex;align-items:center;justify-content:center;
  color:var(--silver-50);font-weight:600;font-size:14px;letter-spacing:.5px;
  border:1px solid rgba(255,255,255,.10);
}
.author-info{display:flex;flex-direction:column;gap:2px}
.author-name{color:var(--silver-50);font-weight:600;font-size:14px}
.author-role{color:var(--silver-400);font-size:12px;letter-spacing:.2px}
.article-stat{display:flex;align-items:center;gap:8px;color:var(--silver-300);font-size:13px}
.article-stat svg{width:15px;height:15px;color:var(--silver-400)}

.article-cover{
  border-radius:var(--radius);overflow:hidden;margin-bottom:48px;
  border:1px solid rgba(255,255,255,.06);
  box-shadow:0 24px 60px rgba(0,0,0,.45);
  aspect-ratio:16/8;
  background:var(--navy-800);
}
.article-cover img{width:100%;height:100%;object-fit:cover;display:block}

.article-layout{
  display:grid;grid-template-columns:minmax(0,1fr) 280px;
  gap:60px;align-items:start;padding-bottom:80px;
}
.article-body{font-size:17px;line-height:1.8;color:var(--silver-100);max-width:760px}
.article-body p{margin-bottom:22px}
.article-body p:first-child::first-letter{
  float:left;font-family:'Bricolage Grotesque','Inter',sans-serif;
  font-size:62px;line-height:.92;font-weight:700;color:var(--silver-50);
  margin:6px 14px 0 0;
}
.article-body h2{
  font-family:'Bricolage Grotesque','Inter',sans-serif;
  font-size:30px;font-weight:700;line-height:1.2;letter-spacing:-.6px;
  color:var(--silver-50);margin:48px 0 18px;
  scroll-margin-top:100px;
}
.article-body h3{
  font-family:'Bricolage Grotesque','Inter',sans-serif;
  font-size:22px;font-weight:700;line-height:1.3;
  color:var(--silver-50);margin:32px 0 12px;letter-spacing:-.3px;
}
.article-body ul,.article-body ol{margin:0 0 22px 0;padding-left:22px}
.article-body li{margin-bottom:10px}
.article-body strong{color:var(--silver-50);font-weight:600}
.article-body em{color:var(--silver-50);font-style:italic}
.article-body a:not(.btn){
  color:var(--accent-2);border-bottom:1px solid rgba(127,168,216,.35);
  transition:color .2s, border-color .2s;
}
.article-body a:not(.btn):hover{color:var(--silver-50);border-bottom-color:var(--silver-50)}
.article-body .btn,.article-body .btn:hover{border-bottom:none;color:#fff}
.article-body blockquote{
  margin:32px 0;padding:24px 28px;
  background:linear-gradient(160deg, rgba(91,141,199,.10), rgba(91,141,199,.04));
  border-left:3px solid var(--accent);border-radius:8px;
  font-size:18px;font-style:italic;color:var(--silver-100);line-height:1.6;
}
.article-body blockquote p:last-child{margin-bottom:0}
.callout{
  margin:32px 0;padding:24px 28px;
  background:linear-gradient(160deg, rgba(36,62,98,.45), rgba(20,36,62,.28));
  border:1px solid rgba(91,141,199,.22);
  border-radius:14px;
}
.callout h4{
  display:flex;align-items:center;gap:10px;
  font-family:'Bricolage Grotesque','Inter',sans-serif;
  font-size:16px;font-weight:700;color:var(--silver-50);
  margin-bottom:10px;letter-spacing:.2px;
}
.callout h4::before{
  content:'';width:8px;height:8px;border-radius:50%;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  box-shadow:0 0 12px rgba(91,141,199,.6);
}
.callout p:last-child{margin-bottom:0}

.article-figure{margin:36px 0}
.article-figure img{
  width:100%;border-radius:14px;
  border:1px solid rgba(255,255,255,.06);
}
.article-figure figcaption{
  font-size:13px;color:var(--silver-400);text-align:center;
  margin-top:12px;font-style:italic;
}

/* Sticky sidebar with TOC + share */
.article-sidebar{position:sticky;top:96px;align-self:start}
.toc{
  background:linear-gradient(160deg, rgba(36,62,98,.30) 0%, rgba(20,36,62,.18) 100%);
  backdrop-filter:blur(14px) saturate(160%);
  -webkit-backdrop-filter:blur(14px) saturate(160%);
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;padding:22px 22px 18px;margin-bottom:18px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.10);
}
.toc h5{
  font-size:11px;letter-spacing:2.4px;text-transform:uppercase;
  color:var(--silver-400);font-weight:700;margin-bottom:14px;
}
.toc ul{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:6px}
.toc li{margin:0}
.toc a{
  display:block;padding:6px 10px;border-radius:8px;
  font-size:13.5px;color:var(--silver-200);line-height:1.4;
  border-left:2px solid transparent;
  transition:color .2s, border-color .2s, background .2s;
}
.toc a:hover{color:var(--silver-50);background:rgba(91,141,199,.10)}
.toc a.active{color:var(--silver-50);border-left-color:var(--accent-2);background:rgba(91,141,199,.10)}

.share{
  background:linear-gradient(160deg, rgba(36,62,98,.22), rgba(20,36,62,.14));
  backdrop-filter:blur(14px) saturate(160%);
  -webkit-backdrop-filter:blur(14px) saturate(160%);
  border:1px solid rgba(255,255,255,.06);
  border-radius:14px;padding:22px;
}
.share h5{
  font-size:11px;letter-spacing:2.4px;text-transform:uppercase;
  color:var(--silver-400);font-weight:700;margin-bottom:14px;
}
.share-buttons{display:flex;gap:10px;flex-wrap:wrap}
.share-buttons a{
  display:inline-flex;align-items:center;justify-content:center;
  width:38px;height:38px;border-radius:10px;
  background:rgba(91,141,199,.10);border:1px solid rgba(91,141,199,.20);
  color:var(--silver-100);transition:.2s;
}
.share-buttons a:hover{background:rgba(91,141,199,.22);color:var(--silver-50);border-color:rgba(91,141,199,.40);transform:translateY(-2px)}
.share-buttons svg{width:16px;height:16px}

/* Article CTA at end */
.article-cta{
  margin:24px 0 0;padding:32px 36px;
  background:linear-gradient(135deg,rgba(91,141,199,.18),rgba(127,168,216,.08));
  border:1px solid rgba(91,141,199,.30);border-radius:18px;
  text-align:center;
}
.article-cta h3{
  font-family:'Bricolage Grotesque','Inter',sans-serif;
  font-size:24px;font-weight:700;color:var(--silver-50);margin-bottom:10px;
}
.article-cta p{color:var(--silver-200);max-width:520px;margin:0 auto 18px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:13px 26px;border-radius:99px;
  font-size:14px;font-weight:600;letter-spacing:.2px;
  border:none;cursor:pointer;transition:transform .2s, box-shadow .2s;
  text-decoration:none;
}
.btn svg{width:16px;height:16px}
.btn-accent{
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  color:#fff;
  box-shadow:0 8px 22px rgba(91,141,199,.34),inset 0 1px 0 rgba(255,255,255,.18);
}
.btn-accent:hover{transform:translateY(-2px);box-shadow:0 14px 32px rgba(91,141,199,.46),inset 0 1px 0 rgba(255,255,255,.18)}
.btn-ghost{
  background:rgba(255,255,255,.04);color:var(--silver-100);
  border:1px solid rgba(255,255,255,.14);
}
.btn-ghost:hover{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.24);transform:translateY(-1px)}

/* Related articles */
.related{padding:64px 0 80px;border-top:1px solid var(--line)}
.related h2{
  font-family:'Bricolage Grotesque','Inter',sans-serif;
  font-size:30px;font-weight:700;color:var(--silver-50);margin-bottom:28px;
  letter-spacing:-.5px;
}
.related-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:28px}

/* ===== FOOTER ===== */
footer{
  background:var(--navy-900);border-top:1px solid var(--line);
  padding:60px 0 26px;color:var(--silver-300);font-size:14px;
}
.footer-top{
  display:grid;grid-template-columns:1.5fr repeat(3,1fr);gap:48px;
  padding-bottom:40px;border-bottom:1px solid var(--line);
}
.footer-brand img{height:36px;margin-bottom:18px}
.footer-brand p{color:var(--silver-300);max-width:340px;line-height:1.55;margin-bottom:18px}
.footer-socials{display:flex;gap:10px}
.footer-socials a{
  width:36px;height:36px;border-radius:9px;
  background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.06);
  display:inline-flex;align-items:center;justify-content:center;
  color:var(--silver-200);transition:.2s;
}
.footer-socials a:hover{background:rgba(91,141,199,.18);color:var(--silver-50);border-color:rgba(91,141,199,.32)}
.footer-socials svg{width:16px;height:16px}
.footer-col h5{
  font-family:'Bricolage Grotesque','Inter',sans-serif;
  font-size:12px;letter-spacing:2.4px;text-transform:uppercase;
  color:var(--silver-100);font-weight:700;margin-bottom:16px;
}
.footer-col ul{list-style:none;padding:0;margin:0}
.footer-col li{margin-bottom:10px}
.footer-col a{color:var(--silver-300);transition:color .2s;font-size:13.5px}
.footer-col a:hover{color:var(--silver-50)}
.footer-bottom{
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;
  gap:14px;padding-top:24px;
}
.footer-bottom .legal{display:flex;flex-wrap:wrap;gap:18px}
.footer-bottom .legal a{color:var(--silver-300);font-size:12.5px;transition:.2s}
.footer-bottom .legal a:hover{color:var(--silver-50)}

/* ===== WhatsApp float ===== */
.whatsapp-float{
  position:fixed;bottom:26px;right:26px;z-index:120;
  width:54px;height:54px;border-radius:50%;
  background:#25d366;color:#fff;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 10px 24px rgba(37,211,102,.45);
  transition:transform .2s, box-shadow .2s;
}
.whatsapp-float:hover{transform:scale(1.06);box-shadow:0 14px 32px rgba(37,211,102,.55)}
.whatsapp-float svg{width:26px;height:26px}

/* ===== RESPONSIVE ===== */
@media (max-width:980px){
  .article-layout{grid-template-columns:1fr;gap:40px}
  .article-sidebar{position:static;display:none}
  .blog-grid{grid-template-columns:repeat(2,1fr)}
  .related-grid{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr 1fr;gap:36px}
}
@media (max-width:720px){
  .wrap{padding:0 18px}
  .nav-links{display:none}
  .menu-toggle{display:inline-flex}
  .nav-cta{display:none}
  .blog-grid{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr;gap:32px}
  .footer-bottom{flex-direction:column;align-items:flex-start;gap:14px}
  .article-body p:first-child::first-letter{font-size:48px}
  .article-meta-row{gap:14px 22px}
}

/* Keep selection consistent */
::selection{background:rgba(91,141,199,.32);color:var(--silver-50)}

/* ===== UTILITY BAR (matches main site) ===== */
.utility-bar{
  position:fixed;top:0;left:0;right:0;z-index:201;
  background:linear-gradient(180deg, rgba(7,13,26,.92), rgba(10,22,40,.85));
  backdrop-filter:blur(20px) saturate(160%);
  -webkit-backdrop-filter:blur(20px) saturate(160%);
  border-bottom:1px solid rgba(255,255,255,.05);
  font-size:12.5px;color:var(--silver-200);
}
.utility-bar .wrap{display:flex;align-items:center;justify-content:space-between;padding:9px 32px;max-width:1400px;gap:24px}
.utility-bar .left{display:flex;align-items:center;gap:0;min-width:0;flex:1}
.utility-bar .right{display:flex;align-items:center;gap:18px}
.utility-bar .item{display:flex;align-items:center;gap:7px;padding:0 16px;border-right:1px solid rgba(255,255,255,.06);white-space:nowrap}
.utility-bar .item:first-child{padding-left:0}
.utility-bar .item:last-of-type{border-right:none}
.utility-bar .item svg{width:13px;height:13px;opacity:.7;color:var(--accent-2)}
.utility-bar .item a{color:inherit;transition:.2s}
.utility-bar .item a:hover{color:var(--silver-50)}
.utility-bar .live-clock{color:#3ec774;animation:livePulse 2.4s ease-in-out infinite}
.utility-bar .live-clock.closed{color:#e07070;animation:none}
@keyframes livePulse{0%,100%{opacity:.7}50%{opacity:1}}
.utility-bar .util-status{color:var(--silver-100)}
.utility-bar .socials{display:flex;gap:8px}
.utility-bar .socials a{
  width:26px;height:26px;border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.04);color:var(--silver-200);
  transition:.2s;
}
.utility-bar .socials a:hover{background:rgba(91,141,199,.18);color:var(--silver-50)}
.utility-bar .socials a.social-wa:hover{background:#25D366;color:#fff}
.utility-bar .socials svg{width:13px;height:13px}

/* Lang switcher */
.lang-switch{display:inline-flex;gap:4px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:99px;padding:3px}
.lang-switch button{
  background:transparent;border:none;color:var(--silver-300);
  font-size:11px;font-weight:700;letter-spacing:.8px;
  padding:4px 8px;border-radius:99px;cursor:pointer;
  display:inline-flex;align-items:center;gap:5px;
  transition:.2s;line-height:1;font-family:inherit;
}
.lang-switch button:hover{color:var(--silver-50)}
.lang-switch button.active{background:rgba(91,141,199,.22);color:var(--silver-50)}
.lang-switch button svg{width:14px;height:9px;border-radius:1px;display:block}

/* Push the nav DOWN to make room for the utility bar */
.nav{top:36px}
.page{padding-top:140px}

/* Mobile: hide non-essential utility-bar bits */
@media (max-width:760px){
  .utility-bar{font-size:12px}
  .utility-bar .wrap{padding:8px 14px;gap:10px}
  .utility-bar .left{gap:0;flex:1;min-width:0}
  .utility-bar .item{padding:0 10px;border-right:1px solid rgba(255,255,255,.06)}
  .utility-bar .item:first-child{padding-left:0}
  .utility-bar .item:last-of-type{border-right:none}
  .utility-bar .util-hours,.utility-bar .util-location{display:none}
  .utility-bar .right{gap:8px;flex-shrink:0}
  .utility-bar .socials{gap:6px}
  .utility-bar .socials a{width:24px;height:24px}
  .lang-switch button{padding:3px 7px;font-size:10.5px}
  .nav{top:34px}
  .page{padding-top:130px}
}
@media (max-width:430px){
  .utility-bar .socials{display:none}
  .utility-bar .item.util-status{font-size:11px}
}
