/* ============================================================
   FASSOLI — estilos de header, hero e dashboard
   ============================================================ */

/* ---------- Header ---------- */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s;
  border-bottom: 1px solid transparent;
}
.hdr--solid {
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(14px);
  border-color: var(--border);
  box-shadow: 0 6px 24px -18px rgba(16,28,50,.5);
}
.hdr__in { display: flex; align-items: center; gap: 1.5rem; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: .7rem; flex: none; }
.brand__mark { width: 38px; height: auto; }
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__txt strong { font-family: var(--font-display); font-size: 1.22rem; color: var(--primary); letter-spacing: -.02em; }
.brand__txt em { font-style: normal; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); margin-top: 3px; }
.brand--dark .brand__txt strong { color: #fff; }
.brand--dark .brand__txt em { color: var(--on-dark-muted); }
.brand--dark .brand__mark { filter: brightness(0) invert(1); }

.hdr__nav { display: flex; gap: 1.7rem; margin-inline: auto; }
.hdr__nav a { font-weight: 500; color: var(--text); font-size: .98rem; position: relative; padding: 4px 0; white-space: nowrap; }
.hdr__nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--accent); border-radius: 2px; transition: width .25s ease; }
.hdr__nav a:hover { color: var(--accent); }
.hdr__nav a:hover::after { width: 100%; }
.hdr__cta { display: flex; align-items: center; gap: 1.1rem; flex: none; }
.hdr__portal { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .94rem; color: var(--primary); padding: 6px 4px; transition: color .2s; }
.hdr__portal svg { width: 18px; height: 18px; color: var(--accent); }
.hdr__portal:hover { color: var(--accent); }
.hdr__phone { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; font-size: .92rem; color: var(--primary); }
.hdr__phone svg { width: 17px; height: 17px; color: var(--accent); }
.hdr__burger { display: none; background: none; border: 1px solid var(--border-strong); border-radius: 10px; padding: 8px; color: var(--primary); cursor: pointer; }
.hdr__burger svg { width: 24px; height: 24px; }

/* Drawer mobile */
.drawer { position: fixed; inset: 0; z-index: 80; background: rgba(14,28,50,.4); opacity: 0; pointer-events: none; transition: opacity .3s; backdrop-filter: blur(2px); }
.drawer--open { opacity: 1; pointer-events: auto; }
.drawer__panel { position: absolute; right: 0; top: 0; bottom: 0; width: min(86vw, 360px); background: #fff; padding: 1.4rem; display: flex; flex-direction: column; gap: 1.4rem; transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1); }
.drawer--open .drawer__panel { transform: none; }
.drawer__top { display: flex; align-items: center; justify-content: space-between; }
.drawer__top button { background: none; border: none; padding: 6px; color: var(--primary); cursor: pointer; }
.drawer__top button svg { width: 26px; height: 26px; }
.drawer__nav { display: flex; flex-direction: column; }
.drawer__nav a { padding: 14px 4px; font-size: 1.1rem; font-weight: 600; color: var(--primary); border-bottom: 1px solid var(--border); }
.drawer__portal { display: flex; align-items: center; gap: .6rem; color: var(--accent) !important; }
.drawer__portal svg { width: 20px; height: 20px; }
.drawer .btn { margin-top: auto; }

/* ---------- Hero base ---------- */
.hero { position: relative; padding-top: clamp(7rem, 12vw, 10rem); padding-bottom: clamp(3.5rem, 6vw, 6rem); overflow: hidden; }

/* Aurora animada (recriação CSS, paleta azul Fassoli) */
.hero__aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0;
  --aurora: repeating-linear-gradient(100deg, transparent 0%, #2563EB 5%, #0EA5E9 10%, #60A5FA 14%, transparent 19%, transparent 26%);
}
.hero__aurora::before, .hero__aurora::after {
  content: ""; position: absolute; inset: -40px;
  background-image: var(--aurora);
  background-size: 220% 180%;
  background-position: 50% 50%;
  filter: blur(22px) saturate(1.15);
  opacity: .5;
  will-change: background-position;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 30%, transparent 70%);
  mask-image: linear-gradient(180deg, #000 0%, #000 30%, transparent 70%);
}
.hero__aurora::after {
  background-size: 300% 200%;
  background-position: 100% 50%;
  opacity: .38;
  animation: aurora 55s linear infinite;
}
.hero__aurora--c::before, .hero__aurora--c::after { -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 32%, transparent 72%); mask-image: linear-gradient(180deg, #000 0%, #000 32%, transparent 72%); }
.hero__aurora--dark { 
  --aurora: repeating-linear-gradient(100deg, transparent 0%, #2563EB 5%, #0EA5E9 10%, #60A5FA 14%, transparent 19%, transparent 26%); }
.hero__aurora--dark::before, .hero__aurora--dark::after { opacity: .6; filter: blur(26px) saturate(1.2); }
.hero__aurora--dark::after { opacity: .5; }
@keyframes aurora {
  from { background-position: 0% 50%; }
  to   { background-position: 300% 50%; }
}
@media (prefers-reduced-motion: reduce) { .hero__aurora::after { animation: none; } }
.no-aurora .hero__aurora { display: none; }
.hero .container, .hero__cwrap { position: relative; z-index: 1; }
.hero__strip { position: relative; z-index: 1; }

.hero__glow { position: absolute; top: -25%; right: -10%; width: 70vw; height: 70vw; max-width: 880px; max-height: 880px; background: radial-gradient(circle at 60% 40%, rgba(37,99,235,.16), rgba(37,99,235,0) 62%); pointer-events: none; }
.hero__glow--c { right: 50%; transform: translateX(50%); top: -30%; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.pill--dark { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); color: #fff; }
.hero__h1 { font-size: var(--text-hero); margin: 1.3rem 0 0; }
.hero--split .hero__h1 { font-size: clamp(2.1rem, 4vw, 3.5rem); }
.hero__sub { margin-top: 1.4rem; max-width: 46ch; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero__ctas--c { justify-content: center; }

.hero__credit { list-style: none; margin: 2.6rem 0 0; padding: 1.6rem 0 0; border-top: 1px solid var(--border); display: flex; gap: clamp(1.4rem, 4vw, 2.6rem); }
.hero__credit li { display: flex; flex-direction: column; gap: 2px; }
.hero__credit strong { font-family: var(--font-display); font-size: clamp(1.4rem, 2.4vw, 1.9rem); color: var(--primary); letter-spacing: -.02em; }
.hero__credit span { font-size: .86rem; color: var(--text-muted); }

/* hero variante 2 */
.hero--center { text-align: center; }
.hero__cwrap { display: flex; flex-direction: column; align-items: center; }
.hero__cwrap .hero__h1 { max-width: 16ch; }
.hero__sub--c { margin-inline: auto; max-width: 56ch; }
.hero__art--c { margin-top: 3rem; position: relative; width: min(720px, 100%); }
.hero__credit-float { margin-top: 1.4rem; display: flex; justify-content: center; }
.hero__credit-float .hero__credit { border: none; padding-top: 0; margin-top: 0; }

/* hero variante 3 — bold navy */
.hero--bold { background: var(--bg-dark); color: var(--on-dark); padding-bottom: 0; }
.hero--bold .hero__h1, .hero--bold h1 { color: #fff; }
.hero__mesh { position: absolute; inset: 0; background:
  radial-gradient(45% 55% at 82% 18%, rgba(37,99,235,.42), transparent 60%),
  radial-gradient(40% 50% at 12% 80%, rgba(14,165,233,.22), transparent 60%); pointer-events: none; }
.hero__grid--bold { padding-bottom: 4rem; }
.hero__h1--bold { font-size: clamp(2.5rem, 5vw, 4.3rem); }
.hero__sub--bold { color: var(--on-dark-muted); }
.hero__strip { list-style: none; margin: 0; padding: 1.1rem var(--pad-x); display: flex; flex-wrap: wrap; gap: clamp(1rem,4vw,2.6rem); justify-content: center; border-top: 1px solid rgba(255,255,255,.12); background: rgba(0,0,0,.18); }
.hero__strip li { color: var(--on-dark-muted); font-size: .95rem; }
.hero__strip strong { color: #fff; font-family: var(--font-display); font-size: 1.15rem; margin-right: .15rem; }

/* ---------- Dashboard mockup ---------- */
.dash { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.hero--bold .dash { box-shadow: 0 40px 90px -30px rgba(0,0,0,.6); }
.dash__bar { display: flex; align-items: center; gap: 7px; padding: 13px 18px; border-bottom: 1px solid var(--border); background: var(--bg-soft); }
.dash__dot { width: 10px; height: 10px; border-radius: 50%; background: #D7DEEA; }
.dash__dot:nth-child(1){ background:#E7A6A6; } .dash__dot:nth-child(2){ background:#E9CE9B; } .dash__dot:nth-child(3){ background:#A8CFA0; }
.dash__tag { margin-left: auto; font-size: .74rem; color: var(--text-faint); font-family: var(--font-body); letter-spacing: .01em; }
.dash__body { padding: clamp(1.2rem, 2.4vw, 1.8rem); display: grid; gap: 1.2rem; }
.dash__hero { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.dash__label { font-size: .82rem; color: var(--text-muted); font-weight: 600; }
.dash__big { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.9rem); color: var(--primary); letter-spacing: -.03em; line-height: 1; margin: .4rem 0 .7rem; }
.dash__big small { font-size: .9rem; color: var(--text-faint); font-weight: 500; margin-left: 4px; }
.dash__chip { display: inline-flex; align-items: center; gap: .4rem; font-size: .8rem; font-weight: 600; color: var(--accent); background: var(--accent-soft); padding: 6px 11px; border-radius: 999px; }
.dash__chip svg { width: 15px; height: 15px; }
.dash__ring { position: relative; width: 96px; height: 96px; flex: none; display: grid; place-items: center; }
.dash__ring svg { width: 96px; height: 96px; transform: rotate(-90deg); }
.dash__ring .ring-bg { fill: none; stroke: var(--bg-softer); stroke-width: 11; }
.dash__ring .ring-fg { fill: none; stroke: var(--accent); stroke-width: 11; stroke-linecap: round; stroke-dasharray: 302; stroke-dashoffset: 200; }
.dash__ringtxt { position: absolute; display: flex; flex-direction: column; align-items: center; font-size: .68rem; color: var(--text-muted); }
.dash__ringtxt b { font-family: var(--font-display); font-size: 1.2rem; color: var(--primary); }
.dash__rows { display: grid; gap: .85rem; }
.dash__row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: .3rem .8rem; font-size: .86rem; color: var(--text-muted); }
.dash__val { font-family: var(--font-display); font-weight: 600; color: var(--primary); }
.dash__row--good .dash__val { color: var(--accent); }
.dash__track { grid-column: 1 / -1; height: 8px; background: var(--bg-softer); border-radius: 999px; overflow: hidden; }
.dash__track i { display: block; height: 100%; background: var(--border-strong); border-radius: 999px; }
.dash__track i.good { background: linear-gradient(90deg, var(--accent), var(--sky)); }
.dash__foot { display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; padding-top: 1rem; border-top: 1px dashed var(--border); }
.dash__fcell { display: inline-flex; align-items: center; gap: .45rem; font-size: .82rem; color: var(--text-muted); }
.dash__fcell svg { width: 16px; height: 16px; color: var(--sky); }

/* ---------- Hero art · Conversa (WhatsApp) ---------- */
.chat { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; max-width: 440px; margin-inline: auto; }
.hero--bold .chat { box-shadow: 0 40px 90px -30px rgba(0,0,0,.6); }
.chat__top { display: flex; align-items: center; gap: .7rem; padding: 14px 16px; background: var(--primary); color: #fff; }
.chat__ava { width: 40px; height: 40px; border-radius: 50%; background: #fff; color: var(--primary); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; flex: none; }
.chat__id { display: flex; flex-direction: column; justify-content: center; gap: 2px; line-height: 1.25; flex: 1; min-width: 0; }
.chat__id strong { font-size: .98rem; font-weight: 700; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.chat__id span { display: inline-flex; align-items: center; gap: .35rem; font-size: .76rem; line-height: 1.2; color: var(--on-dark-muted); white-space: nowrap; }
.chat__on { width: 7px; height: 7px; border-radius: 50%; background: var(--sky); box-shadow: 0 0 0 0 rgba(14,165,233,.6); animation: chatping 2.2s infinite; }
@keyframes chatping { 0%{box-shadow:0 0 0 0 rgba(14,165,233,.5);} 70%{box-shadow:0 0 0 7px rgba(14,165,233,0);} 100%{box-shadow:0 0 0 0 rgba(14,165,233,0);} }
.chat__wa { width: 22px; height: 22px; color: #fff; opacity: .85; flex: none; }
.chat__body { padding: 1.1rem 1rem 1.2rem; background:
  linear-gradient(180deg, var(--bg-soft), #fff); display: flex; flex-direction: column; gap: .55rem; }
.chat__day { align-self: center; font-size: .72rem; color: var(--text-faint); background: var(--bg-softer); padding: 3px 12px; border-radius: 999px; margin-bottom: .3rem; }
.msg { max-width: 84%; padding: 9px 13px; border-radius: 16px; font-size: .92rem; line-height: 1.42; position: relative; }
.msg p { margin: 0; }
.msg__t { display: block; text-align: right; font-size: .66rem; margin-top: 3px; opacity: .7; }
.msg__t svg { width: 13px; height: 13px; vertical-align: -2px; }
.msg--in { align-self: flex-start; background: #fff; border: 1px solid var(--border); color: var(--text); border-bottom-left-radius: 5px; box-shadow: var(--shadow-sm); }
.msg--out { align-self: flex-end; background: var(--accent); color: #fff; border-bottom-right-radius: 5px; }
.msg--out .msg__t { color: rgba(255,255,255,.85); }
.msg--out .msg__t svg { color: var(--sky); }
.chat__reply { align-self: center; display: inline-flex; align-items: center; gap: .4rem; margin-top: .4rem; font-size: .76rem; font-weight: 600; color: var(--accent); background: var(--accent-soft); padding: 5px 12px; border-radius: 999px; }
.chat__reply svg { width: 14px; height: 14px; }
.chat__foot { padding: 11px 16px; border-top: 1px solid var(--border); font-size: .76rem; color: var(--text-muted); text-align: center; }
.chat__foot em { font-style: italic; color: var(--text-faint); }

/* ---------- Hero art · Credenciais ---------- */
.proof { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(.9rem, 2vw, 1.2rem); max-width: 520px; margin-inline: auto; }
.proof__main { background: var(--primary); color: #fff; border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.1rem); display: flex; flex-direction: column; justify-content: space-between; gap: 1rem; box-shadow: var(--shadow-lg); }
.proof__big { font-family: var(--font-display); font-weight: 800; font-size: clamp(3.6rem, 8vw, 5.4rem); line-height: .9; letter-spacing: -.04em; }
.proof__big sup { font-size: .4em; vertical-align: super; color: var(--sky); }
.proof__lbl { font-size: .94rem; color: var(--on-dark-muted); line-height: 1.45; }
.proof__side { display: grid; gap: clamp(.9rem, 2vw, 1.2rem); grid-auto-rows: 1fr; }
.proof__c { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.1rem 1.2rem; display: flex; flex-direction: column; justify-content: center; gap: 1px; box-shadow: var(--shadow-sm); }
.proof__c strong { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; color: var(--primary); line-height: 1; letter-spacing: -.02em; }
.proof__c strong sup { font-size: .5em; vertical-align: super; color: var(--accent); }
.proof__c span { font-size: .84rem; color: var(--text-muted); }
.proof__c svg { width: 22px; height: 22px; color: var(--accent); margin-bottom: .3rem; }
.proof__c--accent { background: var(--accent-soft); border-color: #DCE7FB; }
.proof__c--accent strong { color: var(--accent); font-family: var(--font-display); font-size: 1.25rem; }
.proof__stars { display: inline-flex; gap: 1px; color: var(--star); margin-bottom: .35rem; }
.proof__stars svg { width: 17px; height: 17px; color: var(--star); margin: 0; }
.proof__ph { color: var(--on-dark-muted) !important; align-self: flex-start; font-size: .82rem !important; }

/* ---------- Hero art · Foto ---------- */
.hero-photo { position: relative; max-width: 520px; margin-inline: auto; }
.hero-photo .ph { aspect-ratio: 4 / 3.6; border-radius: var(--radius-lg); }
.hero-photo__badge { position: absolute; left: -8px; bottom: -20px; background: var(--primary); color: #fff; border-radius: var(--radius); padding: 1.1rem 1.3rem; max-width: 250px; display: flex; align-items: center; gap: .9rem; box-shadow: var(--shadow-lg); }
.hero-photo__badge strong { font-family: var(--font-display); font-size: 2.4rem; line-height: 1; flex: none; }
.hero-photo__badge span { font-size: .82rem; color: var(--on-dark-muted); line-height: 1.4; }

/* ---------- Hero art · Cena animada ---------- */
.scene { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; max-width: 460px; margin-inline: auto; }
.hero--bold .scene { box-shadow: 0 40px 90px -30px rgba(0,0,0,.6); }
.scene__bar { display: flex; align-items: center; gap: 7px; padding: 13px 18px; border-bottom: 1px solid var(--border); background: var(--bg-soft); }
.scene__dot { width: 10px; height: 10px; border-radius: 50%; background: #D7DEEA; }
.scene__dot:nth-child(1){ background:#E7A6A6; } .scene__dot:nth-child(2){ background:#E9CE9B; } .scene__dot:nth-child(3){ background:#A8CFA0; }
.scene__tag { margin-left: auto; font-size: .74rem; color: var(--text-faint); }
.scene__body { padding: clamp(1.2rem, 2.4vw, 1.7rem); display: grid; gap: 1.1rem; }
.scene__top { display: flex; align-items: center; gap: 1.2rem; }

/* donut animado */
.scene__ring { position: relative; width: 116px; height: 116px; flex: none; }
.scene__ring svg { width: 116px; height: 116px; transform: rotate(-90deg); }
.scene__ring-bg { fill: none; stroke: var(--bg-softer); stroke-width: 12; }
.scene__ring-fg { fill: none; stroke: url(#sceneGrad); stroke: var(--accent); stroke-width: 12; stroke-linecap: round; stroke-dasharray: 314; stroke-dashoffset: 314; animation: sceneRing 6s cubic-bezier(.4,0,.2,1) infinite; }
@keyframes sceneRing {
  0% { stroke-dashoffset: 314; }
  28%, 72% { stroke-dashoffset: 214; }
  100% { stroke-dashoffset: 314; }
}
.scene__ring-c { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px; }
.scene__ring-c b { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; color: var(--primary); line-height: 1; }
.scene__ring-c span { font-size: .68rem; color: var(--text-muted); }
.scene__count { animation: sceneFade 6s ease infinite; }
@keyframes sceneFade { 0%,12%{opacity:.35;} 30%,72%{opacity:1;} 100%{opacity:.35;} }

.scene__kpis { display: grid; gap: .7rem; flex: 1; }
.scene__kpi { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 12px; padding: .7rem .85rem; display: flex; flex-direction: column; gap: 2px; }
.scene__kpi--a { background: var(--accent-soft); border-color: #DCE7FB; }
.scene__kpi-l { font-size: .74rem; color: var(--text-muted); font-weight: 600; }
.scene__kpi-v { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--primary); }
.scene__kpi--a .scene__kpi-v { color: var(--accent); }
/* regime trocando V -> III */
.scene__swap { position: relative; display: inline-grid; }
.scene__swap i { grid-area: 1/1; font-style: normal; }
.scene__swap i:nth-child(1){ animation: swapOut 6s ease infinite; }
.scene__swap i:nth-child(2){ animation: swapIn 6s ease infinite; }
@keyframes swapOut { 0%,30%{opacity:1;transform:translateY(0);} 42%,100%{opacity:0;transform:translateY(-6px);} }
@keyframes swapIn { 0%,30%{opacity:0;transform:translateY(6px);} 42%,100%{opacity:1;transform:translateY(0);} }

/* checklist animado */
.scene__list { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 14px; padding: .9rem 1rem; display: grid; gap: .55rem; }
.scene__list-h { font-size: .76rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; }
.scene__task { display: flex; align-items: center; gap: .6rem; font-size: .9rem; color: var(--text); }
.scene__check { width: 22px; height: 22px; border-radius: 7px; border: 2px solid var(--border-strong); display: grid; place-items: center; flex: none; color: #fff; background: transparent; transition: none; animation: taskBox 6s ease infinite; animation-delay: calc(var(--i) * .5s); }
.scene__check svg { width: 14px; height: 14px; opacity: 0; transform: scale(.4); animation: taskTick 6s ease infinite; animation-delay: calc(var(--i) * .5s); }
@keyframes taskBox { 0%,8%{ background: transparent; border-color: var(--border-strong);} 16%,84%{ background: var(--accent); border-color: var(--accent);} 96%,100%{ background: transparent; border-color: var(--border-strong);} }
@keyframes taskTick { 0%,8%{ opacity:0; transform: scale(.4);} 18%,84%{ opacity:1; transform: scale(1);} 96%,100%{ opacity:0; transform: scale(.4);} }
.scene__task-t { flex: 1; }
.scene__task-ok { font-size: .72rem; font-weight: 700; color: var(--accent); opacity: 0; animation: taskOk 6s ease infinite; animation-delay: calc(var(--i) * .5s); }
@keyframes taskOk { 0%,10%{opacity:0;} 20%,84%{opacity:1;} 94%,100%{opacity:0;} }
@media (prefers-reduced-motion: reduce) {
  .scene__ring-fg { animation: none; stroke-dashoffset: 214; }
  .scene__count, .scene__swap i, .scene__check, .scene__check svg, .scene__task-ok { animation: none; }
  .scene__check { background: var(--accent); border-color: var(--accent); }
  .scene__check svg { opacity: 1; transform: none; }
  .scene__task-ok { opacity: 1; }
  .scene__swap i:nth-child(1){ opacity: 0; }
  .scene__swap i:nth-child(2){ opacity: 1; }
}
