/* ==========================================================================
   Diwa Play - APK directory
   Layout and design replicated from the reference site (appyn-style theme).
   Accent #cc1ca8 . shell #1d222d . page #e6e9ef . cards #fff . gold #FFD700
   ========================================================================== */

:root {
  --accent:      #cc1ca8;
  --accent-dark: #41495d;
  --shell:       #1d222d;
  --page:        #e6e9ef;
  --card:        #fff;
  --text:        #4c4c4c;
  --muted:       #a7a7a7;
  --label:       #ababab;
  --line:        #eaeaea;
  --grey:        #f2f2f2;
  --gold:        #FFD700;
  --star:        #f9bd00;
  --star-track:  #d4dae2;
  --shadow:      2px 2px 2px 0 #e3e3e3;
  --radius:      20px;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  background: var(--page);
  margin: 0;
  padding-top: 60px;             /* fixed header */
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; }
button, input { font-family: inherit; }

.container { width: 100%; margin: auto; position: relative; padding: 0 10px; }
.clear { clear: both; }

:where(a, button, input, [tabindex]):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100000;
  background: var(--accent); color: #fff; padding: 10px 18px; }
.skip-link:focus { left: 0; }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;
}

/* ---------------------------------------------------------------- header -- */
#header {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 100%; height: 60px;
  background: var(--shell);
  border-bottom: 2px solid var(--accent);
}
#header .container {
  display: flex; justify-content: space-between; align-items: center; height: 60px;
}
#header .logo { margin-right: 30px; flex: none; }
#header .logo a { display: block; }
#header .logo img { display: block; height: 40px; width: 40px; border-radius: 8px; }
#header nav { margin-left: auto; flex: none; }
#header nav ul { display: flex; align-items: center; }
#header nav li { margin-right: 1px; position: relative; }
#header nav a {
  color: #fff; display: block; line-height: 35px; padding: 0 15px;
  font-size: 13px; font-weight: 600; border-radius: 3px;
  transition: background-color .2s ease-in-out, color .2s ease-in-out;
}
#header nav a:hover { background: var(--accent); text-decoration: none; }
#header nav li.current-menu-item a { background: var(--accent); color: #fff; }
.menu-open {
  display: none; background: none; border: 0; color: #fff; cursor: pointer;
  width: 42px; height: 48px; line-height: 48px; font-size: 26px; text-align: center;
}
.menu-open svg { margin: auto; }

/* --------------------------------------------------------------- hero ---- */
#subheader {
  padding: 40px 0; background: var(--shell); color: #fff;
  text-align: center; position: relative; overflow: hidden;
  border-bottom: 2px solid var(--accent); margin-bottom: 20px;
}
#subheader .imgbg { overflow: hidden; position: absolute; inset: 0; }
#subheader .imgbg img {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 120%; max-width: none; opacity: .3;
}
#subheader .subcontainer { position: relative; z-index: 2; padding: 0 20px; }
#subheader h1 {
  font-size: 40px; font-weight: 600; color: #fff;
  padding-bottom: 20px; margin: 0; line-height: 1.15;
}
#subheader h2 { font-size: 16px; font-weight: 300; color: #fff; margin: 0 0 20px; line-height: 30px; }

/* search box */
.searchBox { max-width: 100%; position: relative; }
#subheader .searchBox { width: 600px; margin: 0 auto 20px; }
.searchBox form { display: flex; position: relative; }
.sb_search {
  height: 44px; width: 100%; border: 0; background: var(--grey);
  border-radius: 50px; padding: 0 110px 0 20px; font-size: 16px; color: #43454b;
}
.sb_submit {
  position: absolute; right: 0; top: 0;
  width: 70px; height: 44px; border: 0; cursor: pointer;
  background: var(--accent); color: #fff; border-radius: 50px; font-size: 21px;
  display: flex; align-items: center; justify-content: center;
  transition: background-color .2s ease-in-out;
}
.sb_submit:hover { background: var(--accent-dark); }

/* social row */
ul.social { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
ul.social a {
  width: 40px; height: 40px; border-radius: 50%; color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .2s ease-in-out;
}
ul.social a:hover { opacity: .85; text-decoration: none; }
ul.social .facebook  { background: #3b5998; }
ul.social .twitter   { background: #000; }
ul.social .instagram { background: #d6249f; }
ul.social .youtube   { background: #f00; }
ul.social .pinterest { background: #c8232c; }
ul.social .telegram  { background: #08c; }

/* compact subheader used on inner pages */
#subheader.np {
  background: var(--card); color: var(--text); border-bottom: 0;
  padding: 15px 25px; margin-top: 0; margin-bottom: 20px;
  border-radius: 0 0 var(--radius) var(--radius); box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 15px; overflow: visible;
}
#subheader.np .searchBox { flex: 1; }
#subheader.np ul.social { flex: none; }

/* --------------------------------------------------------------- layout -- */
#main-site { display: block; }
#main-site .container.with-sidebar { display: flex; align-items: flex-start; }
.sections, .app-s { width: calc(100% - 320px); min-width: 0; }
.full .sections, .full .app-s { width: 100%; }
#sidebar { width: 300px; margin-left: 20px; flex: none; }

/* ---------------------------------------------------------------- boxes -- */
.box {
  background: var(--card); padding: 20px 25px; margin-bottom: 20px;
  border-radius: var(--radius); box-shadow: var(--shadow); position: relative;
}
.box::after { content: ''; display: table; clear: both; }
.box .box-title {
  color: var(--label); font-size: 17px; font-weight: 700; text-transform: uppercase;
  margin: -20px 0 15px; padding: 15px 0; position: relative; display: block;
}
.box .box-title::before {
  content: ''; position: absolute; width: calc(100% + 50px);
  border-bottom: 1px solid var(--line); bottom: -.5px; left: -25px;
}
.box .box-title::after {
  content: ''; position: absolute; left: 0; bottom: -3px;
  width: 45px; height: 5px; background: var(--accent); border-radius: 1px;
}

/* --------------------------------------------------------------- section - */
.section { margin-bottom: 20px; }
.section .title-section {
  font-size: 22px; font-weight: 400; padding-bottom: 10px; margin: 3px 10px 10px;
  border-bottom: 1px solid var(--line); display: flex; align-items: center;
}
.section .title-section .more {
  margin-left: auto; font-size: 12px; font-weight: 600; color: var(--accent);
  text-transform: uppercase;
}

/* --------------------------------------------------------------- app card */
.baps { display: flex; flex-wrap: wrap; padding: 0 5px; }
.section .bav1 { width: 16.6667%; padding: 10px; text-align: center; flex: none; }
.section .bav1 a {
  position: relative; display: block; padding: 15px; background: var(--card);
  border-bottom: 2px solid var(--accent); border-radius: var(--radius);
  box-shadow: var(--shadow); height: 100%;
  transition: box-shadow .2s ease-in-out;
}
.section .bav1 a:hover { text-decoration: none; box-shadow: 0 4px 14px rgba(0,0,0,.16); }
.bloque-imagen { display: block; }
.bav1 .bloque-imagen {
  display: block; padding-bottom: 100%; position: relative; overflow: hidden;
  border-radius: var(--radius); background: #eee;
}
.bav1 .bloque-imagen picture { position: absolute; inset: 0; display: block; }
.bav1 .bloque-imagen img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.bav .title {
  height: 20px; margin: 8px 0 4px; font-weight: 600; font-size: 14px; color: #444;
  display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.section .bav1 a:hover .title { color: var(--accent); }
.bav .version, .bav .developer, .bav .size, .bav .app-date {
  color: var(--muted); font-size: 12px; display: block;
  white-space: nowrap; text-overflow: ellipsis; overflow: hidden;
}
.bav .px-postmeta { display: block; margin-top: 5px; }
.bav .px-postmeta .box-rating { display: flex; justify-content: center; }
.bav1 .box-rating .rating { margin: 0 auto; }

/* rating stars */
.box-rating { position: relative; }
.rating {
  display: block; height: 14px; width: 70px; background-color: var(--star-track);
  mask-image: url(/assets/img/star.svg); mask-size: 14px; mask-repeat: repeat-x;
  -webkit-mask-image: url(/assets/img/star.svg); -webkit-mask-size: 14px;
  -webkit-mask-repeat: repeat-x;
}
.rating .stars { display: block; height: 14px; max-width: 100%; background-color: var(--star); }
.rating-average { display: inline-block; vertical-align: middle; margin-left: 6px; font-size: 13px; }
.rating-average b { font-size: 19px; color: var(--accent); }
.rating-text { display: block; text-align: center; font-weight: 600; margin-top: 2px; }

/* horizontal card (carousel + sidebar) */
.bav2 > a {
  background: var(--card); overflow: hidden; border-bottom: 2px solid var(--accent);
  padding: 10px; display: flex; position: relative; border-radius: var(--radius);
  width: 100%; box-shadow: var(--shadow);
}
.bav2 > a:hover { text-decoration: none; }
.bav2 .bloque-imagen {
  display: block; width: 65px; height: 65px; margin-right: 10px; flex: none;
  overflow: hidden; border-radius: 12px;
}
.bav2 .bloque-imagen picture { display: block; width: 100%; height: 100%; }
.bav2 .bloque-imagen img { width: 100%; height: 100%; object-fit: cover; }
.bav2 .bap-c { display: block; min-width: 0; text-align: left; }
.bav2 .title { margin-top: 0; }
.bav2 .box-rating { width: 75px; margin-top: 3px; }

/* carousel */
.px-carousel { position: relative; margin-top: 20px; }
.px-carousel-wrapper { overflow: hidden; }
.px-carousel-container {
  display: flex; gap: 10px; transition: transform .35s ease;
  padding: 0 10px 4px;
}
.px-carousel-item { flex: 0 0 calc(25% - 8px); min-width: 0; }
.px-carousel-nav button {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 30px; height: 30px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.9); color: #777; box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
}
.px-carousel-nav .px-prev { left: -4px; }
.px-carousel-nav .px-next { right: -4px; }
.px-carousel-nav button:hover { color: #444; }
.px-carousel-nav button[disabled] { opacity: .35; cursor: default; }

/* --------------------------------------------------------- app detail --- */
#breadcrumbs { display: block; overflow: hidden; margin-bottom: 6px; }
#breadcrumbs li { float: left; margin-right: 5px; list-style: none; }
#breadcrumbs, #breadcrumbs a { color: #c6c6c6; }
#breadcrumbs a:hover { color: #000; }

/* two-column app header: 150px icon rail on the left, details on the right */
.app-head { display: flex; align-items: flex-start; gap: 20px; }
.app-head .app-side { width: 150px; flex: none; order: -1; }
.app-head .box-data-app { clear: both; }
.app-head .app-main { flex: 1; min-width: 0; }
.app-s .image-single {
  display: block; width: 100%; padding-bottom: 100%;
  background-size: cover; background-position: center; border-radius: 25px;
}
.app-side .box-rating { text-align: center; margin-top: 6px; }
.app-side .rating { margin: 7px auto 0; }
.main-box-title {
  font-size: 38px; font-weight: 700; color: var(--text);
  display: inline-block; vertical-align: middle; margin-right: 8px; line-height: 1.2;
}
.app-spe .version {
  display: inline-block; vertical-align: middle;
  font-size: 20px; color: #bbb; font-weight: 600;
}
.meta-cats { margin: 10px 0 6px; display: inline-block; }
.meta-cats ul { display: flex; flex-wrap: wrap; gap: 5px; }
.meta-cats a {
  background: var(--accent); color: #fff; font-size: 12px; font-weight: 600;
  border-radius: var(--radius); padding: 2px 10px 3px; display: inline-block;
  transition: background-color .2s ease-in-out;
}
.meta-cats a:hover { background: var(--accent-dark); text-decoration: none; }
.descripcion { text-align: justify; margin: 14px 0 6px; line-height: 21px; }

.buttond {
  width: 100%; display: block; text-align: center; margin-top: 10px;
  padding: 8px 5px 8px 38px; position: relative; overflow: hidden;
  background: var(--accent); color: #fff; font-size: 12px; font-weight: 700;
  text-transform: uppercase; border-radius: var(--radius); cursor: pointer;
  transition: background-color .2s ease-in-out;
}
.buttond:hover { background: var(--accent-dark); color: #fff; text-decoration: none; }
.buttond i {
  position: absolute; left: 0; top: 0; height: 100%; width: 33px;
  background: rgba(0,0,0,.1); display: flex; align-items: center; justify-content: center;
}
.link-report {
  text-align: center; margin-top: 8px; color: var(--muted); font-size: 12px;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}

.box-data-app { clear: both; }
.data-app { display: flex; flex-wrap: wrap; width: 100%; margin-bottom: 15px; max-width: 700px; }
.da-s { margin-top: 8px; padding-right: 10px; width: 33.3333%; }
.da-s b { font-weight: 600; color: #444; }
.da-s a { color: var(--accent); }

.botones_sociales { margin: 0 -5px; display: flex; flex-wrap: wrap; clear: both; }
.botones_sociales li { margin: 5px 5px 0; flex: none; width: 104px; }
.botones_sociales a {
  background: var(--grey); color: #6b6b6b; font-size: 11px; min-height: 31px;
  border-radius: var(--radius); padding: 0 17px 0 5px;
  display: flex; align-items: center; text-decoration: none;
  transition: background-color .2s ease-in-out, color .2s ease-in-out;
}
.botones_sociales li i { width: 20px; margin: 0 7px; text-align: center; display: flex; justify-content: center; }
.botones_sociales .facebook:hover  { background: #4864a0; color: #fff; }
.botones_sociales .twitter:hover   { background: #1da1f2; color: #fff; }
.botones_sociales .pinterest:hover { background: #c8232c; color: #fff; }
.botones_sociales .telegram:hover  { background: #08c;    color: #fff; }
.botones_sociales .whatsapp:hover  { background: #25d366; color: #fff; }

/* article body */
.entry { font-weight: 400; font-size: 14px; color: var(--text); line-height: 25px; }
.entry p { margin: 0 0 15px; }
.entry h2 { font-size: 22px; font-weight: 600; color: #444; margin: 22px 0 10px; }
.entry h3 { font-size: 17px; font-weight: 600; color: #444; margin: 18px 0 8px; }
.entry > :first-child { margin-top: 0; }
.entry b, .entry strong { font-weight: 600; color: #444; }
.entry a { color: var(--accent); }
.entry ul, .entry ol { margin: 0 0 15px; padding-left: 20px; }
.entry ul li { list-style: disc; }
.entry ol li { list-style: decimal; }
.entry li { margin-bottom: 6px; }
.entry .table-wrap { overflow-x: auto; margin-bottom: 15px; }
.entry table { width: 100%; border-collapse: collapse; min-width: 560px; }
.entry th, .entry td { padding: 8px 12px; border: 1px solid var(--line); text-align: left; }
.entry th { background: var(--grey); font-weight: 600; color: #444; }

/* download links */
#list-downloadlinks li { margin-bottom: 8px; }
.bx-info-install {
  background: #f8f8f8; border-radius: 10px; padding: 15px;
  margin-top: 15px; font-size: 13px; line-height: 22px;
}
.bx-info-install p { margin: 0 0 6px; }
.bx-info-install p:last-child { margin-bottom: 0; }

/* related / developer apps */
.rlat .baps { margin: 0 -10px; padding: 0; }
.rlat .bav1 { width: 12.5%; padding: 10px; text-align: center; flex: none; }
.rlat .bav1 a { display: block; }
.rlat .bav1 a:hover { text-decoration: none; }
.rlat .bav1 a:hover .title { color: var(--accent); }
.rlat .bloque-imagen {
  display: block; padding-bottom: 100%; position: relative; overflow: hidden; border-radius: var(--radius);
}
.rlat .bloque-imagen picture { position: absolute; inset: 0; display: block; }
.rlat .bloque-imagen img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* --------------------------------------------------------------- sidebar - */
.widget {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  margin-bottom: 20px; padding: 0 10px 10px;
}
.widget .widget-title {
  font-size: 16px; font-weight: 600; color: var(--text);
  text-transform: uppercase; padding: 10px; margin: 0;
  border-bottom: 1px solid var(--line);
}
.widget .widget-content { padding-top: 10px; }
.widget .widget-content > ul > li { margin-bottom: 10px; }
.widget .widget-content > ul > li:last-child { margin-bottom: 0; }
.widget ul li a { color: #000; }
.widget ul li a:hover { color: var(--accent); }
.widget .bav2 > a { display: flex; box-shadow: none; border-bottom: 1px solid var(--line); border-radius: 10px; }
.widget .bav2 > a:hover { background: #fafafa; }
.widget .bav2 .box-rating { display: none; }
.widget-search { padding: 10px; }
.widget-search form { display: flex; gap: 6px; }
.widget-search input[type=search] {
  flex: 1; min-width: 0; height: 34px; border: 1px solid #e3e3e3;
  border-radius: var(--radius); padding: 0 12px; font-size: 13px; background: #f8f8f8;
}
.widget-search button {
  border: 0; background: var(--accent); color: #fff; border-radius: var(--radius);
  padding: 0 16px; height: 34px; font-size: 12px; font-weight: 600; cursor: pointer;
  transition: background-color .2s ease-in-out;
}
.widget-search button:hover { background: var(--accent-dark); }
.widget .cat-list li { border-bottom: 1px solid var(--line); }
.widget .cat-list li:last-child { border-bottom: 0; }
.widget .cat-list a { display: block; padding: 8px 10px; font-size: 13px; }

/* ------------------------------------------------------------- promo card */
.promo-card {
  background: #0a0a0a; border: 3px solid var(--gold); border-radius: 25px;
  padding: 18px; text-align: center; max-width: 520px; margin: 20px auto;
  box-shadow: 0 0 25px rgba(255,215,0,.8);
}
.promo-card img {
  width: 100%; max-width: 240px; margin: 0 auto; border-radius: var(--radius);
  border: 3px solid var(--gold); box-shadow: 0 0 18px var(--gold);
}
.promo-card h2 {
  color: var(--gold); font-size: 30px; margin-top: 18px; line-height: 38px;
  text-shadow: 0 0 10px var(--gold);
}
.promo-card p { color: #fff; font-size: 16px; line-height: 28px; margin: 10px 0 0; padding: 0 10px; }
.promo-card .promo-btn {
  display: inline-block; margin-top: 18px;
  background: linear-gradient(45deg, var(--gold), #FF8C00);
  padding: 15px 35px; color: #000; font-size: 18px; font-weight: 700;
  border-radius: 50px; box-shadow: 0 0 18px var(--gold);
}
.promo-card .promo-btn:hover { text-decoration: none; filter: brightness(1.06); }

/* ---------------------------------------------------------------- footer - */
#footer {
  clear: both; background: var(--shell); color: #fff;
  border-top: 2px solid var(--accent); overflow: hidden;
}
.footer-bottom { padding: 15px 10px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer-bottom h2 { color: var(--gold); font-size: 28px; margin-bottom: 10px; text-shadow: 0 0 10px var(--gold); }
.footer-bottom .f-lede { color: #fff; font-size: 15px; line-height: 28px; max-width: 700px; margin: auto; }
.footer-links { margin-top: 6px; }
.footer-links a {
  display: inline-block; margin: 6px; padding: 10px 20px;
  background: #111; color: var(--gold); border: 1px solid var(--gold);
  border-radius: 40px; font-size: 13px;
}
.footer-links a:hover { background: #1c1c1c; text-decoration: none; }
.footer-note { margin-top: 30px; color: #999; font-size: 13px; line-height: 24px; max-width: 900px; }
.footer-copy { color: var(--gold); font-size: 14px; margin: 10px 0 0; }
.footer-disclaimer {
  background: #14151c; border-left: 4px solid var(--gold);
  padding: 18px 20px; margin: 20px auto 0; max-width: 1100px;
  font-size: 13px; line-height: 24px; color: #cfcfcf; text-align: left; border-radius: 6px;
}
.footer-disclaimer b { color: var(--gold); }
.footer-disclaimer .age { color: #ffcc00; font-weight: 600; }
.footer-disclaimer p { margin: 0 0 10px; }
.footer-disclaimer p:last-child { margin-bottom: 0; }

#backtotop {
  position: fixed; right: 20px; bottom: 20px; z-index: 999;
  width: 40px; height: 40px; border: 0; border-radius: 50%; cursor: pointer;
  background: var(--accent); color: #fff; text-align: center;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s, background-color .2s;
}
#backtotop.show { opacity: 1; visibility: visible; }
#backtotop:hover { background: var(--accent-dark); }

/* mobile slide-out menu */
#menu-mobile {
  position: fixed; top: 60px; right: 0; bottom: 0; width: 250px; z-index: 9998;
  background: #fff; box-shadow: inset 2px 0 4px 0 #e3e3e3;
  transform: translateX(100%); transition: transform .25s ease; overflow-y: auto;
}
#menu-mobile.active { transform: none; }
#menu-mobile li a { display: block; color: #444; padding: 12px 20px; border-bottom: 1px solid var(--line); font-size: 14px; }
#menu-mobile li a:hover { background: var(--accent); color: #fff; text-decoration: none; }
.menu-backdrop {
  position: fixed; inset: 60px 0 0; background: rgba(0,0,0,.4); z-index: 9997;
  opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s;
}
.menu-backdrop.active { opacity: 1; visibility: visible; }

/* --------------------------------------------------------------- 404/search */
.searchinfo { font-size: 14px; color: #777; margin: 0 10px 10px; }

/* ------------------------------------------------------------ responsive - */
@media (max-width: 1400px) { .rlat .bav1 { width: 16.6667%; } }
@media (max-width: 1200px) {
  .section .bav1 { width: 20%; }
  .px-carousel-item { flex-basis: calc(33.333% - 7px); }
}
@media (max-width: 1100px) {
  .section .bav1 { width: 25%; }
  .rlat .bav1 { width: 20%; }
}
@media (max-width: 950px) {
  #main-site .container.with-sidebar { flex-direction: column; }
  .sections, .app-s { width: 100%; }
  #sidebar { width: 100%; margin: 0; }
  .box { padding-left: 15px; padding-right: 15px; }
  .box .box-title::before { width: calc(100% + 30px); left: -15px; }
  .px-carousel-item { flex-basis: calc(50% - 5px); }
}
@media (max-width: 900px) {
  #header nav ul.desktop { display: none; }
  .menu-open { display: flex; align-items: center; justify-content: center; }
  #subheader h1 { font-size: 30px; }
  .section .bav1 { width: 33.3333%; }
  .rlat .bav1 { width: 25%; }
}
@media (max-width: 768px) {
  #subheader.np { flex-direction: column; align-items: stretch; padding: 12px 15px; }
  #subheader.np ul.social { display: none; }
  #subheader .searchBox { width: 100%; }
  .da-s { width: 50%; }
  .rlat .bav1 { width: 33.3333%; }
}
@media (max-width: 650px) {
  .app-head { flex-direction: column; align-items: center; text-align: center; }
  .app-head .app-side { order: -1; margin: 0 auto 10px; }
  .app-head .app-main { width: 100%; }
  .app-head .descripcion { text-align: left; }
  .app-head .data-app { justify-content: flex-start; text-align: left; }
  .app-head #breadcrumbs { float: none; display: flex; justify-content: center; }
  .app-head .meta-cats ul { justify-content: center; }
  .app-head .botones_sociales { justify-content: center; }
  .main-box-title { font-size: 28px; }
  .section .bav1 { width: 50%; }
  .rlat .baps { display: flex; overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; }
  .rlat .baps::-webkit-scrollbar { display: none; }
  .rlat .bav1 { width: 130px; flex: 0 0 130px; }
  .promo-card h2 { font-size: 24px; line-height: 32px; }
}
@media (max-width: 500px) {
  #subheader h1 { font-size: 25px; }
  .da-s { width: 100%; }
  .botones_sociales li { width: calc(50% - 10px); }
  .sb_search { padding-right: 84px; font-size: 15px; }
  .sb_submit { width: 56px; }
}
@media (max-width: 380px) { .section .bav1 { width: 100%; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important; transition-duration: .01ms !important;
  }
  .px-carousel-container { transition: none; }
}
@media print {
  #header, #subheader, #sidebar, #footer, #backtotop, .botones_sociales { display: none !important; }
  body { background: #fff; padding-top: 0; }
}
