@font-face{
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: local("Inter");
}

:root{
  --bg: #ffffff;
  --text: #121212;
  --muted: #5f6368;
  --border: #e6e6e6;
  --soft: #f6f6f7;
  --brand: #d32f2f;
  --brand-2: #ad1f1f;
  --dark: #161616;
  --radius: 16px;
  --shadow: 0 12px 40px rgba(0,0,0,.08);
  --shadow-2: 0 10px 24px rgba(0,0,0,.10);
  --container: 1200px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }

.container{
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.topstrip{
  background: #f3f3f3;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
}
.topstrip .inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}
.badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  white-space: nowrap;
}
.badge strong{ color: var(--text); font-weight: 600; }

header.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.header-inner{
  display: grid;
  grid-template-columns: 220px 1fr 280px;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}
.brandmark{
  display: flex;
  align-items: center;
  gap: 10px;
}
.brandmark .logo{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--brand);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
}
.brandmark .title{
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brandmark .title strong{ font-size: 14px; }
.brandmark .title span{ font-size: 12px; color: var(--muted); }

nav.topnav{
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
nav.topnav a{
  padding: 10px 10px;
  border-radius: 999px;
  font-size: 13px;
  color: #2b2b2b;
}
nav.topnav a:hover{ background: var(--soft); }

body.home .topstrip{ display: none; }
body.home header.site-header{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: rgba(0,0,0,.18);
  border-bottom: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
}
body.home .brandmark .title strong{ color: #fff; }
body.home .brandmark .title span{ color: rgba(255,255,255,.82); }
body.home nav.topnav a{ color: rgba(255,255,255,.92); }
body.home nav.topnav a:hover{ background: rgba(255,255,255,.14); }
body.home .search{
  background: rgba(0,0,0,.22);
  border-color: rgba(255,255,255,.18);
}
body.home .search input{ color: #fff; }
body.home .search input::placeholder{ color: rgba(255,255,255,.78); }

.header-actions{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.search{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 12px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
}
.search input{
  border: 0;
  outline: none;
  width: 100%;
  font-size: 13px;
}
.search-wrap{
  position: relative;
  width: 100%;
}
.search-pop{
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-2);
  overflow: hidden;
  max-height: 340px;
  overflow-y: auto;
  z-index: 80;
}
.search-pop-head{
  padding: 10px 12px;
  font-size: 12px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  background: #fafafa;
}
.search-pop-item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  font-size: 13px;
}
.search-pop-item:hover{ background: var(--soft); }
.search-pop-href{
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 42%;
}

.service-card{
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.service-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--soft);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.service-icon svg{
  width: 22px;
  height: 22px;
  stroke: #222;
}
.service-body h3{ margin: 0 0 6px; }
.service-body p{ margin: 0; }

.media-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.media-card{
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}
.media-card img{
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: #f1f3f5;
}
.media-card .cap{
  padding: 10px 12px;
  font-size: 13px;
  color: var(--muted);
}
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}
.btn:hover{ background: var(--brand-2); }
.btn.secondary{
  background: #fff;
  color: var(--text);
  border-color: var(--border);
}
.btn.secondary:hover{ background: var(--soft); }

.hero-wrap{
  padding: 22px 0 18px;
}
.hero{
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(90deg, var(--brand) 0%, #e04848 60%, #ff6d6d 100%);
  color: #fff;
  box-shadow: var(--shadow);
  position: relative;
}
.hero-inner{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
  padding: 44px 36px;
  align-items: center;
}
.hero h1{
  margin: 0 0 12px;
  font-size: 34px;
  letter-spacing: -0.02em;
}
.hero p{
  margin: 0 0 18px;
  color: rgba(255,255,255,.92);
  font-size: 15px;
  line-height: 1.55;
}
.hero .ctas{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero .hero-card{
  border-radius: 22px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.20);
  padding: 18px;
  display: grid;
  gap: 10px;
}
.hero .hero-card .kpis{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.kpi{
  border-radius: 16px;
  background: rgba(0,0,0,.12);
  padding: 10px 12px;
  text-align: center;
}
.kpi strong{ display: block; font-size: 18px; }
.kpi span{ display: block; font-size: 12px; color: rgba(255,255,255,.88); }

.promo-bar{
  margin-top: 14px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
  box-shadow: var(--shadow-2);
}
.promo-inner{
  display: grid;
  grid-template-columns: 220px 1fr 240px;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
}
.promo-inner .left{
  display: flex;
  gap: 10px;
  align-items: center;
}
.promo-icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255,255,255,.14);
  display: grid;
  place-items: center;
  font-weight: 900;
}
.promo-inner p{
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: 13px;
}

.hero-spotlight{
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  color: #fff;
  background: #0b0b0b;
  overflow: hidden;
}
.hero-spotlight::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero-spotlight::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 400px at 50% 55%, rgba(0,0,0,.20) 0%, rgba(0,0,0,.62) 55%, rgba(0,0,0,.78) 100%);
}
.hero-spotlight .container{
  position: relative;
  z-index: 2;
  padding: 120px 0 68px;
  text-align: center;
}
.hero-spotlight .eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(0,0,0,.22);
  font-size: 12px;
  color: rgba(255,255,255,.92);
}
.hero-spotlight h1{
  margin: 16px 0 10px;
  font-size: 52px;
  letter-spacing: -0.03em;
}
.hero-spotlight h2{
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 700;
  color: rgba(255,255,255,.92);
}
.hero-spotlight p{
  margin: 0 auto 18px;
  max-width: 860px;
  color: rgba(255,255,255,.88);
  font-size: 15px;
  line-height: 1.7;
}
.hero-spotlight .ctas{
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 14px;
}
.hero-spotlight .trust{
  margin-top: 18px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-spotlight .trust .pill{
  border-color: rgba(255,255,255,.20);
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.92);
}

.section{
  padding: 34px 0;
}
.section h2{
  margin: 0 0 14px;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.muted{ color: var(--muted); }

.grid-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.grid-4{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,.03);
  overflow: hidden;
}
.card.pad{ padding: 16px; }
.card h3{
  margin: 0 0 8px;
  font-size: 16px;
}
.card p{
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}
.pill{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--soft);
  font-size: 12px;
  color: #333;
}

.brand-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.brand-tile{
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  padding: 12px;
  display: grid;
  gap: 10px;
  align-items: center;
  justify-items: center;
  transition: transform .12s ease, box-shadow .12s ease;
}
.brand-tile:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.brand-tile img{ height: 28px; width: auto; }
.brand-tile span{ font-size: 12px; color: var(--muted); }

.loc-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.loc-grid a{
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  background: #fff;
  font-size: 13px;
}
.loc-grid a:hover{ background: var(--soft); }

.content{
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 20px;
  align-items: start;
}
.article{
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  padding: 18px;
}
.article h1{
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.article h2{
  margin: 18px 0 8px;
  font-size: 18px;
}
.article h3{
  margin: 14px 0 6px;
  font-size: 15px;
}
.article p, .article li{
  font-size: 14px;
  line-height: 1.65;
  color: #2b2b2b;
}
.article ul{ padding-left: 18px; }
.aside{
  position: sticky;
  top: 92px;
}
.aside .card{ border-radius: 20px; }
.contact-box{
  padding: 16px;
  display: grid;
  gap: 10px;
}
.contact-box .cta{
  display: grid;
  gap: 8px;
}
.mini{
  font-size: 12px;
  color: var(--muted);
}

footer.site-footer{
  margin-top: 40px;
  background: #f4f4f4;
  border-top: 1px solid var(--border);
}
.footer-inner{
  padding: 32px 0 18px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 18px;
}
.footer-col h3{
  margin: 0 0 10px;
  font-size: 14px;
}
.footer-col a{
  display: block;
  padding: 6px 0;
  font-size: 13px;
  color: #303030;
}
.footer-col a:hover{ text-decoration: underline; }
.footer-bottom{
  border-top: 1px solid var(--border);
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
}
.footer-details{
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  padding: 12px 14px;
}
.footer-details summary{
  cursor: pointer;
  font-weight: 700;
}
.footer-links{
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 14px;
}
.footer-links a{
  font-size: 12px;
  color: #303030;
  padding: 2px 0;
}

.sitemap{
  margin-top: 14px;
}
.sitemap-grid{
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.sitemap-item{
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  padding: 10px 12px;
}
.sitemap-item summary{
  cursor: pointer;
  font-weight: 800;
  font-size: 13px;
}
.sitemap-item .footer-links{
  margin-top: 10px;
  grid-template-columns: repeat(2, 1fr);
}

.floating{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: grid;
  gap: 10px;
}
.float-btn{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-2);
  border: 1px solid rgba(0,0,0,.06);
  background: #fff;
}
.float-btn.whatsapp{
  background: #25D366;
  border-color: rgba(0,0,0,.06);
  color: #fff;
  font-weight: 900;
}
.float-btn.phone{
  background: var(--brand);
  color: #fff;
  font-weight: 900;
}

@media (max-width: 1020px){
  .header-inner{ grid-template-columns: 1fr; }
  nav.topnav{ justify-content: flex-start; }
  .header-actions{ justify-content: flex-start; }
  .content{ grid-template-columns: 1fr; }
  .aside{ position: static; }
  .hero-inner{ grid-template-columns: 1fr; padding: 28px 18px; }
  .promo-inner{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-4{ grid-template-columns: repeat(2, 1fr); }
  .brand-grid{ grid-template-columns: repeat(3, 1fr); }
  .loc-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-inner{ grid-template-columns: 1fr 1fr; }
  .footer-links{ grid-template-columns: 1fr; }
  .search-pop-href{ display: none; }
  .sitemap-grid{ grid-template-columns: 1fr; }
  .sitemap-item .footer-links{ grid-template-columns: 1fr; }
  .media-grid{ grid-template-columns: 1fr; }
  .media-card img{ height: 190px; }
  .hero-spotlight{ min-height: 72vh; }
  .hero-spotlight .container{ padding: 110px 0 54px; text-align: left; }
  .hero-spotlight h1{ font-size: 34px; }
  .hero-spotlight h2{ font-size: 16px; }
  .hero-spotlight .ctas, .hero-spotlight .trust{ justify-content: flex-start; }
}
