/* ── RESET & VARIABLES ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --blue: #00AEEF;
  --black: #0A0A0A;
  --white: #FFFFFF;
  --line: #1C1C1C;
  --font-head: 'Barlow Condensed', system-ui, sans-serif;
  --font-body: 'Barlow', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: var(--font-body); font-size: 18px; overflow-x: hidden; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── UTILITIES ── */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
.label { display: inline-block; font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--blue); margin-bottom: 20px; }
.accent { color: var(--blue); }
.section-header { margin-bottom: 64px; }
.section-header h2 { font-family: var(--font-head); font-size: 68px; font-weight: 900; text-transform: uppercase; line-height: .95; letter-spacing: -1px; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── NAV ── */
#nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(10,10,10,.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav-inner { height: 64px; display: flex; align-items: center; justify-content: space-between; }
.logo { text-decoration: none; display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.logo-main { display: flex; align-items: center; gap: 6px; }
.logo-r1 { font-family: var(--font-head); font-size: 26px; font-weight: 900; letter-spacing: 1px; color: var(--white); }
.logo-dot { width: 8px; height: 8px; background: var(--blue); border-radius: 1px; flex-shrink: 0; }
.logo-acel { font-family: var(--font-head); font-size: 15px; font-weight: 700; letter-spacing: 4px; color: var(--white); }
.logo-slogan { font-family: var(--font-head); font-size: 9px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(0,174,239,.7); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-family: var(--font-head); font-size: 14px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.75); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { background: var(--blue) !important; color: var(--black) !important; padding: 8px 20px; border-radius: 3px; font-weight: 800 !important; }

/* ── HERO ── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding-top: 64px; }
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(0,174,239,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(0,174,239,.12) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridMove 18s linear infinite;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 75% 65% at 65% 50%, rgba(0,174,239,.18) 0%, transparent 65%),
    linear-gradient(to bottom, transparent 50%, var(--black) 100%),
    linear-gradient(to right, var(--black) 0%, transparent 20%, transparent 80%, var(--black) 100%);
}
@keyframes gridMove { 0% { background-position: 0 0; } 100% { background-position: 80px 80px; } }
.speed-lines { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.speed-line { position: absolute; height: 1px; background: linear-gradient(90deg, transparent, rgba(0,174,239,.6), transparent); animation: speedLine 4s ease-in-out infinite; }
.speed-line:nth-child(1) { top: 18%; width: 45%; left: -45%; animation-delay: 0s; }
.speed-line:nth-child(2) { top: 40%; width: 65%; left: -65%; animation-delay: 1s; }
.speed-line:nth-child(3) { top: 62%; width: 35%; left: -35%; animation-delay: 2s; }
.speed-line:nth-child(4) { top: 78%; width: 55%; left: -55%; animation-delay: 3s; }
@keyframes speedLine { 0% { transform: translateX(0); opacity: 0; } 15% { opacity: 1; } 100% { transform: translateX(220vw); opacity: 0; } }
.hero-content { position: relative; z-index: 2; padding: 80px 0; width: 100%; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; border: 1px solid rgba(0,174,239,.4); background: rgba(0,174,239,.1); color: var(--blue); font-family: var(--font-head); font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; padding: 7px 16px; border-radius: 3px; margin-bottom: 32px; }
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--blue); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.3; transform:scale(1.5); } }
.hero h1 { font-family: var(--font-head); font-size: 96px; font-weight: 900; line-height: .93; letter-spacing: -1px; text-transform: uppercase; margin-bottom: 32px; }
.hero-sub { font-size: 21px; font-weight: 500; color: rgba(255,255,255,.88); max-width: 600px; margin-bottom: 52px; line-height: 1.6; }
.hero-sub strong { color: var(--white); font-weight: 700; }
.hero-btns { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--blue); color: var(--black); font-family: var(--font-head); font-size: 17px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 16px 36px; border-radius: 3px; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,174,239,.35); }
.btn-ghost { display: inline-flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,.25); color: var(--white); font-family: var(--font-head); font-size: 17px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 16px 32px; border-radius: 3px; text-decoration: none; transition: border-color .2s, color .2s; }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

/* ── NÚMEROS ── */
.numeros { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.numeros-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.num-item { padding: 52px 40px; border-right: 1px solid var(--line); }
.num-item:last-child { border-right: none; }
.num-value { font-family: var(--font-head); font-size: 60px; font-weight: 900; color: var(--blue); line-height: 1; margin-bottom: 10px; }
.num-label { font-size: 16px; font-weight: 500; color: rgba(255,255,255,.82); line-height: 1.4; }

/* ── DORES ── */
.dores { padding: 120px 0; }
.dores-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.dor-item { background: var(--black); padding: 44px 38px; border-top: 2px solid transparent; transition: border-color .3s, background .3s, transform .3s; transform: perspective(600px) translateZ(0); }
.dor-item:hover { border-top-color: var(--blue); background: #0f0f0f; transform: perspective(600px) translateZ(10px) scale(1.02); }
.dor-num { display: block; font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 4px; color: var(--blue); margin-bottom: 16px; }
.dor-item h3 { font-family: var(--font-head); font-size: 26px; font-weight: 800; text-transform: uppercase; margin-bottom: 12px; line-height: 1.1; }
.dor-item p { font-size: 16px; font-weight: 500; color: rgba(255,255,255,.82); line-height: 1.65; }

/* ── SOBRE ── */
.sobre { padding: 120px 0; }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.sobre-left { display: flex; flex-direction: column; gap: 28px; }
.sobre-photo { position: relative; }
.sobre-photo img { width: 100%; border-radius: 4px; }
.sobre-photo::before { content: ''; position: absolute; top: -16px; left: -16px; width: 64px; height: 64px; border-top: 2px solid var(--blue); border-left: 2px solid var(--blue); border-radius: 2px; pointer-events: none; }
.sobre-photo::after { content: ''; position: absolute; bottom: -16px; right: -16px; width: 64px; height: 64px; border-bottom: 2px solid var(--blue); border-right: 2px solid var(--blue); border-radius: 2px; pointer-events: none; }
.espec-label { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; display: block; }
.espec-row { display: flex; gap: 12px; flex-wrap: wrap; }
.espec-logo-box { flex: 1; min-width: 90px; height: 56px; background: #0d0d0d; border: 1px solid var(--line); border-radius: 4px; display: flex; align-items: center; justify-content: center; padding: 8px 12px; transition: border-color .2s; overflow: hidden; }
.espec-logo-box:hover { border-color: rgba(0,174,239,.3); }
.espec-logo-box img { max-width: 100%; max-height: 36px; object-fit: contain; filter: brightness(0) invert(1); opacity: .75; transition: opacity .2s; }
.espec-logo-box:hover img { opacity: 1; }
.sobre-text h2 { font-family: var(--font-head); font-size: 60px; font-weight: 900; text-transform: uppercase; line-height: .95; letter-spacing: -1px; margin-bottom: 28px; }
.sobre-text p { font-size: 17px; font-weight: 500; color: rgba(255,255,255,.85); line-height: 1.75; margin-bottom: 20px; }
.sobre-text p strong { color: var(--white); font-weight: 700; }
.powered-by-block { display: flex; flex-direction: column; gap: 8px; margin: 12px 0; padding: 14px 18px; border: 1px solid rgba(0,174,239,.2); background: rgba(0,174,239,.05); border-radius: 4px; width: fit-content; }
.powered-by-label { font-family: var(--font-head); font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.35); }
.powered-by-img { max-height: 32px; object-fit: contain; filter: brightness(0) invert(1); opacity: .85; }
.sobre-quote { margin-top: 24px; padding: 24px 28px; border-left: 3px solid var(--blue); background: rgba(0,174,239,.05); border-radius: 0 4px 4px 0; }
.sobre-quote p { font-size: 18px; font-style: italic; color: rgba(255,255,255,.88); line-height: 1.6; margin: 0; }
.sobre-quote cite { display: block; margin-top: 12px; font-family: var(--font-head); font-size: 12px; letter-spacing: 2px; color: var(--blue); font-style: normal; }

/* ── SOLUÇÕES ── */
.solucoes { padding: 120px 0; background: #060606; }
.solucoes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); margin-top: 64px; }
.solucao-item { background: #060606; padding: 52px 48px; position: relative; overflow: hidden; transition: background .3s, transform .3s, box-shadow .3s; transform: perspective(800px) translateZ(0); }
.solucao-item:hover { background: #111; transform: perspective(800px) translateZ(14px) scale(1.015); box-shadow: 0 16px 48px rgba(0,0,0,.6); z-index: 1; }
.solucao-item::before { content: attr(data-num); position: absolute; top: -10px; right: 16px; font-family: var(--font-head); font-size: 140px; font-weight: 900; color: rgba(0,174,239,.05); line-height: 1; pointer-events: none; user-select: none; }
.solucao-tag { display: block; font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--blue); margin-bottom: 20px; }
.solucao-item h3 { font-family: var(--font-head); font-size: 38px; font-weight: 900; text-transform: uppercase; margin-bottom: 16px; line-height: 1.05; }
.solucao-item p { font-size: 17px; font-weight: 500; color: rgba(255,255,255,.82); line-height: 1.7; }
.solucao-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.pill { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; border: 1px solid rgba(0,174,239,.3); color: rgba(0,174,239,.85); padding: 5px 12px; border-radius: 2px; }

/* ── COMO FUNCIONA ── */
.como { padding: 120px 0; }
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); margin-top: 64px; }
.step { background: var(--black); padding: 48px 36px; position: relative; overflow: hidden; transition: background .3s, transform .3s, box-shadow .3s; transform: perspective(600px) translateZ(0); }
.step:hover { background: #0f0f0f; transform: perspective(600px) translateZ(16px) scale(1.03); box-shadow: 0 20px 60px rgba(0,0,0,.7); z-index: 1; }
.step-accent { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.step:hover .step-accent { transform: scaleX(1); }
.step-num { display: block; font-family: var(--font-head); font-size: 80px; font-weight: 900; color: var(--blue); line-height: 1; margin-bottom: 20px; opacity: .2; transition: opacity .3s; }
.step:hover .step-num { opacity: .45; }
.step h4 { font-family: var(--font-head); font-size: 24px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.step p { font-size: 16px; font-weight: 500; color: rgba(255,255,255,.82); line-height: 1.65; }

/* ── CASES ── */
.cases { padding: 120px 0; background: #060606; }
.cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); margin-top: 64px; }
.case-item { background: #060606; padding: 52px 48px; transition: background .3s, transform .3s, box-shadow .3s; transform: perspective(700px) translateZ(0); }
.case-item:hover { background: #111; transform: perspective(700px) translateZ(12px) scale(1.015); box-shadow: 0 16px 48px rgba(0,0,0,.5); z-index: 1; }
.case-empresa { display: block; font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; }
.case-resultado { font-family: var(--font-head); font-size: 56px; font-weight: 900; line-height: 1; margin-bottom: 16px; text-transform: uppercase; }
.case-resultado span { color: var(--blue); }
.case-desc { font-size: 17px; font-weight: 500; color: rgba(255,255,255,.82); line-height: 1.6; margin-bottom: 20px; display: block; }
.case-badge { display: inline-block; font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; border: 1px solid var(--line); color: rgba(255,255,255,.4); padding: 5px 12px; border-radius: 2px; }

/* ── CLIENTES ── */
.clientes { padding: 100px 0; }
.clientes-sub { font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 4px; color: rgba(255,255,255,.4); text-transform: uppercase; margin: 40px 0 18px; display: block; }
.clientes-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.cliente-chip { font-family: var(--font-head); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.65); padding: 7px 16px; border-radius: 2px; transition: border-color .2s, color .2s; cursor: default; }
.cliente-chip:hover { border-color: var(--blue); color: var(--blue); }

/* ── DEPOIMENTOS ── */
.depoimentos { padding: 120px 0; background: #060606; }
.video-depos-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 320px)); gap: 20px; justify-content: center; margin-bottom: 0; }
.video-depo-card { border-radius: 10px; overflow: hidden; border: 1px solid var(--line); cursor: pointer; transition: border-color .2s; }
.video-depo-card:hover { border-color: var(--blue); }
.video-thumb-wrap { position: relative; aspect-ratio: 9/16; background: #111; overflow: hidden; }
.video-thumb-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.video-depo-card:hover .video-thumb-wrap img { transform: scale(1.04); }
.video-play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.video-play-circle { width: 56px; height: 56px; border-radius: 50%; background: rgba(0,174,239,.9); display: flex; align-items: center; justify-content: center; transition: transform .2s; }
.video-depo-card:hover .video-play-circle { transform: scale(1.1); }
.video-depo-info { padding: 14px 16px; background: #111; }
.video-depo-info strong { display: block; font-size: 14px; color: var(--white); margin: 6px 0 2px; }
.video-depo-info span { font-size: 12px; color: rgba(255,255,255,.45); }
.depos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); margin-top: 64px; }
.depo-item { background: #060606; padding: 52px 48px; transition: background .3s; }
.depo-item:hover { background: #0d0d0d; }
.stars { font-size: 14px; letter-spacing: 3px; color: var(--blue); margin-bottom: 24px; display: block; }
.depo-item blockquote { font-size: 18px; font-weight: 500; color: rgba(255,255,255,.85); line-height: 1.75; margin-bottom: 32px; font-style: italic; border: none; padding: 0; }
.depo-item cite { display: flex; flex-direction: column; gap: 4px; font-style: normal; }
.depo-item cite strong { font-family: var(--font-head); font-size: 20px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--white); }
.depo-item cite span { font-size: 15px; font-weight: 500; color: rgba(0,174,239,.8); }

/* ── CTA FINAL ── */
.cta-final { padding: 120px 0; position: relative; overflow: hidden; }
.cta-final::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,174,239,.08) 0%, transparent 70%); pointer-events: none; }
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; text-align: center; }
.cta-inner h2 { font-family: var(--font-head); font-size: 76px; font-weight: 900; text-transform: uppercase; line-height: .95; letter-spacing: -1px; margin-bottom: 20px; }
.cta-inner > p { font-size: 19px; font-weight: 500; color: rgba(255,255,255,.8); margin-bottom: 56px; line-height: 1.6; }
.form-wrap { max-width: 600px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-grid .full { grid-column: span 2; }
input, textarea { width: 100%; background: #111; border: 1px solid #222; color: var(--white); font-family: var(--font-body); font-size: 16px; font-weight: 500; padding: 14px 18px; border-radius: 3px; outline: none; transition: border-color .2s; }
input:focus, textarea:focus { border-color: var(--blue); }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,.3); }
textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: 18px; background: var(--blue); color: var(--black); font-family: var(--font-head); font-size: 20px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; border: none; border-radius: 3px; cursor: pointer; transition: transform .2s, box-shadow .2s; margin-top: 4px; display: block; }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,174,239,.4); }
.form-alt { margin-top: 20px; font-size: 15px; font-weight: 500; color: rgba(255,255,255,.45); display: block; }
.form-alt a { color: var(--blue); text-decoration: none; }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--line); padding: 48px 0; }
.footer-inner { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; justify-content: space-between; }
.footer-logo { display: flex; flex-direction: column; gap: 3px; }
.footer-logo-main { display: flex; align-items: center; gap: 5px; }
.footer-logo-main span:first-child { font-family: var(--font-head); font-size: 20px; font-weight: 900; letter-spacing: 1px; }
.footer-acel { font-family: var(--font-head); font-size: 14px; font-weight: 700; letter-spacing: 4px; }
.footer-slogan { font-family: var(--font-head); font-size: 9px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(0,174,239,.6); }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-family: var(--font-head); font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--blue); }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 3px; display: flex; align-items: center; justify-content: center; transition: border-color .2s; }
.footer-social a:hover { border-color: var(--blue); }
.footer-social svg { width: 16px; height: 16px; fill: rgba(255,255,255,.5); transition: fill .2s; }
.footer-social a:hover svg { fill: var(--blue); }
.footer-bottom { width: 100%; display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--line); font-size: 13px; color: rgba(255,255,255,.22); }
.footer-sr-logo { max-height: 28px; object-fit: contain; filter: brightness(0) invert(1); opacity: .4; transition: opacity .2s; }
.footer-sr-logo:hover { opacity: .75; }

/* ── WHATSAPP FLOAT ── */
.wa-float { position: fixed; bottom: 32px; right: 32px; z-index: 999; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 24px rgba(37,211,102,.4); transition: transform .2s; text-decoration: none; }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .wrap { padding: 0 24px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero h1 { font-size: 56px; }
  .hero-sub { font-size: 17px; }
  .numeros-grid { grid-template-columns: repeat(2, 1fr); }
  .num-item { border-right: none; border-bottom: 1px solid var(--line); }
  .num-item:nth-child(odd) { border-right: 1px solid var(--line); }
  .dores-grid { grid-template-columns: 1fr; }
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .solucoes-grid { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 44px; }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: 1fr; }
  .depos-grid { grid-template-columns: 1fr; }
  .cta-inner h2 { font-size: 48px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: span 1; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 32px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 44px; }
  .num-value { font-size: 44px; }
  .case-resultado { font-size: 40px; }
  .espec-row { gap: 8px; }
  .espec-logo-box { min-width: 70px; height: 48px; }
}
