/* ============================================================
   VS ESQUADRIAS — Stylesheet Principal + Layout + Header + Footer
   Paleta: Azul #0b1f5c | Dourado #fdb913 | Azul Médio #1e4db7
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --azul:          #0b1f5c;
  --azul-escuro:   #071440;
  --azul-medio:    #1e4db7;
  --azul-claro:    #e8edf8;
  --dourado:       #fdb913;
  --dourado-dark:  #d99e0b;
  --branco:        #FFFFFF;
  --fundo:         #F5F6FA;
  --fundo2:        #ECEEF5;
  --texto:         #1C1C1E;
  --texto-soft:    #555563;
  --borda:         #DDE1EE;
  --sombra:        0 4px 24px rgba(11,31,92,.10);
  --sombra-md:     0 8px 40px rgba(11,31,92,.16);
  --radius:        12px;
  --radius-sm:     8px;
  --radius-lg:     20px;
  --trans:         .3s ease;
  --font:          'Inter', sans-serif;
  --font-titulo:   'Playfair Display', serif;
  /* aliases compatibilidade */
  --roxo:          #0b1f5c;
  --roxo-escuro:   #071440;
  --roxo-light:    #1e4db7;
  --amarelo:       #fdb913;
  --amarelo-dark:  #d99e0b;
  --azul-dark:     #163a8f;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--fundo);
  color: var(--texto);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 100px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; transition: var(--trans); }
ul  { list-style: none; }
button { cursor: pointer; font-family: var(--font); }

/* ── Tipografia ── */
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.25; color: var(--azul-escuro); font-family: var(--font-titulo); }
h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
p  { color: var(--texto-soft); line-height: 1.75; }

/* ── Utilitários ── */
.container    { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section-pad  { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.text-center  { text-align: center; }

/* ── Animações ── */
@keyframes fadeInUp    { from{opacity:0;transform:translateY(40px)} to{opacity:1;transform:none} }
@keyframes fadeInLeft  { from{opacity:0;transform:translateX(-40px)} to{opacity:1;transform:none} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(40px)}  to{opacity:1;transform:none} }
@keyframes float       { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes pulse       { 0%,100%{transform:scale(1)} 50%{transform:scale(1.06)} }
@keyframes shimmer     { 0%{background-position:-200% center} 100%{background-position:200% center} }
@keyframes bounceIn    { 0%{opacity:0;transform:scale(.5)} 60%{opacity:1;transform:scale(1.1)} 80%{transform:scale(.95)} 100%{transform:scale(1)} }
@keyframes heroSlide   { from{opacity:0;transform:translateY(30px) skewY(2deg)} to{opacity:1;transform:none} }
@keyframes lineExpand  { from{transform:scaleX(0)} to{transform:scaleX(1)} }
@keyframes countUp     { from{opacity:0;transform:translateY(20px) scale(.8)} to{opacity:1;transform:none} }
@keyframes progressShimmer { 0%{background-position:200% center} 100%{background-position:-200% center} }

/* ── AOS Scroll ── */
[data-aos] { opacity:0; will-change:opacity,transform; transition:opacity .7s cubic-bezier(.4,0,.2,1),transform .7s cubic-bezier(.4,0,.2,1); }
[data-aos="fade-up"]    { transform:translateY(48px); }
[data-aos="fade-down"]  { transform:translateY(-48px); }
[data-aos="fade-left"]  { transform:translateX(-48px); }
[data-aos="fade-right"] { transform:translateX(48px); }
[data-aos="zoom-in"]    { transform:scale(.88); }
[data-aos].aos-animate  { opacity:1; transform:translateY(0) translateX(0) scale(1); }
[data-aos-delay="100"]  { transition-delay:100ms; }
[data-aos-delay="200"]  { transition-delay:200ms; }
[data-aos-delay="300"]  { transition-delay:300ms; }
[data-aos-delay="400"]  { transition-delay:400ms; }

/* ── Section Header ── */
.section-header { text-align: center; margin-bottom: 52px; }
.section-header .label {
  display: inline-block;
  background: rgba(11,31,92,.08);
  color: var(--azul); font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 12px;
  background-size: 200% auto; animation: shimmer 3s linear infinite;
}
.section-header h2 { margin-bottom: 14px; position: relative; display: inline-block; }
.section-header h2::after {
  content: ''; position: absolute; bottom: -8px; left: 50%;
  transform: translateX(-50%) scaleX(0); transform-origin: center;
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--dourado), var(--azul-medio));
  border-radius: 2px; transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.section-header.aos-animate h2::after { transform: translateX(-50%) scaleX(1); }
.section-header p { max-width: 600px; margin: 0 auto; }
.divider {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--dourado), var(--azul-medio));
  border-radius: 2px; margin: 16px auto 0;
  animation: lineExpand .8s cubic-bezier(.4,0,.2,1) both;
}

/* ── Botões ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px; font-size: .95rem;
  font-weight: 600; border: 2px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn-primary  { background: var(--dourado); color: var(--azul-escuro); border-color: var(--dourado); }
.btn-primary:hover { background: var(--dourado-dark); border-color: var(--dourado-dark); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(253,185,19,.4); }
.btn-outline  { background: transparent; color: var(--branco); border-color: var(--branco); }
.btn-outline:hover { background: var(--branco); color: var(--azul); transform: translateY(-3px); }
.btn-azul     { background: var(--azul); color: var(--branco); border-color: var(--azul); }
.btn-azul:hover { background: var(--azul-escuro); transform: translateY(-3px); box-shadow: var(--sombra-md); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: .85rem; }

/* ── Barra de Progresso ── */
.vs-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--dourado) 0%, var(--azul) 60%, var(--dourado) 100%);
  background-size: 200% 100%;
  animation: progressShimmer 2s linear infinite;
  z-index: 9999;
  box-shadow: 0 0 12px rgba(253,185,19,.8);
  transition: width .15s linear;
}

/* ══════════════════════════════════════════
   HEADER PRINCIPAL
══════════════════════════════════════════ */
.vs-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1090;
  height: 100px;
  transition: height .4s cubic-bezier(.4,0,.2,1), box-shadow .4s ease;
}
.vs-header.scrolled {
  height: 70px;
  box-shadow: 0 4px 40px rgba(11,31,92,.45);
}

/* Fundo split diagonal */
.vs-hd-bg {
  position: absolute; inset: 0; overflow: hidden;
  background: var(--azul-escuro);
}
.vs-hd-bg::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 38%; height: 100%;
  background: var(--azul);
  clip-path: polygon(14% 0%, 100% 0%, 100% 100%, 0% 100%);
  transition: width .4s ease;
}
.vs-hd-bg::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--dourado) 20%,
    #fde568 50%,
    var(--dourado) 80%,
    transparent 100%);
  opacity: .9;
}

/* Partículas */
.vs-hd-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.vs-hd-particles span {
  position: absolute; width: 2px; height: 2px;
  background: var(--dourado); border-radius: 50%; opacity: 0;
  animation: hdParticle var(--dur, 8s) ease-in-out var(--delay, 0s) infinite;
}
.vs-hd-particles span:nth-child(1) { left: 10%; top: 30%; --dur: 9s;  --delay: 0s; }
.vs-hd-particles span:nth-child(2) { left: 25%; top: 70%; --dur: 7s;  --delay: 1s; }
.vs-hd-particles span:nth-child(3) { left: 40%; top: 20%; --dur: 11s; --delay: 2s; }
.vs-hd-particles span:nth-child(4) { left: 60%; top: 60%; --dur: 8s;  --delay: .5s; }
.vs-hd-particles span:nth-child(5) { left: 75%; top: 40%; --dur: 10s; --delay: 3s; }
.vs-hd-particles span:nth-child(6) { left: 88%; top: 75%; --dur: 6s;  --delay: 1.5s; }
@keyframes hdParticle {
  0%,100% { opacity: 0; transform: translateY(0) scale(1); }
  25%      { opacity: .8; }
  50%      { opacity: .4; transform: translateY(-20px) scale(1.5); }
  75%      { opacity: .6; }
}

/* Inner */
.vs-hd-inner {
  position: relative; z-index: 2; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}

/* Logo */
.vs-hd-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; flex-shrink: 0; position: relative;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.vs-hd-logo:hover { transform: scale(1.04); }
.vs-hd-logo-line {
  width: 3px; height: 52px;
  background: linear-gradient(180deg, transparent, var(--dourado), transparent);
  border-radius: 2px; flex-shrink: 0;
  transition: height .4s ease;
}
.vs-header.scrolled .vs-hd-logo-line { height: 38px; }
.vs-hd-logo-img {
  height: 68px; width: auto; object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,.35));
  transition: height .4s ease;
}
.vs-header.scrolled .vs-hd-logo-img { height: 48px; }
.vs-hd-logo-txt { display: flex; flex-direction: column; }
.vs-hd-logo-nome {
  font-family: var(--font-titulo);
  font-size: 1.45rem; font-weight: 800; color: #fff;
  letter-spacing: -.01em; line-height: 1.1;
}
.vs-hd-logo-sub {
  font-size: .68rem; font-weight: 500; color: rgba(253,185,19,.9);
  text-transform: uppercase; letter-spacing: .12em;
}

/* Nav Desktop */
.vs-hd-nav { display: flex; align-items: center; }
.vs-hd-nav-list { display: flex; align-items: center; gap: 0; padding: 0; margin: 0; }
.vs-hd-nav-item { list-style: none; position: relative; }
.vs-hd-nav-link {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 16px; color: rgba(255,255,255,.82);
  font-size: .86rem; font-weight: 600;
  text-decoration: none; white-space: nowrap;
  border-radius: 8px; position: relative;
  transition: color .25s, background .25s;
}
.vs-hd-nav-link::before {
  content: '';
  position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--dourado), #fde568);
  transition: left .35s cubic-bezier(.4,0,.2,1), right .35s cubic-bezier(.4,0,.2,1);
}
.vs-hd-nav-link:hover::before,
.vs-hd-nav-item.is-active .vs-hd-nav-link::before { left: 15%; right: 15%; }
.vs-hd-nav-ico { font-size: .75rem; color: var(--dourado); opacity: .7; transition: opacity .25s, transform .3s; }
.vs-hd-nav-link:hover,
.vs-hd-nav-item.is-active .vs-hd-nav-link { color: #fff; background: rgba(255,255,255,.08); }
.vs-hd-nav-link:hover .vs-hd-nav-ico { opacity: 1; transform: scale(1.2); }
.vs-hd-nav-item.is-active .vs-hd-nav-link { color: var(--dourado); font-weight: 700; }
.vs-hd-nav-item.is-active .vs-hd-nav-ico { opacity: 1; color: var(--dourado); }

/* Bloco direito */
.vs-hd-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.vs-hd-tel {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.8); font-size: .8rem; font-weight: 600;
  text-decoration: none; transition: color .25s; padding: 8px 0;
}
.vs-hd-tel i {
  width: 32px; height: 32px; border-radius: 9px;
  background: rgba(253,185,19,.18); color: var(--dourado);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; transition: background .25s;
}
.vs-hd-tel:hover { color: var(--dourado); }
.vs-hd-tel:hover i { background: var(--dourado); color: var(--azul-escuro); }
.vs-hd-sep { width: 1px; height: 32px; background: rgba(255,255,255,.15); flex-shrink: 0; }

/* CTA Orçamento */
.vs-hd-cta {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 22px; border-radius: 50px;
  background: linear-gradient(135deg, var(--dourado) 0%, var(--dourado-dark) 100%);
  color: var(--azul-escuro); font-size: .84rem; font-weight: 800;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 4px 18px rgba(253,185,19,.4);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
  position: relative; overflow: hidden;
}
.vs-hd-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.25), transparent);
  opacity: 0; transition: opacity .3s;
}
.vs-hd-cta:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 8px 28px rgba(253,185,19,.55); color: var(--azul-escuro); }
.vs-hd-cta:hover::before { opacity: 1; }

/* Hamburger */
.vs-hd-ham {
  display: none; width: 46px; height: 46px;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 10px; cursor: pointer; padding: 0;
  flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
  flex-shrink: 0; transition: all .3s;
  position: relative; z-index: 1095;
}
.vs-hd-ham:hover { background: rgba(253,185,19,.2); border-color: var(--dourado); }
.vs-hd-ham span {
  display: block; border-radius: 3px;
  background: #fff; height: 2px;
  transition: all .4s cubic-bezier(.34,1.56,.64,1);
  transform-origin: center;
}
.vs-hd-ham span:nth-child(1) { width: 24px; }
.vs-hd-ham span:nth-child(2) { width: 18px; }
.vs-hd-ham span:nth-child(3) { width: 24px; }
.vs-hd-ham.is-open span:nth-child(1) { width: 24px; transform: translateY(7px) rotate(45deg); background: var(--dourado); }
.vs-hd-ham.is-open span:nth-child(2) { opacity: 0; width: 0; }
.vs-hd-ham.is-open span:nth-child(3) { width: 24px; transform: translateY(-7px) rotate(-45deg); background: var(--dourado); }

/* ══════════════════════════════════════════
   MENU MOBILE — Drawer lateral
══════════════════════════════════════════ */
.vs-mob-overlay {
  position: fixed; inset: 0;
  background: rgba(11,31,92,.7);
  backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity .4s ease; z-index: 1195;
}
.vs-mob-overlay.open { opacity: 1; pointer-events: auto; }

.vs-mob-drawer {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: min(320px, 88vw);
  background: var(--azul-escuro);
  z-index: 1200; overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.vs-mob-drawer.open { transform: translateX(0); }

.vs-mob-head {
  padding: 28px 24px 24px;
  background: linear-gradient(180deg, var(--azul), var(--azul-escuro));
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.vs-mob-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; cursor: pointer; transition: all .3s;
}
.vs-mob-close:hover { background: rgba(253,185,19,.3); color: var(--dourado); transform: rotate(90deg); }
.vs-mob-logo-img { max-height: 60px; margin-bottom: 12px; filter: drop-shadow(0 2px 8px rgba(253,185,19,.5)); }
.vs-mob-logo-txt { font-family: var(--font-titulo); font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.vs-mob-slogan { font-size: .72rem; color: rgba(253,185,19,.9); text-transform: uppercase; letter-spacing: .1em; }

.vs-mob-nav { flex: 1; padding: 16px 12px; }
.vs-mob-list { display: flex; flex-direction: column; gap: 4px; }
.vs-mob-item { list-style: none; }
.vs-mob-link {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 16px; border-radius: 12px;
  color: rgba(255,255,255,.78); font-size: .92rem; font-weight: 600;
  text-decoration: none; transition: all .3s cubic-bezier(.34,1.56,.64,1);
  border: 1px solid transparent;
}
.vs-mob-ico {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.08); color: var(--dourado);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; flex-shrink: 0; transition: all .3s;
}
.vs-mob-link span { flex: 1; }
.vs-mob-arrow { font-size: .75rem; color: rgba(255,255,255,.3); transition: all .3s; }
.vs-mob-link:hover,
.vs-mob-link.is-active {
  color: #fff; background: rgba(255,255,255,.08);
  border-color: rgba(253,185,19,.25);
}
.vs-mob-link:hover .vs-mob-ico,
.vs-mob-link.is-active .vs-mob-ico { background: var(--dourado); color: var(--azul-escuro); transform: rotate(-8deg); }
.vs-mob-link:hover .vs-mob-arrow { color: var(--dourado); transform: translateX(4px); }
.vs-mob-link.is-active { color: var(--dourado); }

.vs-mob-foot {
  padding: 20px 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column; gap: 10px;
}
.vs-mob-btn-wa {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px; border-radius: 50px;
  background: #25D366; color: #fff; font-weight: 700; font-size: .88rem;
  text-decoration: none; transition: all .3s;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
}
.vs-mob-btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); color: #fff; }
.vs-mob-btn-tel {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px; border-radius: 50px;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(253,185,19,.3);
  color: rgba(255,255,255,.85); font-weight: 700; font-size: .88rem;
  text-decoration: none; transition: all .3s;
}
.vs-mob-btn-tel:hover { background: rgba(253,185,19,.15); color: var(--dourado); }
body.mob-open { overflow: hidden; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.vsf2 {
  position: relative;
  background: linear-gradient(175deg, #060f2a 0%, #040b1f 100%);
  color: rgba(255,255,255,.82);
  font-family: var(--font);
  margin-top: 0;
}
.vsf2-cut {
  width: 100%; height: 70px;
  background: var(--fundo);
  clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
}
.vsf2-body { padding: 60px 0 40px; }

.vsf2-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: start;
}

/* Coluna de marca */
.vsf2-brand { position: relative; }
.vsf2-brand-deco {
  position: absolute; top: -20px; right: -20px;
  font-size: 8rem; opacity: .03;
  color: var(--dourado);
  pointer-events: none; line-height: 1;
}
.vsf2-logo-link { display: inline-block; margin-bottom: 16px; }
.vsf2-logo-img  { max-height: 70px; width: auto; filter: brightness(0) invert(1); }
.vsf2-nome {
  font-family: var(--font-titulo);
  font-size: 1.6rem; font-weight: 800;
  color: #fff; display: inline-block; margin-bottom: 16px;
  text-decoration: none;
}
.vsf2-slogan {
  font-size: .88rem; color: rgba(255,255,255,.6);
  font-style: italic; margin-bottom: 20px; line-height: 1.5;
}
.vsf2-aspas { color: var(--dourado); font-size: 1.1em; }
.vsf2-linha-ouro {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--dourado), transparent);
  border-radius: 2px; margin-bottom: 28px;
}
.vsf2-horario { margin-bottom: 8px; }
.vsf2-contatos { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.vsf2-ctt {
  display: flex; align-items: flex-start; gap: 12px;
  text-decoration: none; color: rgba(255,255,255,.75);
  transition: color .25s;
}
.vsf2-ctt:hover { color: var(--dourado); }
.vsf2-ctt-ico {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: var(--dourado);
  transition: background .25s, transform .25s;
}
.vsf2-ctt:hover .vsf2-ctt-ico { background: var(--dourado); color: #040b1f; transform: scale(1.08); }
.vsf2-ctt-info { display: flex; flex-direction: column; gap: 2px; padding-top: 2px; }
.vsf2-ctt-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); }
.vsf2-ctt-val   { font-size: .86rem; font-weight: 600; color: rgba(255,255,255,.85); line-height: 1.4; }
.vsf2-wa {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: 50px;
  background: #25D366;
  color: #fff; font-weight: 700; font-size: .88rem;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(37,211,102,.35);
  transition: all .3s; margin-bottom: 20px;
}
.vsf2-wa:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.5); color: #fff; }
.vsf2-wa-arrow { margin-left: 4px; font-size: .75rem; transition: transform .3s; }
.vsf2-wa:hover .vsf2-wa-arrow { transform: translateX(4px); }
.vsf2-social { display: flex; gap: 10px; margin-top: 4px; }
.vsf2-sc {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; text-decoration: none;
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
}
.vsf2-sc:hover { background: var(--sc); border-color: var(--sc); color: #fff; transform: translateY(-4px) scale(1.1); }

/* Colunas de links */
.vsf2-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.vsf2-col-h {
  font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--dourado);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font);
}
.vsf2-col-ico { font-size: .75rem; opacity: .8; }
.vsf2-links { display: flex; flex-direction: column; gap: 8px; }
.vsf2-link {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.6); font-size: .86rem;
  text-decoration: none; transition: all .25s;
  padding: 3px 0;
}
.vsf2-link-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--dourado); opacity: .4; flex-shrink: 0;
  transition: opacity .25s, transform .25s;
}
.vsf2-link:hover { color: var(--dourado); padding-left: 4px; }
.vsf2-link:hover .vsf2-link-dot { opacity: 1; transform: scale(1.4); }
.vsf2-selos { display: flex; flex-direction: column; gap: 10px; }
.vsf2-selo {
  display: flex; align-items: center; gap: 10px;
  font-size: .82rem; color: rgba(255,255,255,.65);
}
.vsf2-selo i {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--dourado); font-size: .75rem; flex-shrink: 0;
}

/* Rodapé inferior */
.vsf2-bottom {
  background: rgba(0,0,0,.25);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 18px 0;
}
.vsf2-bottom-row {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}
.vsf2-copy { font-size: .78rem; color: rgba(255,255,255,.45); margin: 0; }
.vsf2-copy strong { color: rgba(255,255,255,.7); }
.vsf2-bottom-center { display: flex; align-items: center; gap: 10px; font-size: .78rem; }
.vsf2-bottom-link { color: rgba(255,255,255,.45); text-decoration: none; transition: color .25s; }
.vsf2-bottom-link:hover { color: var(--dourado); }
.vsf2-bottom-sep { color: rgba(255,255,255,.2); }
.vsf2-cc-btn {
  background: none; border: none; padding: 0;
  color: rgba(255,255,255,.45); font-size: .78rem;
  font-family: inherit; cursor: pointer; transition: color .25s;
  display: inline-flex; align-items: center; gap: 5px;
}
.vsf2-cc-btn:hover { color: var(--dourado); }
.vsf2-dev {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .75rem; color: rgba(255,255,255,.35);
  text-decoration: none; transition: color .25s;
}
.vsf2-dev strong { color: var(--dourado); font-weight: 700; }
.vsf2-dev:hover { color: rgba(255,255,255,.6); }
.vsf2-dev i { font-size: .7rem; color: var(--dourado); }

/* Scroll top */
.vsf2-scroll-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--azul), var(--azul-escuro));
  border: 1px solid rgba(255,255,255,.15);
  color: #fff; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 8000;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  opacity: 0; transform: translateY(12px);
  transition: opacity .35s, transform .35s, background .25s;
  pointer-events: none;
}
.vsf2-scroll-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.vsf2-scroll-top:hover { background: linear-gradient(135deg, var(--dourado), var(--azul-escuro)); }

/* ══════════════════════════════════════════
   COOKIE CONSENT BANNER
══════════════════════════════════════════ */
#ck-overlay {
  position: fixed; inset: 0; z-index: 99998;
  background: rgba(11,31,92,.35);
  backdrop-filter: blur(4px) saturate(1.4);
  opacity: 0; pointer-events: none;
  transition: opacity .45s ease;
}
#ck-overlay.ck-visible { opacity: 1; pointer-events: auto; }

#cookie-banner {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 99999;
  width: min(760px, calc(100vw - 32px));
  opacity: 0;
  transition: transform .45s cubic-bezier(.34,1.56,.64,1), opacity .45s ease;
  will-change: transform, opacity;
}
#cookie-banner.ck-visible { transform: translateX(-50%) translateY(0); opacity: 1; }

.ck-card {
  background: linear-gradient(145deg, rgba(11,31,92,.97) 0%, rgba(30,77,183,.97) 100%);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(11,31,92,.45), 0 8px 24px rgba(0,0,0,.35);
  border: 1px solid rgba(253,185,19,.25);
  overflow: hidden; position: relative;
}
.ck-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--dourado), transparent);
  animation: ck-shimmer 2.8s linear infinite;
}
@keyframes ck-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
.ck-card::after {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(253,185,19,.12) 0%, transparent 70%);
  pointer-events: none;
}
.ck-body { display: flex; align-items: flex-start; gap: 20px; padding: 28px 30px 22px; }
.ck-icon-wrap {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px;
  background: rgba(253,185,19,.15); border: 1px solid rgba(253,185,19,.35);
  display: flex; align-items: center; justify-content: center;
  animation: ck-float 3s ease-in-out infinite;
}
@keyframes ck-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }
.ck-icon-wrap svg { width: 26px; height: 26px; color: var(--dourado); filter: drop-shadow(0 0 6px rgba(253,185,19,.6)); }
.ck-texts { flex: 1; }
.ck-title { font-family: var(--font-titulo); font-size: 1.15rem; font-weight: 700; color: #fff; margin: 0 0 8px; letter-spacing: .02em; line-height: 1.3; }
.ck-title span { color: var(--dourado); }
.ck-desc { font-family: var(--font); font-size: .82rem; line-height: 1.65; color: rgba(255,255,255,.78); margin: 0; }
.ck-desc a { color: var(--dourado); text-decoration: underline dotted; text-underline-offset: 3px; transition: color .2s; }
.ck-desc a:hover { color: #fff; }

.ck-prefs { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; padding: 0 30px; }
.ck-prefs.ck-open { max-height: 260px; padding: 0 30px 10px; }
.ck-prefs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.1); }
.ck-toggle-item { display: flex; align-items: center; gap: 12px; padding: 10px 14px; background: rgba(255,255,255,.06); border-radius: 12px; border: 1px solid rgba(255,255,255,.1); transition: background .2s; }
.ck-toggle-item:hover { background: rgba(255,255,255,.1); }
.ck-toggle-item label { font-family: var(--font); font-size: .78rem; color: rgba(255,255,255,.85); cursor: pointer; user-select: none; flex: 1; line-height: 1.3; }
.ck-toggle-item label strong { display: block; color: #fff; font-weight: 600; margin-bottom: 2px; }
.ck-switch { position: relative; width: 38px; height: 22px; flex-shrink: 0; }
.ck-switch input { opacity: 0; width: 0; height: 0; }
.ck-switch-track { position: absolute; inset: 0; border-radius: 99px; background: rgba(255,255,255,.2); transition: background .3s; cursor: pointer; }
.ck-switch-track::after { content: ''; position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; border-radius: 50%; background: #fff; transition: transform .3s cubic-bezier(.34,1.56,.64,1); box-shadow: 0 2px 6px rgba(0,0,0,.3); }
.ck-switch input:checked + .ck-switch-track { background: var(--dourado); }
.ck-switch input:checked + .ck-switch-track::after { transform: translateX(16px); }
.ck-switch input:disabled + .ck-switch-track { opacity: .5; cursor: not-allowed; }

.ck-footer { display: flex; align-items: center; gap: 10px; padding: 16px 30px 22px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.08); }
.ck-btn { display: inline-flex; align-items: center; gap: 7px; padding: 10px 22px; border-radius: 10px; font-family: var(--font); font-size: .82rem; font-weight: 600; cursor: pointer; border: none; transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s ease, background .2s ease; white-space: nowrap; letter-spacing: .02em; }
.ck-btn:hover  { transform: translateY(-2px); }
.ck-btn:active { transform: scale(.97); }
.ck-btn-accept { background: linear-gradient(135deg, var(--dourado) 0%, #fde568 100%); color: var(--azul); box-shadow: 0 4px 18px rgba(253,185,19,.45); flex: 1; justify-content: center; }
.ck-btn-accept:hover { box-shadow: 0 8px 28px rgba(253,185,19,.65); }
.ck-btn-reject { background: rgba(255,255,255,.08); color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.2); }
.ck-btn-reject:hover { background: rgba(255,255,255,.14); color: #fff; }
.ck-btn-settings { background: transparent; color: rgba(255,255,255,.55); padding: 10px 12px; font-size: .78rem; margin-left: auto; }
.ck-btn-settings:hover { color: var(--dourado); }
.ck-btn-save { display: none; background: rgba(253,185,19,.15); color: var(--dourado); border: 1px solid rgba(253,185,19,.4); flex: 1; justify-content: center; }
.ck-btn-save:hover { background: rgba(253,185,19,.25); }
.ck-prefs.ck-open ~ .ck-footer .ck-btn-save { display: inline-flex; }

.ck-badge { display: flex; align-items: center; gap: 6px; font-family: var(--font); font-size: .7rem; color: rgba(255,255,255,.35); padding: 6px 30px 14px; }
.ck-badge svg { width: 12px; height: 12px; color: rgba(253,185,19,.5); }

.ck-particle { position: absolute; border-radius: 50%; background: rgba(253,185,19,.15); animation: ck-pulse 4s ease-in-out infinite; pointer-events: none; }
.ck-particle:nth-child(1) { width: 8px; height: 8px; top: 18px; left: 18px; animation-delay: 0s; }
.ck-particle:nth-child(2) { width: 5px; height: 5px; bottom: 30px; right: 60px; animation-delay: .8s; }
.ck-particle:nth-child(3) { width: 6px; height: 6px; top: 40px; right: 120px; animation-delay: 1.6s; }
@keyframes ck-pulse { 0%,100%{opacity:.15;transform:scale(1)} 50%{opacity:.5;transform:scale(1.6)} }

/* ── Banner Slider ── */
.banner-slider { position: relative; overflow: hidden; background: var(--azul-escuro); }
.banner-track  { display: flex; transition: transform .8s cubic-bezier(.4,0,.2,1); }
.banner-slide  { min-width: 100%; position: relative; overflow: hidden; }
.banner-slide img { width: 100%; height: 560px; object-fit: cover; object-position: center; }
.banner-slide .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(7,20,64,.65) 0%, rgba(7,20,64,.25) 50%, transparent 100%);
  z-index: 1;
}
.banner-hero-text { position: absolute; bottom: 80px; left: 0; right: 0; z-index: 2; padding: 0 40px; }
.banner-hero-text h1 { color: #fff; font-size: clamp(1.8rem,4vw,3.5rem); font-weight: 800; text-shadow: 0 2px 20px rgba(0,0,0,.4); animation: heroSlide .9s cubic-bezier(.4,0,.2,1) both .2s; }
.banner-hero-text p  { color: rgba(255,255,255,.85); font-size: clamp(.9rem,2vw,1.15rem); margin-top: 12px; animation: heroSlide .9s both .4s; }
.banner-hero-text .btn { margin-top: 24px; animation: heroSlide .9s both .6s; }
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.18); backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,.3); color: #fff;
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: var(--trans); z-index: 10; cursor: pointer;
}
.slider-btn:hover { background: var(--dourado); color: var(--azul-escuro); border-color: var(--dourado); transform: translateY(-50%) scale(1.1); }
.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }
.slider-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.slider-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.45); border: none; cursor: pointer; transition: var(--trans); }
.slider-dot.active { background: var(--dourado); transform: scale(1.35); width: 28px; border-radius: 5px; }

/* ── Diferenciais strip ── */
.diferenciais-strip { background: linear-gradient(135deg, var(--azul-escuro), var(--azul)); padding: 0; overflow: hidden; }
.diferenciais-strip .container { display: grid; grid-template-columns: repeat(4,1fr); position: relative; z-index: 1; }
.dif-item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 36px 20px; color: #fff; text-align: center; transition: background .3s, transform .3s; }
.dif-item:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.dif-item i { font-size: 2.2rem; color: var(--dourado); animation: float 4s ease-in-out infinite; }
.dif-item:nth-child(2) i { animation-delay: .5s; }
.dif-item:nth-child(3) i { animation-delay: 1s; }
.dif-item:nth-child(4) i { animation-delay: 1.5s; }
.dif-item span { font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; opacity: .9; }

/* ── Sobre / Empresa ── */
.sobre-section { background: var(--branco); position: relative; overflow: hidden; }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.sobre-img  { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--sombra-md); }
.sobre-img img { width: 100%; height: 460px; object-fit: cover; transition: transform .5s ease; }
.sobre-img:hover img { transform: scale(1.04); }
.sobre-img .badge { position: absolute; bottom: 24px; left: 24px; background: var(--dourado); color: var(--azul-escuro); font-weight: 800; font-size: 1rem; padding: 10px 20px; border-radius: var(--radius-sm); box-shadow: 0 4px 16px rgba(253,185,19,.4); animation: bounceIn .7s cubic-bezier(.34,1.56,.64,1) both .5s; }
.sobre-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin: 28px 0; }
.stat-box { background: var(--fundo2); border-radius: var(--radius-sm); padding: 20px 16px; text-align: center; border: 1.5px solid var(--borda); transition: transform .3s, box-shadow .3s, border-color .3s; position: relative; overflow: hidden; }
.stat-box::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--dourado),var(--azul-medio)); transform:scaleX(0); transform-origin:left; transition:transform .4s ease; }
.stat-box:hover { border-color: var(--azul); transform: translateY(-6px) scale(1.02); box-shadow: var(--sombra-md); }
.stat-box:hover::before { transform: scaleX(1); }
.stat-box .num   { font-size: 1.8rem; font-weight: 800; color: var(--azul); display: block; }
.stat-box .label { font-size: .78rem; color: var(--texto-soft); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

/* ── Produtos / Categorias ── */
.produtos-section { background: var(--fundo2); }
.produtos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 28px; }
.produto-card { background: var(--branco); border-radius: var(--radius); overflow: hidden; box-shadow: var(--sombra); border: 1.5px solid var(--borda); transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease; position: relative; }
.produto-card:hover { transform: translateY(-10px) scale(1.01); box-shadow: 0 20px 50px rgba(11,31,92,.18); border-color: var(--azul-medio); }
.produto-thumb { position: relative; overflow: hidden; height: 240px; background: var(--fundo2); }
.produto-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.produto-card:hover .produto-thumb img { transform: scale(1.1); }
.produto-badge { position: absolute; top: 12px; left: 12px; background: var(--dourado); color: var(--azul-escuro); font-size: .7rem; font-weight: 700; padding: 4px 10px; border-radius: 50px; text-transform: uppercase; }
.produto-body { padding: 20px; }
.produto-body h3 { font-size: 1rem; margin-bottom: 8px; color: var(--azul-escuro); }
.produto-card:hover .produto-body h3 { color: var(--azul); }
.produto-body p { font-size: .875rem; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.produto-body .btn { width: 100%; justify-content: center; }

/* ── Galeria ── */
.galeria-section { background: var(--azul-escuro); position: relative; overflow: hidden; }
.galeria-section .section-header h2 { color: #fff; }
.galeria-section .section-header p  { color: rgba(255,255,255,.7); }
.galeria-section .label { background: rgba(253,185,19,.2); color: var(--dourado); }
.galeria-grid { columns: 4; column-gap: 16px; }
.galeria-item { break-inside: avoid; margin-bottom: 16px; border-radius: var(--radius-sm); overflow: hidden; position: relative; cursor: pointer; transition: transform .35s; }
.galeria-item:hover { transform: scale(1.02); }
.galeria-item img { width: 100%; display: block; transition: transform .5s ease; }
.galeria-item:hover img { transform: scale(1.08); }
.galeria-item .galeria-over { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(11,31,92,.8), rgba(30,77,183,.5)); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; color: #fff; text-align: center; padding: 12px; }
.galeria-item:hover .galeria-over { opacity: 1; }
.galeria-item .galeria-over i { font-size: 1.8rem; margin-bottom: 8px; transform: scale(.5); transition: transform .3s .1s; }
.galeria-item:hover .galeria-over i { transform: scale(1); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.94); z-index: 9998; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s; backdrop-filter: blur(6px); }
.lightbox.show { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); box-shadow: 0 24px 80px rgba(0,0,0,.6); transform: scale(.9); transition: transform .4s; }
.lightbox.show img { transform: scale(1); }
.lightbox-close { position: absolute; top: 20px; right: 20px; background: var(--dourado); color: var(--azul-escuro); border: none; width: 42px; height: 42px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--trans); }
.lightbox-close:hover { transform: rotate(90deg) scale(1.1); }

/* ── Contato ── */
.contato-section { background: var(--fundo2); }
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contato-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.contato-list li { display: flex; align-items: flex-start; gap: 14px; }
.contato-list li .icon { width: 44px; height: 44px; background: var(--azul); color: var(--branco); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; transition: all .3s; }
.contato-list li:hover .icon { background: var(--dourado); color: var(--azul-escuro); transform: scale(1.12) rotate(-5deg); }
.contato-list li .info strong { display: block; font-size: .82rem; color: var(--azul); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
.contato-list li .info span, .contato-list li .info a { font-size: .92rem; color: var(--texto-soft); }
.contato-list li .info a:hover { color: var(--azul); }
.mapa-wrapper { border-radius: var(--radius); overflow: hidden; box-shadow: var(--sombra-md); height: 380px; }
.mapa-wrapper iframe { width: 100%; height: 100%; border: none; }

/* ── Formulário ── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--azul-escuro); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select { width: 100%; padding: 12px 16px; border: 1.5px solid var(--borda); border-radius: var(--radius-sm); font-size: .9rem; font-family: var(--font); outline: none; transition: border-color .25s, box-shadow .25s; background: var(--branco); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--azul); box-shadow: 0 0 0 3px rgba(11,31,92,.1); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── Page Hero ── */
.page-hero { background: linear-gradient(135deg, var(--azul-escuro), var(--azul)); padding: 56px 0; color: #fff; position: relative; overflow: hidden; }
.page-hero h1 { color: #fff; margin-bottom: 10px; animation: heroSlide .7s ease both; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .875rem; color: rgba(255,255,255,.65); }
.breadcrumb a { color: var(--dourado); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ══════════════════════════════════════════
   NOTIFICAÇÕES
══════════════════════════════════════════ */
.notif-wrapper { position: relative; }
.btn-sino { position: relative; width: 40px; height: 40px; border-radius: 50%; border: none; background: var(--fundo); color: var(--texto); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: .2s; }
.btn-sino:hover { background: rgba(11,31,92,.1); color: var(--azul); }
.btn-sino.ativo { background: rgba(11,31,92,.12); color: var(--azul); animation: sinoToque .6s ease; }
.notif-badge { position: absolute; top: -2px; right: -2px; min-width: 18px; height: 18px; border-radius: 50px; background: #EF4444; color: #fff; font-size: .65rem; font-weight: 700; display: flex; align-items: center; justify-content: center; padding: 0 4px; border: 2px solid var(--fundo); animation: badgePop .3s cubic-bezier(.175,.885,.32,1.275); }
@keyframes badgePop { 0%{transform:scale(0)} 80%{transform:scale(1.15)} 100%{transform:scale(1)} }
@keyframes sinoToque { 0%,100%{transform:rotate(0)} 20%{transform:rotate(-20deg)} 40%{transform:rotate(20deg)} 60%{transform:rotate(-10deg)} 80%{transform:rotate(10deg)} }
.notif-dropdown { position: absolute; top: calc(100% + 8px); right: 0; width: 380px; background: #fff; border-radius: var(--radius); box-shadow: 0 8px 40px rgba(11,31,92,.16); border: 1px solid var(--borda); z-index: 9999; animation: dropDown .2s ease; overflow: hidden; }
@keyframes dropDown { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:translateY(0)} }
.notif-drop-header { padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--borda); background: #f8f9ff; border-top: 3px solid var(--azul); }
.notif-drop-header strong { font-size: .9rem; display: flex; align-items: center; gap: 8px; color: var(--azul); }
.notif-drop-header strong i { color: var(--dourado); }
.notif-drop-footer { padding: 10px 16px; border-top: 1px solid var(--borda); background: #f8f9ff; text-align: center; font-size: .8rem; }
.notif-drop-footer a { color: var(--azul); font-weight: 600; text-decoration: none; transition: color .2s; }
.notif-drop-footer a:hover { color: var(--dourado); }
.notif-lista { max-height: 360px; overflow-y: auto; scroll-behavior: smooth; }
.notif-lista::-webkit-scrollbar { width: 4px; }
.notif-lista::-webkit-scrollbar-thumb { background: var(--azul); border-radius: 2px; opacity: .4; }
.notif-loading { padding: 32px; display: flex; justify-content: center; }
.notif-vazia { padding: 40px 20px; text-align: center; color: var(--texto-soft); font-size: .85rem; }
.notif-vazia::before { content: '🔔'; display: block; font-size: 2rem; margin-bottom: 8px; }
.notif-item { display: flex; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--borda); cursor: pointer; transition: background .15s; position: relative; }
.notif-item:hover { background: #f0f4ff; }
.notif-item:last-child { border-bottom: none; }
.notif-item.nao-lida { background: rgba(11,31,92,.04); }
.notif-item.nao-lida::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--azul); border-radius: 0 3px 3px 0; }
.notif-icone { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; }
.notif-icone.cor-azul    { background: #dbeafe; color: var(--azul); }
.notif-icone.cor-roxo    { background: #dbeafe; color: var(--azul); }
.notif-icone.cor-verde   { background: #d1fae5; color: #065f46; }
.notif-icone.cor-amarelo { background: #fef9c3; color: #854d0e; }
.notif-icone.cor-vermelho{ background: #fee2e2; color: #991b1b; }
.notif-icone.cor-cinza   { background: #f3f4f6; color: #374151; }
.notif-icone.cor-dourado { background: #fef3c7; color: #92400e; }
.notif-conteudo { flex: 1; min-width: 0; }
.notif-titulo { font-size: .83rem; font-weight: 600; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--texto); }
.notif-msg { font-size: .76rem; color: var(--texto-soft); margin: 2px 0 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.notif-tempo { font-size: .68rem; color: var(--texto-soft); }
.notif-acoes { display: flex; align-items: flex-start; }
.btn-notif-del { width: 22px; height: 22px; border: none; background: none; color: var(--texto-soft); cursor: pointer; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: .7rem; opacity: 0; transition: .15s; }
.notif-item:hover .btn-notif-del { opacity: 1; }
.btn-notif-del:hover { background: #fee2e2; color: #991b1b; }
.btn-notif-txt { border: none; background: none; color: var(--azul); cursor: pointer; font-size: .75rem; font-weight: 600; padding: 4px 8px; border-radius: 4px; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; transition: .15s; }
.btn-notif-txt:hover { background: rgba(11,31,92,.1); color: var(--azul); }
.notif-toast-wrap { position: fixed; bottom: 24px; right: 24px; z-index: 99999; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.notif-toast { background: #fff; border-radius: var(--radius-sm); box-shadow: 0 8px 32px rgba(11,31,92,.16); border: 1px solid var(--borda); padding: 14px 16px; display: flex; gap: 12px; align-items: flex-start; min-width: 300px; max-width: 380px; pointer-events: all; animation: toastIn .3s cubic-bezier(.175,.885,.32,1.275); border-left: 4px solid var(--azul); }
.notif-toast.saindo { animation: toastOut .3s ease forwards; }
@keyframes toastIn  { from{opacity:0;transform:translateX(100%)} to{opacity:1;transform:translateX(0)} }
@keyframes toastOut { to{opacity:0;transform:translateX(110%)} }
.toast-icone { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .85rem; flex-shrink: 0; background: rgba(11,31,92,.1); color: var(--azul); }
.toast-body { flex: 1; }
.toast-titulo { font-size: .85rem; font-weight: 700; color: var(--texto); margin-bottom: 2px; }
.toast-msg { font-size: .76rem; color: var(--texto-soft); margin-bottom: 6px; }
.toast-link { font-size: .75rem; font-weight: 600; color: var(--azul); text-decoration: none; transition: color .2s; }
.toast-link:hover { color: var(--dourado); }
.toast-fechar { border: none; background: none; cursor: pointer; color: var(--texto-soft); font-size: .75rem; padding: 2px; transition: color .2s; }
.toast-fechar:hover { color: #ef4444; }

/* ══════════════════════════════════════════
   RESPONSIVIDADE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .vs-hd-nav { display: none; }
  .vs-hd-ham { display: flex; }
  .vsf2-layout { grid-template-columns: 1fr; gap: 40px; }
  .vsf2-cols   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  body { padding-top: 80px; }
  .vs-header { height: 80px; }
  .vs-header.scrolled { height: 66px; }
  .vs-hd-logo-img { height: 52px; }
  .vs-hd-tel { display: none; }
  .vs-hd-sep { display: none; }
  .banner-slide img { height: 300px; }
  .sobre-grid, .contato-grid { grid-template-columns: 1fr; }
  .diferenciais-strip .container { grid-template-columns: repeat(2,1fr); }
  .galeria-grid { columns: 2; }
}
@media (max-width: 640px) {
  body { padding-top: 72px; }
  .vs-header { height: 72px; }
  .vs-hd-cta span { display: none; }
  .vs-hd-cta { padding: 10px 14px; }
  .section-pad { padding: 52px 0; }
  .banner-slide img { height: 240px; }
  .banner-hero-text { padding: 0 16px; bottom: 40px; }
  .banner-hero-text h1 { font-size: 1.5rem; }
  .produtos-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .sobre-stats { grid-template-columns: 1fr 1fr; }
  .vsf2-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .vsf2-bottom-row { flex-direction: column; text-align: center; gap: 10px; }
  .vsf2-brand-deco { display: none; }
  .vsf2-scroll-top { bottom: 16px; right: 16px; }
  .ck-body { flex-direction: column; gap: 14px; padding: 22px 20px 16px; }
  .ck-footer { flex-direction: column; padding: 14px 20px 18px; }
  .ck-btn-accept, .ck-btn-reject, .ck-btn-save { width: 100%; }
  .ck-btn-settings { margin: 0 auto; }
  .ck-prefs { padding: 0 20px; }
  .ck-prefs.ck-open { padding: 0 20px 10px; }
  .ck-badge { padding: 4px 20px 14px; }
  [data-aos] { transition-duration: .45s !important; transform: translateY(24px) !important; }
}
@media (max-width: 400px) {
  .produtos-grid { grid-template-columns: 1fr; }
  .galeria-grid  { columns: 1; }
  .sobre-stats   { grid-template-columns: 1fr; }
  .vsf2-cols { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
