:root{
  --bg: #0b1220;
  --bg-2: #0e1a2f;
  --card: rgba(255,255,255,.06);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --border: rgba(255,255,255,.12);
  --shadow: 0 18px 45px rgba(0,0,0,.35);
  --brand: #3ea6ff;
  --brand-2: #2be4c8;
  --radius: 18px;
  --radius-sm: 14px;
  --container: 1120px;

  --ease: cubic-bezier(.2,.9,.2,1);
  --shadow-2: 0 22px 70px rgba(0,0,0,.42);
  --stroke: rgba(255,255,255,.14);
  --stroke-2: rgba(255,255,255,.22);
  --glass: rgba(255,255,255,.04);
  --glass-2: rgba(255,255,255,.06);

  --blue-md: #1f7ae0;
  --blue-hi: #34a8ff;
  --green-md: #118a63;
  --green-hi: #25D366;
  --offer-orange: #f97316;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 10% 0%, rgba(62,166,255,.22), transparent 55%),
    radial-gradient(900px 500px at 90% 10%, rgba(43,228,200,.18), transparent 55%),
    linear-gradient(180deg, var(--bg), #070b14);
}

a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; height: auto; display: block; }

main section[id]{
  scroll-margin-top: calc(var(--header-h, 72px));
}

.visually-hidden{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container{
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,18,32,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.topbar__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0;
  min-height: var(--topbar-h, 56px);
}
.brand{
  display:flex;
  align-items: center;
  gap: 12px;
}
.brand__logo{
  height: var(--topbar-h, 56px);
  width: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
  opacity: 0.80;
  /* Fade nas laterais (~10% cada lado) para fundir com o header */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #fff 20%,
    #fff 80%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #fff 20%,
    #fff 80%,
    transparent 100%
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-mode: alpha;
}
.nav{
  display:flex;
  align-items:center;
  gap: 16px;
}
.nav__link{
  font-weight: 600;
  color: var(--muted);
  padding: 10px 10px;
  border-radius: 12px;
  position: relative;
  transition: color .18s var(--ease), background .18s var(--ease), border-radius .18s var(--ease);
}
.nav__link:hover{
  color: var(--text);
  background: rgba(255,255,255,.06);
}
.nav__link.is-active{
  color: rgba(255,255,255,.96);
  background: rgba(255,255,255,.08);
  border-radius: 14px;
}
.nav__link.is-active::after{
  content:"";
  position:absolute;
  left: 12px;
  right: 12px;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(62,166,255,.95), rgba(43,228,200,.85));
  opacity: .9;
}
.topbar__cta{
  display:flex;
  gap: 10px;
  align-items:center;
}

.icon-btn{
  width: 42px;
  height: 42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.84);
  box-shadow: 0 12px 34px rgba(0,0,0,.32);
  transition:
    transform .18s var(--ease),
    border-color .18s var(--ease),
    background .18s var(--ease),
    color .18s var(--ease),
    box-shadow .18s var(--ease);
}
.icon-btn i{ font-size: 18px; line-height: 1; }
.icon-btn:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.22);
  box-shadow: var(--shadow-2);
  color: #fff;
}
.icon-btn--ig:hover{
  background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 70%, #515bd4);
}
.icon-btn--wa:hover{
  background: #25D366;
  color: #fff;
}
.icon-btn:active{ transform: translateY(0px); }
.icon-btn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(62,166,255,.14), var(--shadow-2);
  border-color: rgba(62,166,255,.55);
}

.cta-pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.86);
  font-weight: 750;
  letter-spacing: .2px;
  transition:
    transform .18s var(--ease),
    border-color .18s var(--ease),
    background .18s var(--ease),
    box-shadow .18s var(--ease);
  box-shadow: 0 12px 34px rgba(0,0,0,.32);
}
.cta-pill:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow-2);
}
.cta-pill:active{ transform: translateY(0px); }
.cta-pill:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(62,166,255,.14), var(--shadow-2);
  border-color: rgba(62,166,255,.55);
}
.cta-pill__label{ line-height: 1; }
.cta-pill--compact{ padding: 8px 10px; }

.badge{
  width: 36px;
  height: 36px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.14);
  overflow: hidden;
  transition: transform .18s var(--ease), border-radius .18s var(--ease), filter .18s var(--ease);
  background: rgba(255,255,255,.03);
}
.badge__icon{
  width: 18px;
  height: 18px;
  display:block;
  color: currentColor;
}
.cta-pill:hover .badge{ transform: translateX(-1px) scale(1.02); }

.badge--ig{
  border-radius: 10px;
  border-color: rgba(255,255,255,.14);
}
.cta-pill:hover .badge--ig,
.footer-badge:hover .badge--ig{
  background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 70%, #515bd4);
  border-color: rgba(255,255,255,.22);
  filter: saturate(1.06);
}
.cta-pill:hover .badge--ig .badge__icon,
.footer-badge:hover .badge--ig .badge__icon{
  color: #fff;
}

.badge--wa{
  border-color: rgba(255,255,255,.14);
}
.cta-pill:hover .badge--wa,
.footer-badge:hover .badge--wa{
  background: #25D366;
  border-color: rgba(255,255,255,.22);
}
.cta-pill:hover .badge--wa .badge__icon,
.footer-badge:hover .badge--wa .badge__icon{
  color: rgba(0,0,0,.72);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.92);
  font-weight: 700;
  letter-spacing: .2px;
  transition:
    transform .18s var(--ease),
    background .18s var(--ease),
    border-color .18s var(--ease),
    border-radius .18s var(--ease),
    box-shadow .18s var(--ease),
    filter .18s var(--ease);
  user-select: none;
  box-shadow: 0 10px 30px rgba(0,0,0,.28);
  cursor: pointer;
}
.btn__label{
  line-height: 1;
  transition: transform .18s var(--ease), opacity .18s var(--ease);
}
.icon{
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  display:block;
  transition: transform .18s var(--ease), color .18s var(--ease), opacity .18s var(--ease);
}
.btn:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.22);
  border-radius: 18px;
  box-shadow: var(--shadow-2);
  filter: saturate(1.03);
}
.btn:hover .icon{ transform: translateX(-1px) scale(1.03); }
.btn:hover .btn__label{ transform: translateX(1px); }
.btn:active{
  transform: translateY(0px);
  border-radius: 14px;
}
.btn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(62,166,255,.14), var(--shadow-2);
  border-color: rgba(62,166,255,.55);
}
.btn--primary{
  background: var(--blue-md);
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.96);
  box-shadow: 0 18px 55px rgba(31,122,224,.20);
}
.btn--primary:hover{
  background: var(--blue-hi);
  color: rgba(255,255,255,.96);
  box-shadow: 0 22px 70px rgba(52,168,255,.24);
}

.btn--whatsapp{
  background: var(--green-md);
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.96);
  box-shadow: 0 18px 55px rgba(31,191,135,.18);
}
.btn--whatsapp:hover{
  background: var(--green-hi);
  color: rgba(255,255,255,.96);
  box-shadow: 0 22px 70px rgba(37,211,102,.22);
}

/* Glass (opacidade) apenas: Produtos / Onde estamos / Contato */
.products .btn--primary,
.location__buttons .btn--primary,
.form__actions .btn--primary,
.location__buttons .btn--maps{
  background: rgba(31,122,224,.25);
  color: rgba(255,255,255,.96);
  border-color: rgba(31,122,224,.35);
  box-shadow: 0 18px 55px rgba(31,122,224,.14);
}
.products .btn--primary:hover,
.location__buttons .btn--primary:hover,
.form__actions .btn--primary:hover,
.location__buttons .btn--maps:hover{
  background: rgba(31,122,224,.90);
  color: rgba(255,255,255,.96);
  border-color: rgba(31,122,224,.55);
  box-shadow: 0 22px 70px rgba(31,122,224,.22);
}

.location__buttons .btn--whatsapp,
.form__actions .btn--whatsapp{
  background: rgba(37,211,102,.25);
  color: rgba(255,255,255,.96);
  border-color: rgba(37,211,102,.35);
  box-shadow: 0 18px 55px rgba(37,211,102,.14);
}
.location__buttons .btn--whatsapp:hover,
.form__actions .btn--whatsapp:hover{
  background: rgba(37,211,102,.90);
  color: rgba(255,255,255,.96);
  border-color: rgba(37,211,102,.55);
  box-shadow: 0 22px 70px rgba(37,211,102,.22);
}

/* Produto: base azul 40% e hover verde WhatsApp 90% */
.products .btn--interest{
  background: rgba(31,122,224,.40);
  color: rgba(255,255,255,.96);
  border-color: rgba(31,122,224,.45);
  box-shadow: 0 18px 55px rgba(31,122,224,.16);
}
.products .btn--interest:hover{
  background: rgba(37,211,102,.90);
  color: rgba(255,255,255,.96);
  border-color: rgba(37,211,102,.55);
  box-shadow: 0 22px 70px rgba(37,211,102,.22);
}

/* CTA de produto: destaca no hover com WhatsApp */
.btn--interest:hover{
  background: var(--green-hi);
  color: rgba(255,255,255,.96);
  box-shadow: 0 22px 70px rgba(37,211,102,.22);
}

.btn--maps{
  background: #0f3e7a;
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.96);
  box-shadow: 0 18px 55px rgba(15,62,122,.22);
}
.btn--maps:hover{
  background: var(--blue-md);
  color: rgba(255,255,255,.96);
  box-shadow: 0 22px 70px rgba(31,122,224,.22);
}

.btn--social{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
}
.btn--social:hover{
  color: rgba(255,255,255,.98);
}
.btn--social-ig:hover{
  background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 70%, #515bd4);
  border-color: rgba(255,255,255,.22);
}
.btn--social-wa:hover{
  background: var(--green-hi);
  border-color: rgba(255,255,255,.22);
}
.btn--ghost{
  background: linear-gradient(180deg, var(--glass-2), var(--glass));
}
.btn--lg{
  padding: 12px 18px;
  border-radius: 16px;
}

.hero{
  position: relative;
  min-height: clamp(420px, 72vh, 720px);
  overflow: clip;
}
.hero__bg{
  position:absolute;
  inset: 0;
  background-image: url("./assets/background.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.section{
  padding: 70px 0;
}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.0));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section__head{
  margin-bottom: 22px;
  display:flex;
  flex-direction: column;
  gap: 8px;
}
.section__title{
  margin:0;
  font-size: clamp(22px, 2.3vw, 34px);
  letter-spacing: -0.5px;
}
.section__subtitle{
  margin:0;
  color: var(--muted);
  max-width: 75ch;
  line-height: 1.6;
  font-weight: 550;
}

.cards{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 16px;
  box-shadow: var(--shadow);
  transition:
    transform .18s var(--ease),
    border-color .18s var(--ease),
    border-radius .18s var(--ease),
    background .18s var(--ease),
    box-shadow .18s var(--ease);
}
.card:hover{
  transform: translateY(-3px);
  border-color: rgba(62,166,255,.26);
  border-radius: 22px;
  background: rgba(255,255,255,.07);
  box-shadow: var(--shadow-2);
}
.card__title{
  margin: 0 0 6px;
  font-weight: 700;
  letter-spacing: -0.3px;
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  flex-wrap: wrap;
}
.card__title > i[aria-hidden="true"]{
  font-size: 1.05em;
  flex: 0 0 auto;
  color: var(--muted);
  text-shadow: none;
  filter: none;
  transition:
    color .22s var(--ease),
    text-shadow .22s var(--ease),
    filter .22s var(--ease);
}
.card:hover .card__title > i[aria-hidden="true"]{
  color: var(--brand);
  color: color-mix(in srgb, var(--brand) 82%, white 18%);
  text-shadow:
    0 0 6px color-mix(in srgb, var(--brand) 50%, transparent),
    0 0 12px color-mix(in srgb, var(--brand) 40%, transparent),
    0 0 18px color-mix(in srgb, var(--brand) 28%, transparent);
  filter: drop-shadow(0 0 8px color-mix(in srgb, var(--brand) 50%, transparent))
    drop-shadow(0 0 16px color-mix(in srgb, var(--brand) 32%, transparent));
}
.card__text{
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 550;
}

.products{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 1180px){
  .products{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 720px){
  .products{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.product{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  overflow: hidden;
  box-shadow: var(--shadow);
  display:flex;
  flex-direction: column;
  position: relative;
  transition:
    transform .18s var(--ease),
    border-color .18s var(--ease),
    border-radius .18s var(--ease),
    background .18s var(--ease),
    box-shadow .18s var(--ease);
}
.product:hover{
  transform: translateY(-4px);
  border-color: rgba(43,228,200,.22);
  border-radius: 22px;
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow-2);
}
.product:hover .product__img{
  transform: scale(1.02);
  filter: saturate(1.04) contrast(1.03);
}
.product__img{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: rgba(255,255,255,.06);
  transform-origin: center;
  transition: transform .35s var(--ease), filter .35s var(--ease);
}
.product__body{
  padding: 14px 14px 16px;
  display:flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product__name{
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.3px;
  font-size: 1rem;
  color: rgba(255,255,255,.96);
}
.product__meta{
  display:flex;
  flex-direction: column;
  gap: 4px;
}
.product__price-line{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}
.product__price-line--main{
  flex-wrap: nowrap;
}
.product__price-cluster{
  display:flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}
.product__cash-label{
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.78);
  white-space: nowrap;
  flex-shrink: 0;
}
.product__price-line--sub{
  margin-top: 1px;
}
.product__price-line--sub-end{
  justify-content: flex-end;
}
.product__price{
  font-weight: 700;
  font-size: 18px;
  color: rgba(255,255,255,.96);
}
.product__price-compare{
  line-height: 1;
  color: rgba(255,255,255,.60);
  font-weight: 400;
  font-size: 13px;
  display: inline-flex;
  gap: 6px;
  align-items: baseline;
  flex: 1;
  min-width: 0;
}
.product__price-compare-prefix{
  text-decoration: none;
  opacity: .9;
}
.product__price-compare-value{
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(255,255,255,.80);
}
.product__discount-text{
  color: var(--offer-orange);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .2px;
}
.product__installments{
  line-height: 1;
  color: rgba(53, 174, 255, 0.95);
  font-weight: 650;
  font-size: 13px;
  flex-shrink: 0;
  text-align: right;
}
.product__note{
  color: var(--muted);
  font-weight: 450;
  line-height: 1.5;
  margin: 0;
}

.product__actions{
  display:flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px;
}
.btn--block{ width: 100%; }

.section--instagram{
  padding: 0;
}
.section--instagram .container{
  margin-bottom: 0;
}
.ig-full{
  width: 100%;
  margin: 0;
  padding: 48px 0px;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(28,27,27,.92);
  min-height: 120px;
}

.location{
  display:grid;
  grid-template-columns: 1.05fr 1.45fr;
  gap: 14px;
  align-items: stretch;
}
.location__info{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  padding: 16px;
  box-shadow: var(--shadow);
  display:flex;
  flex-direction: column;
  gap: 14px;
  min-height: 300px;
  transition:
    transform .18s var(--ease),
    border-color .18s var(--ease),
    border-radius .18s var(--ease),
    background .18s var(--ease),
    box-shadow .18s var(--ease);
}
.location__info:hover{
  transform: translateY(-3px);
  border-color: rgba(62,166,255,.22);
  border-radius: 22px;
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow-2);
}
.location__intro{
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 550;
  font-size: 15px;
}
.location__address-link{
  align-self: stretch;
}
.info-line{
  display:flex;
  flex-direction: column;
  gap: 4px;
}
.info-line__label{
  color: rgba(255,255,255,.7);
  font-weight: 750;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.info-line__value{
  font-weight: 600;
  color: rgba(255,255,255,.92);
  line-height: 1.35;
}
.location__buttons{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
  margin-top: auto;
  padding-top: 10px;
}
.location__map{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.03);
}
.location__map iframe{
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

.contact{
  display:grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 14px;
  align-items: start;
}
.form{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  padding: 16px;
  box-shadow: var(--shadow);
  transition:
    transform .18s var(--ease),
    border-color .18s var(--ease),
    border-radius .18s var(--ease),
    background .18s var(--ease),
    box-shadow .18s var(--ease);
}
.form:hover{
  transform: translateY(-2px);
  border-color: rgba(62,166,255,.18);
  border-radius: 22px;
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow-2);
}
.field{
  display:flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.field__label{
  color: rgba(255,255,255,.72);
  font-weight: 750;
  font-size: 13px;
}
.field__input{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(7,11,20,.55);
  color: rgba(255,255,255,.92);
  outline: none;
  font-weight: 650;
}
.field__input:focus{
  border-color: rgba(62,166,255,.6);
  box-shadow: 0 0 0 4px rgba(62,166,255,.12);
}
.field__input--textarea{
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}
.form__actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.form__hint{
  margin: 12px 0 0;
  color: rgba(255,255,255,.62);
  font-weight: 560;
  line-height: 1.5;
  font-size: 13px;
}

.aside-card{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  padding: 16px;
  box-shadow: var(--shadow);
  transition:
    transform .18s var(--ease),
    border-color .18s var(--ease),
    border-radius .18s var(--ease),
    background .18s var(--ease),
    box-shadow .18s var(--ease);
}
.aside-card:hover{
  transform: translateY(-2px);
  border-color: rgba(43,228,200,.18);
  border-radius: 22px;
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow-2);
}
.aside-card__title{
  margin: 0 0 6px;
  font-weight: 700;
  letter-spacing: -0.35px;
}
.aside-card__text{
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 560;
}
.aside-card__buttons{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mini-rows{
  display:flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.mini-row{
  display:grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  color: rgba(255,255,255,.76);
  font-weight: 600;
}
a.mini-row--link{
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  outline: none;
  border-radius: 14px;
  transition: color .18s var(--ease), transform .18s var(--ease);
}
a.mini-row--link:focus-visible{
  box-shadow: 0 0 0 2px rgba(62,166,255,.45);
}
.mini-row--link:hover{
  color: rgba(255,255,255,.95);
  transform: translateX(2px);
}
.mini-row__icon{
  width: 28px;
  height: 28px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  transition:
    border-color .18s var(--ease),
    background .18s var(--ease);
}
.mini-row__icon .icon{
  width: 16px;
  height: 16px;
  opacity: .9;
  color: rgba(255,255,255,.82);
  transition: color .18s var(--ease), opacity .18s var(--ease);
}
.mini-row__icon .fa-solid{
  font-size: 14px;
  line-height: 1;
  color: rgba(255,255,255,.82);
  transition: color .18s var(--ease);
}
.mini-row--link:hover .mini-row__icon{
  border-color: rgba(62,166,255,.32);
  background: rgba(62,166,255,.08);
}
.mini-row--link:hover .mini-row__icon .icon{
  color: var(--brand);
  opacity: 1;
}
.mini-row--link:hover .mini-row__icon .fa-solid{
  color: var(--brand);
}
.mini-row__text{
  line-height: 1.35;
}

.footer{
  border-top: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(1000px 420px at 15% 0%, rgba(62,166,255,.14), transparent 55%),
    radial-gradient(900px 380px at 85% 0%, rgba(43,228,200,.10), transparent 55%),
    rgba(0,0,0,.22);
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 22px;
  padding: 46px 0 28px;
  align-items: start;
}
.footer__brand{
  display:flex;
  flex-direction: column;
  gap: 12px;
}
.footer__logo{
  width: 170px;
  height: auto;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,.35));
}
.footer__about{
  margin: 0;
  color: rgba(255,255,255,.70);
  line-height: 1.6;
  font-weight: 560;
  max-width: 48ch;
}
.footer__social{
  display:flex;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}
.footer-badge{
  width: 44px;
  height: 44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  transition: transform .18s var(--ease), filter .18s var(--ease);
}
.footer-badge:hover{
  transform: translateY(-2px);
  filter: saturate(1.06);
}

.footer__col{
  display:flex;
  flex-direction: column;
  gap: 12px;
}
.footer__title{
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.3px;
  font-size: 14px;
  text-transform: uppercase;
  color: rgba(255,255,255,.86);
}
.footer__links{
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.footer__link{
  color: rgba(255,255,255,.72);
  font-weight: 650;
  transition: color .18s var(--ease), transform .18s var(--ease);
}
.footer__link:hover{
  color: rgba(255,255,255,.95);
  transform: translateX(2px);
}
.footer__contact{
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.footer__contact-item{
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(255,255,255,.72);
  font-weight: 650;
  line-height: 1.35;
  transition: color .18s var(--ease), transform .18s var(--ease);
}
.footer__contact-item .icon{
  width: 18px;
  height: 18px;
  opacity: .9;
  flex: 0 0 auto;
  transition: color .18s var(--ease), opacity .18s var(--ease);
  color: rgba(255,255,255,.78);
}
.footer__contact-item:hover{
  color: rgba(255,255,255,.95);
  transform: translateX(2px);
}
.footer__contact-item:hover .icon{
  color: var(--brand);
  opacity: 1;
}

.footer__bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
}
.footer__bottom-inner{
  display:flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 0;
  flex-wrap: wrap;
}
.footer__copyright{
  margin: 0;
  color: rgba(255,255,255,.62);
  font-weight: 600;
}
.footer__backtotop{
  display:inline-flex;
  gap: 8px;
  align-items:center;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.82);
  font-weight: 750;
  transition:
    transform .18s var(--ease),
    border-color .18s var(--ease),
    border-radius .18s var(--ease),
    background .18s var(--ease);
}
.footer__backtotop:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.22);
  border-radius: 20px;
  background: rgba(255,255,255,.05);
}

@media (max-width: 980px){
  .nav{ display:none; }
  .cards{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .location{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px){
  .container{ width: min(var(--container), calc(100% - 32px)); }
  .topbar__cta .icon-btn{ width: 40px; height: 40px; }
  .hero{ min-height: 520px; }
  .cards{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; padding: 40px 0 22px; }
}

@media (prefers-reduced-motion: reduce){
  *{
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
