/* ============================
   LADY COBOL — Estilos
   ============================ */

:root {
  --pink: #FF6BAE;
  --pink-dark: #FF3D8B;
  --pink-light: #FFB3D1;
  --pink-bg: #FFF0F8;
  --purple: #9B59B6;
  --purple-dark: #7D3C98;
  --dark: #2C1A2E;
  --gray: #6B6B6B;
  --gray-light: #F5F5F5;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(255, 107, 174, 0.15);
  --shadow-hover: 0 8px 40px rgba(255, 107, 174, 0.28);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, svg { max-width: 100%; display: block; }

/* CONTAINER */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,107,174,0.12);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(255,107,174,0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  color: var(--dark);
}
.logo-dino { font-size: 1.5rem; }
.logo-text strong { color: var(--pink); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--pink); }
.btn-nav {
  background: var(--pink) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600 !important;
}
.btn-nav:hover { background: var(--pink-dark) !important; transform: translateY(-1px); }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================
   BOTÕES
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255,107,174,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,107,174,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
}
.btn-outline:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================
   HERO
   ============================ */
.hero {
  background: linear-gradient(135deg, var(--pink-bg) 0%, #F5E6FF 100%);
  padding: 130px 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,174,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 80px;
}
.badge {
  display: inline-block;
  background: rgba(255,107,174,0.15);
  color: var(--pink-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255,107,174,0.25);
}
.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--dark);
}
.highlight {
  color: var(--pink);
  position: relative;
}
.highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink-light), var(--pink));
  border-radius: 2px;
  opacity: 0.4;
}
.hero-text p {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 32px;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat strong {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--pink);
  line-height: 1;
}
.stat span {
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 500;
}

/* DINO */
.hero-dino {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: transparent;
}
.dino-wrapper {
  position: relative;
  animation: float 3s ease-in-out infinite;
  background: transparent;
  will-change: auto;
}
.dino-frame {
  width: 320px;
  background: transparent;
}
.dino-img {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}
.dino-bubble {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--white);
  border: 2px solid var(--pink-light);
  border-radius: 18px 18px 18px 4px;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pink-dark);
  white-space: nowrap;
  box-shadow: var(--shadow);
  animation: bubble 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -12px; }
}
@keyframes bubble {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

.hero-wave {
  margin-top: -2px;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 60px; }

/* ============================
   SECTION HEADER
   ============================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: rgba(255,107,174,0.1);
  color: var(--pink-dark);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}
.section-header p {
  color: var(--gray);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ============================
   SOBRE
   ============================ */
.sobre {
  padding: 96px 0;
  background: var(--white);
}
.sobre-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
  background: var(--pink-bg);
  border: 1px solid rgba(255,107,174,0.15);
  border-radius: var(--radius);
  padding: 48px;
}
.sobre-avatar {
  font-size: 5rem;
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}
.sobre-text p {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}
.sobre-text p strong { color: var(--dark); }
.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.skill-tag {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ============================
   TRILHAS
   ============================ */
.trilhas {
  padding: 96px 0;
  background: var(--gray-light);
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(255,107,174,0.1);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--pink-light);
}
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.card-topics {
  margin-bottom: 20px;
}
.card-topics li {
  font-size: 0.83rem;
  color: var(--gray);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.card-topics li::before {
  content: '✦';
  color: var(--pink);
  position: absolute;
  left: 0;
  font-size: 0.6rem;
  top: 6px;
}
.card-link {
  color: var(--pink);
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
}
.card-link:hover { color: var(--pink-dark); letter-spacing: 0.02em; }

/* ============================
   MODERNIZAÇÃO
   ============================ */
.modernizacao {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #4A1942 100%);
  color: var(--white);
}
.modernizacao .section-tag {
  background: rgba(255,107,174,0.2);
  color: var(--pink-light);
}
.modernizacao .section-header h2 { color: var(--white); }
.modernizacao .section-header p { color: rgba(255,255,255,0.65); }
.moderno-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.moderno-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,107,174,0.2);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
}
.moderno-card:hover {
  background: rgba(255,107,174,0.12);
  border-color: var(--pink);
  transform: translateY(-4px);
}
.moderno-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 16px;
}
.moderno-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--pink-light);
}
.moderno-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ============================
   REDES SOCIAIS
   ============================ */
.redes {
  padding: 96px 0;
  background: var(--white);
}
.redes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.rede-card {
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
  display: block;
}
.rede-card i {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}
.rede-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.rede-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.8;
}
.rede-action {
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0.9;
}
.rede-linkedin {
  background: #EBF5FB;
  color: #0A66C2;
}
.rede-linkedin:hover {
  background: #0A66C2;
  color: white;
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(10,102,194,0.3);
}
.rede-instagram {
  background: #FEF0F8;
  color: #E1306C;
}
.rede-instagram:hover {
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45);
  color: white;
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(225,48,108,0.3);
}
.rede-youtube {
  background: #FEF0F0;
  color: #FF0000;
}
.rede-youtube:hover {
  background: #FF0000;
  color: white;
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(255,0,0,0.25);
}

/* ============================
   CONTATO
   ============================ */
.contato {
  padding: 96px 0;
  background: var(--pink-bg);
}
.contato-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.contato-dino {
  font-size: 3.5rem;
  margin-bottom: 20px;
}
.contato-inner h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.contato-inner p {
  color: var(--gray);
  margin-bottom: 36px;
}
.contato-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contato-form input,
.contato-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(255,107,174,0.2);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.contato-form input:focus,
.contato-form textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(255,107,174,0.1);
}
.contato-form textarea { resize: vertical; }
.contato-form .btn { align-self: center; }

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--dark);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 1.1rem;
}
.footer-logo .logo-text strong { color: var(--pink); }
.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-links {
  display: flex;
  gap: 16px;
}
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--pink); }

/* ============================
   RESPONSIVO
   ============================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-dino { order: -1; }
  .hero-text p { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-dino { padding-bottom: 0; }
  .sobre-card { grid-template-columns: 1fr; text-align: center; }
  .sobre-avatar { margin: 0 auto; }
  .redes-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-top: 1px solid rgba(255,107,174,0.1);
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .moderno-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .moderno-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
}

/* ============================
   TRILHA HERO (páginas de trilha)
   ============================ */
.trilha-hero {
  padding: 110px 0 56px;
  color: var(--white);
}
.trilha-hero-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.trilha-icon-big {
  font-size: 5rem;
  flex-shrink: 0;
}
.trilha-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--white);
}
.trilha-subtitle {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 16px;
  line-height: 1.6;
}
.trilha-hero .badge {
  background: rgba(255,255,255,0.18);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.trilha-articles {
  padding: 56px 0 96px;
  background: var(--gray-light);
}
.trilha-articles .articles-list {
  display: flex;
  flex-direction: column;
}
.article-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(255,107,174,0.12);
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  margin-bottom: 12px;
}
.article-card:last-child { margin-bottom: 0; }
.article-card:hover {
  border-color: var(--pink);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}
.article-card .article-num {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--pink);
  background: rgba(255,107,174,0.1);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.article-card .article-info h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}
.article-card .article-info p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 10px;
}
.article-level {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 50px;
  margin-right: 4px;
}
.level-init { background: #DCFCE7; color: #166534; }
.level-inter { background: #FEF9C3; color: #854D0E; }
.level-avan { background: #F3E8FF; color: #6B21A8; }
.badge-new {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 50px;
}
@media (max-width: 600px) {
  .trilha-hero-inner { flex-direction: column; text-align: center; }
  .trilha-icon-big { font-size: 3.5rem; }
}

/* Botão voltar ao topo */
#backToTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  border: none;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255,107,174,0.4);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 999;
}
#backToTop.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#backToTop:hover {
  background: var(--pink-dark);
  box-shadow: 0 6px 24px rgba(255,107,174,0.5);
}

/* ============================
   SEARCH OVERLAY
   ============================ */
.lcs-nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray);
  font-size: 1rem;
  padding: 6px 8px;
  border-radius: 8px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  margin-left: 8px;
}
.lcs-nav-btn:hover { color: var(--pink); background: rgba(255,107,174,0.08); }

.lcs-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,10,25,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 16px 0;
}
.lcs-overlay.lcs-open { display: flex; }

.lcs-modal {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 620px;
  max-height: 76vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(0,0,0,0.32);
  overflow: hidden;
}

.lcs-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,107,174,0.15);
  flex-shrink: 0;
}
.lcs-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}
.lcs-icon { color: var(--pink); font-size: 1rem; }
#lcSearchInput {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: transparent;
}
#lcSearchInput::placeholder { color: #bbb; }
#lcSearchInput::-webkit-search-cancel-button { display: none; }

.lcs-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--gray);
  padding: 5px 9px;
  border-radius: 8px;
  transition: var(--transition);
  line-height: 1;
  flex-shrink: 0;
}
.lcs-close:hover { color: var(--pink); background: rgba(255,107,174,0.08); }

.lcs-results {
  overflow-y: auto;
  padding: 16px 20px 20px;
  flex: 1;
}
.lcs-hint, .lcs-no-results {
  color: var(--gray);
  font-size: 0.88rem;
  text-align: center;
  padding: 28px 0;
}

.lcs-trail-group { margin-bottom: 18px; }
.lcs-trail-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--pink);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 4px;
}

.lcs-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
  margin-bottom: 2px;
}
.lcs-result-item:hover {
  background: rgba(255,107,174,0.08);
}

.lcs-result-num {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--pink);
  background: rgba(255,107,174,0.1);
  border-radius: 7px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lcs-result-body { flex: 1; min-width: 0; }
.lcs-result-title {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lcs-result-desc {
  font-size: 0.76rem;
  color: var(--gray);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lcs-result-arrow {
  color: var(--pink);
  font-size: 0.8rem;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.15s;
}
.lcs-result-item:hover .lcs-result-arrow { opacity: 1; }

mark {
  background: rgba(255,107,174,0.22);
  color: inherit;
  border-radius: 3px;
  padding: 0 1px;
  font-style: normal;
}

@media (max-width: 640px) {
  .lcs-overlay { padding-top: 60px; }
  .lcs-result-title { font-size: 0.82rem; }
  .lcs-result-desc { display: none; }
}
