:root {
  --bg: #f6f8fb;
  --surface: #ffffff;

  --text: #152d4f;
  --muted: #66758a;

  --line: #dce4ed;

  --primary: #FF6600;
  --primary-hover: #E65C00;

  --download: #13bd91;
  --download-hover: #0eaa80;

  --danger: #dc2626;
  --danger-dark: #b91c1c;
  --danger-soft: #fff1f2;

  --shadow:
    0 8px 24px rgba(23, 44, 72, 0.05);

  --modal-shadow:
    0 30px 80px rgba(15, 23, 42, 0.25);
}


* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  margin: 0;

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  background: var(--bg);

  color: var(--text);
}


body.modal-open {
  overflow: hidden;
}



/* =====================================================
   TOPBAR
===================================================== */

.topbar {
  background: #fff;

  border-bottom:
    1px solid var(--line);
}


.topbar-inner {
  width:
    min(1040px,
      calc(100% - 32px));

  margin:
    0 auto;

  padding:
    14px 0 17px;

  text-align:
    center;
}


.supported-title {
  margin-bottom:
    9px;

  font-size:
    14px;

  font-weight:
    700;

  letter-spacing:
    .04em;

  color:
    #5e6f85;
}


.platforms {
  display:
    flex;

  justify-content:
    center;

  align-items:
    center;

  gap:
    22px;
}


.platform-icon {
  width:
    34px;

  height:
    34px;

  display:
    inline-flex;

  align-items:
    center;

  justify-content:
    center;

  border-radius:
    9px;

  transition:
    transform .18s ease,
    background .18s ease;
}


.platform-icon:hover {
  transform:
    translateY(-2px);

  background:
    #f4f7fb;
}


.platform-icon svg {
  width:
    27px;

  height:
    27px;

  display:
    block;
}


.youtube svg {
  width:
    31px;
}



/* =====================================================
   HERO
===================================================== */

.hero {
  background:
    #fff;

  border-bottom:
    1px solid var(--line);
}


.hero-inner {
  width:
    min(1040px,
      calc(100% - 32px));

  margin:
    0 auto;

  padding:
    52px 0 48px;

  text-align:
    center;
}


h1 {
  margin:
    0;

  font-size:
    clamp(32px,
      5vw,
      44px);

  line-height:
    1.1;

  letter-spacing:
    -.025em;
}


.subtitle {
  margin:
    18px 0 34px;

  font-size:
    18px;

  color:
    var(--muted);
}



/* =====================================================
   SEARCH
===================================================== */

.search-form {
  display:
    flex;

  max-width:
    900px;

  margin:
    0 auto;

  border:
    1px solid var(--line);

  border-radius:
    11px;

  overflow:
    hidden;

  box-shadow:
    var(--shadow);

  background:
    #fff;
}


.search-form input {
  flex:
    1;

  min-width:
    0;

  border:
    0;

  outline:
    0;

  padding:
    18px 20px;

  font-size:
    16px;

  color:
    var(--text);
}


.search-form input::placeholder {
  color:
    #94a3b8;
}


.search-form:focus-within {
  border-color:
    #a5b4fc;

  box-shadow:
    0 0 0 4px rgba(79,
      70,
      229,
      .08);
}


.search-form button {
  border:
    0;

  padding:
    0 30px;

  background:
    var(--primary);

  color:
    #fff;

  font-size:
    17px;

  font-weight:
    750;

  cursor:
    pointer;

  transition:
    background .18s ease,
    transform .18s ease;
}


.search-form button:hover {
  background:
    var(--primary-hover);
}


.search-form button:active {
  transform:
    scale(.98);
}


.search-form button:disabled {
  opacity:
    .7;

  cursor:
    wait;
}



/* =====================================================
   CONTENT
===================================================== */

.content {
  width:
    min(1040px,
      calc(100% - 32px));

  margin:
    0 auto;

  padding:
    38px 0 80px;
}


.message {
  min-height:
    24px;

  margin-bottom:
    14px;

  text-align:
    center;

  color:
    var(--muted);
}


.message.error {
  color:
    var(--danger);
}


.results {
  display:
    grid;

  gap:
    24px;
}



/* =====================================================
   VIDEO CARD
===================================================== */

.video-card {
  display:
    grid;

  grid-template-columns:
    175px minmax(0, 1fr);

  gap:
    25px;

  align-items:
    center;

  min-height:
    155px;

  padding:
    20px;

  border:
    1px solid var(--line);

  border-radius:
    17px;

  background:
    var(--surface);

  box-shadow:
    var(--shadow);
}


.video-thumb {
  width:
    175px;

  height:
    112px;

  overflow:
    hidden;

  border-radius:
    10px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  background:
    #e5ebf2;

  color:
    #62758c;

  font-size:
    13px;
}


.video-thumb img {
  width:
    100%;

  height:
    100%;

  display:
    block;

  object-fit:
    cover;
}


.video-body {
  min-width:
    0;
}


.video-body h3 {
  margin:
    0 0 17px;

  font-size:
    20px;

  line-height:
    1.25;

  overflow-wrap:
    anywhere;
}


.video-controls {
  display:
    flex;

  align-items:
    center;

  gap:
    12px;

  flex-wrap:
    wrap;
}


.quality-select {
  min-width:
    150px;

  height:
    52px;

  padding:
    0 14px;

  border:
    1px solid #cbd6e2;

  border-radius:
    8px;

  background:
    #fff;

  font-size:
    17px;

  cursor:
    pointer;
}


.download-button {
  height:
    52px;

  padding:
    0 23px;

  border:
    1px solid #087b63;

  border-radius:
    8px;

  background:
    var(--download);

  color:
    #fff;

  font-size:
    17px;

  font-weight:
    750;

  cursor:
    pointer;
}


.download-button:hover {
  background:
    var(--download-hover);
}


.download-icon {
  margin-right:
    7px;

  font-size:
    22px;

  line-height:
    0;
}


.download-button:disabled {
  opacity:
    .72;

  cursor:
    wait;
}


.download-progress {
  margin-top:
    14px;

  padding:
    12px 14px;

  border:
    1px solid #dce4ed;

  border-radius:
    10px;

  background:
    #f8fafc;
}


.download-progress.hidden {
  display:
    none;
}


.download-progress-head {
  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    14px;

  margin-bottom:
    8px;

  font-size:
    13px;

  font-weight:
    750;
}


.download-progress-status {
  min-width:
    0;

  overflow:
    hidden;

  text-overflow:
    ellipsis;

  white-space:
    nowrap;
}


.download-progress-percent {
  flex:
    0 0 auto;

  color:
    var(--muted);

  font-variant-numeric:
    tabular-nums;
}


.download-progress-track {
  position:
    relative;

  height:
    9px;

  overflow:
    hidden;

  border-radius:
    999px;

  background:
    #e4eaf1;
}


.download-progress-fill {
  width:
    0;

  height:
    100%;

  border-radius:
    inherit;

  background:
    var(--download);

  transition:
    width .2s ease;
}


.download-progress-track.indeterminate .download-progress-fill {
  position:
    absolute;

  width:
    34% !important;

  animation:
    download-progress-slide 1.15s ease-in-out infinite;
}


.download-progress-meta {
  min-height:
    17px;

  margin-top:
    7px;

  color:
    var(--muted);

  font-size:
    12px;

  line-height:
    1.4;

  font-variant-numeric:
    tabular-nums;
}


.download-progress.completed .download-progress-fill {
  background:
    var(--download);
}


.download-progress.error .download-progress-fill {
  background:
    var(--danger);
}


.download-progress.error .download-progress-status {
  color:
    var(--danger);
}


@keyframes download-progress-slide {
  0% {
    left:
      -36%;
  }

  50% {
    left:
      42%;
  }

  100% {
    left:
      104%;
  }
}



/* =====================================================
   LOAD MORE
===================================================== */

.load-sentinel {
  min-height:
    70px;

  padding:
    28px 0 0;

  text-align:
    center;

  color:
    var(--muted);

  font-weight:
    650;
}


.load-sentinel.loading {
  opacity:
    .75;
}


.download-frame {
  display:
    none;

  width:
    0;

  height:
    0;

  border:
    0;
}



/* =====================================================
   SEO CONTENT
===================================================== */

.seo-content {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.seo-section {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.seo-section h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.25;
}

.seo-section p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.seo-section p + p {
  margin-top: 10px;
}

.seo-platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.seo-platform-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.seo-platform-links a:hover {
  border-color: #c7d2df;
  background: #f8fafc;
}

.seo-steps {
  margin: 14px 0 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}



/* =====================================================
   MODAL +18
===================================================== */

.adult-modal {
  position:
    fixed;

  inset:
    0;

  z-index:
    9999;

  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  padding:
    24px;

  background:
    rgba(15,
      23,
      42,
      .62);

  backdrop-filter:
    blur(8px);

  -webkit-backdrop-filter:
    blur(8px);

  opacity:
    1;

  visibility:
    visible;

  transition:
    opacity .22s ease,
    visibility .22s ease;
}


.adult-modal.hidden {
  opacity:
    0;

  visibility:
    hidden;

  pointer-events:
    none;
}


.adult-modal-box {
  position:
    relative;

  width:
    min(100%,
      470px);

  padding:
    34px 34px 30px;

  border:
    1px solid rgba(255,
      255,
      255,
      .8);

  border-radius:
    24px;

  background:
    rgba(255,
      255,
      255,
      .98);

  box-shadow:
    var(--modal-shadow);

  text-align:
    center;

  transform:
    translateY(0) scale(1);

  transition:
    transform .22s ease;
}


.adult-modal.hidden .adult-modal-box {
  transform:
    translateY(12px) scale(.97);
}


.adult-badge-wrap {
  width:
    90px;

  height:
    90px;

  margin:
    -4px auto 22px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  border-radius:
    50%;

  background:
    var(--danger-soft);
}


.adult-badge {
  width:
    70px;

  height:
    70px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  border:
    5px solid var(--danger);

  border-radius:
    50%;

  background:
    #fff;

  color:
    var(--danger);

  font-size:
    25px;

  font-weight:
    900;

  letter-spacing:
    -.03em;
}


.adult-modal-title {
  margin:
    0;

  color:
    #172033;

  font-size:
    27px;

  line-height:
    1.2;

  letter-spacing:
    -.02em;
}


.adult-modal-description {
  max-width:
    380px;

  margin:
    15px auto 0;

  color:
    #64748b;

  font-size:
    15.5px;

  line-height:
    1.6;
}


.adult-warning {
  display:
    flex;

  align-items:
    flex-start;

  gap:
    11px;

  margin:
    23px 0 0;

  padding:
    14px 15px;

  border:
    1px solid #fecdd3;

  border-radius:
    12px;

  background:
    #fff7f7;

  text-align:
    left;
}


.adult-warning-icon {
  flex:
    0 0 auto;

  width:
    26px;

  height:
    26px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  border-radius:
    50%;

  background:
    #fee2e2;

  color:
    var(--danger);

  font-size:
    14px;

  font-weight:
    900;
}


.adult-warning-text {
  margin:
    1px 0 0;

  color:
    #7f1d1d;

  font-size:
    13px;

  line-height:
    1.45;
}


.adult-actions {
  display:
    grid;

  grid-template-columns:
    1fr 1.45fr;

  gap:
    12px;

  margin-top:
    25px;
}


.adult-button {
  min-height:
    52px;

  padding:
    11px 16px;

  border-radius:
    10px;

  font-family:
    inherit;

  font-size:
    15px;

  font-weight:
    750;

  cursor:
    pointer;

  transition:
    background .18s ease,
    border-color .18s ease,
    transform .18s ease,
    box-shadow .18s ease;
}


.adult-button:active {
  transform:
    scale(.98);
}


.adult-cancel {
  border:
    1px solid #d7dee8;

  background:
    #fff;

  color:
    #526174;
}


.adult-cancel:hover {
  background:
    #f7f9fc;

  border-color:
    #c5cfdb;
}


.adult-confirm {
  border:
    1px solid var(--danger-dark);

  background:
    var(--danger);

  color:
    #fff;

  box-shadow:
    0 8px 18px rgba(220,
      38,
      38,
      .18);
}


.adult-confirm:hover {
  background:
    var(--danger-dark);

  box-shadow:
    0 10px 22px rgba(185,
      28,
      28,
      .22);
}


.adult-legal {
  margin:
    17px 0 0;

  color:
    #94a3b8;

  font-size:
    11.5px;

  line-height:
    1.45;
}



/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 720px) {

  .hero-inner {
    padding-top:
      36px;
  }


  .search-form {
    display:
      grid;
  }


  .search-form button {
    min-height:
      55px;
  }


  .video-card {
    grid-template-columns:
      1fr;
  }


  .video-thumb {
    width:
      100%;

    height:
      auto;

    aspect-ratio:
      16 / 9;
  }


  .video-body h3 {
    font-size:
      18px;
  }


  .quality-select,
  .download-button {
    flex:
      1;
  }


  .adult-modal {
    padding:
      18px;
  }


  .adult-modal-box {
    padding:
      28px 20px 22px;

    border-radius:
      20px;
  }


  .adult-badge-wrap {
    width:
      78px;

    height:
      78px;

    margin-bottom:
      18px;
  }


  .adult-badge {
    width:
      62px;

    height:
      62px;

    font-size:
      22px;
  }


  .adult-modal-title {
    font-size:
      23px;
  }


  .adult-actions {
    grid-template-columns:
      1fr;
  }


  .adult-confirm {
    order:
      -1;
  }
}


.platform-adult-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 30px;
  height: 30px;

  border: 2px solid #e63946;
  border-radius: 50%;

  color: #e63946;
  background: transparent;

  font-size: 11px;
  font-weight: 800;
  line-height: 1;

  cursor: default;

  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}






.platform-separator {
  width: 1px;
  height: 24px;
  background: #dddddd;
  margin: 0 12px;
}

.adult-platform-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* Botón 18+ */

.platform-adult-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 30px;
  height: 30px;

  padding: 0;

  border: 1.8px solid #ff334f;
  border-radius: 50%;

  background: transparent;
  color: #ff334f;

  font-size: 10px;
  font-weight: 800;
  line-height: 1;

  cursor: pointer;

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.platform-adult-badge:hover,
.platform-adult-badge[aria-expanded="true"] {
  background: #ff334f;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Ventanita */

.adult-platform-popover {
  position: absolute;

  top: calc(100% + 6px);
  right: -8px;

  width: 220px;
  padding: 12px;

  background: #ffffff;

  border: 1px solid #e5e7eb;
  border-radius: 12px;

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.12);

  z-index: 1000;
}

/* Triangulito superior */

.adult-platform-popover::before {
  content: "";

  position: absolute;

  top: -6px;
  right: 17px;

  width: 10px;
  height: 10px;

  background: #ffffff;

  border-left: 1px solid #e5e7eb;
  border-top: 1px solid #e5e7eb;

  transform: rotate(45deg);
}

.adult-popover-title {
  margin-bottom: 11px;

  color: #374151;

  font-size: 12px;
  font-weight: 700;
  text-align: left;
}

.adult-platform-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.adult-platform-list span {
  padding: 7px 8px;

  border-radius: 7px;

  background: #f5f5f5;

  color: #333333;

  font-size: 11px;
  font-weight: 600;
  text-align: center;
}

.adult-popover-footer {
  margin-top: 10px;

  color: #8a8a8a;

  font-size: 10px;
  text-align: center;
}


/* =====================================================
   SEO CARDS + FAQ
===================================================== */

.seo-section-intro {
  max-width: 760px;
  margin-bottom: 18px !important;
}

.seo-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.seo-feature-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid #e3e9f1;
  border-radius: 13px;
  background: #f8fafc;
}

.seo-feature-card h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.3;
}

.seo-feature-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.seo-step-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.seo-step-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 19px;
  border: 1px solid #e3e9f1;
  border-radius: 13px;
  background: #f8fafc;
}

.seo-step-number {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: #fff3eb;
  color: var(--primary);
  font-size: 18px;
  font-weight: 850;
}

.seo-step-copy h3 {
  margin: 1px 0 6px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.3;
}

.seo-step-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.seo-faq-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.seo-faq-item {
  overflow: hidden;
  border: 1px solid #e1e7ef;
  border-radius: 11px;
  background: #fff;
  transition:
    border-color .18s ease,
    box-shadow .18s ease;
}

.seo-faq-item[open] {
  border-color: #ccd7e5;
  box-shadow: 0 6px 18px rgba(23, 44, 72, .05);
}

.seo-faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 15px 48px 15px 17px;
  color: var(--text);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

.seo-faq-item summary::-webkit-details-marker {
  display: none;
}

.seo-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  color: #718096;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}

.seo-faq-item[open] summary::after {
  content: "−";
}

.seo-faq-item summary:hover {
  background: #f8fafc;
}

.seo-faq-answer {
  padding: 0 17px 17px;
}

.seo-faq-answer p {
  margin: 0;
  padding-top: 1px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 820px) {
  .seo-feature-grid {
    grid-template-columns: 1fr;
  }

  .seo-step-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .seo-section {
    padding: 21px 18px;
  }

  .seo-feature-card,
  .seo-step-card {
    padding: 16px;
  }

  .seo-step-card {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
  }

  .seo-step-number {
    width: 38px;
    height: 38px;
  }

  .seo-faq-item summary {
    min-height: 54px;
    padding: 14px 44px 14px 15px;
  }
}

/* =====================================================
   SEO LANDING - NAVEGACIÓN ENTRE PLATAFORMAS
===================================================== */

.hero-platform-explore {
  width: min(900px, 100%);
  margin: 22px auto 0;
}

.hero-platform-explore-label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
}

.hero-platform-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.hero-platform-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition:
    background .18s ease,
    border-color .18s ease,
    transform .18s ease;
}

.hero-platform-links a:hover {
  border-color: #c6d2df;
  background: #f8fafc;
  transform: translateY(-1px);
}

.hero-platform-links a:focus-visible {
  outline: 3px solid rgba(255, 102, 0, .18);
  outline-offset: 2px;
}

/*
  En las landings SEO evitamos que los contenedores vacíos de
  mensajes y carga generen un hueco antes del contenido informativo.
*/
.seo-landing .message:empty {
  min-height: 0;
  margin-bottom: 0;
}

.seo-landing .load-sentinel:empty:not(.loading) {
  min-height: 0;
  padding-top: 0;
}

.seo-landing .content {
  padding-top: 24px;
}

.seo-landing .seo-content {
  margin-top: 0;
}

.seo-landing .hero-inner {
  padding-bottom: 30px;
}

@media (max-width: 820px) {
  .hero-platform-explore {
    margin-top: 20px;
  }

  .hero-platform-links {
    gap: 7px;
  }

  .hero-platform-links a {
    min-height: 35px;
    padding: 7px 11px;
  }

  .seo-landing .content {
    padding-top: 20px;
  }
}

@media (max-width: 600px) {
  .seo-landing .hero-inner {
    padding-bottom: 24px;
  }

  .hero-platform-explore {
    margin-top: 18px;
  }

  .hero-platform-explore-label {
    margin-bottom: 9px;
    font-size: 12px;
  }

  .hero-platform-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-platform-links a {
    width: 100%;
    min-width: 0;
    min-height: 38px;
    padding: 8px 10px;
    white-space: normal;
  }

  .seo-landing .content {
    padding-top: 18px;
  }
}

@media (max-width: 360px) {
  .hero-platform-links {
    grid-template-columns: 1fr;
  }
}



/* =====================================================
   FOOTER GLOBAL
===================================================== */

.site-footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.site-footer-inner {
  width: min(1040px, calc(100% - 32px));
  min-height: 88px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.site-footer-brand {
  color: var(--text);
  font-size: 16px;
  font-weight: 850;
  text-decoration: none;
}

.site-footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.site-footer-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  transition: color .18s ease;
}

.site-footer-links a:hover {
  color: var(--primary);
}

.site-footer-links a:focus-visible,
.site-footer-brand:focus-visible {
  outline: 3px solid rgba(255, 102, 0, .18);
  outline-offset: 3px;
  border-radius: 4px;
}

.site-footer-copy {
  margin: 0;
  color: #94a3b8;
  font-size: 12px;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .site-footer-inner {
    min-height: auto;
    padding: 24px 0;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    text-align: center;
  }

  .site-footer-links {
    gap: 10px 16px;
  }
}

@media (max-width: 420px) {
  .site-footer-inner {
    width: min(100% - 24px, 1040px);
    padding: 22px 0;
  }

  .site-footer-links {
    flex-direction: column;
    gap: 10px;
  }
}

/* =====================================================
   LANGUAGE DROPDOWN
   El selector usa enlaces reales por idioma para conservar
   navegación SEO, hreflang y URLs indexables.
===================================================== */

.language-dropdown {
  position: relative;
  display: inline-block;
  margin-top: 12px;
  z-index: 60;
}

.language-dropdown > summary {
  list-style: none;
}

.language-dropdown > summary::-webkit-details-marker {
  display: none;
}

.language-dropdown-trigger {
  min-width: 94px;
  min-height: 42px;
  padding: 5px 10px 5px 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #d7e0ea;
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 4px 14px rgba(23, 44, 72, .07);
  cursor: pointer;
  user-select: none;
  transition:
    border-color .18s ease,
    box-shadow .18s ease,
    transform .18s ease;
}

.language-dropdown-trigger:hover {
  border-color: #c3cfdb;
  box-shadow: 0 7px 18px rgba(23, 44, 72, .10);
  transform: translateY(-1px);
}

.language-dropdown-trigger:focus-visible {
  outline: 3px solid rgba(255, 102, 0, .16);
  outline-offset: 3px;
}

.language-dropdown[open] .language-dropdown-trigger {
  border-color: #c3cfdb;
  box-shadow: 0 7px 20px rgba(23, 44, 72, .11);
}

.language-dropdown-flag {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #d8e0e9;
  border-radius: 50%;
  background: #ffffff;
  font-size: 20px;
  line-height: 1;
  box-shadow: 0 1px 3px rgba(23, 44, 72, .08);
}

.language-dropdown-current-code {
  min-width: 20px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .02em;
}

.language-dropdown-chevron {
  margin-top: -2px;
  color: #7a899c;
  font-size: 16px;
  line-height: 1;
  transition: transform .18s ease;
}

.language-dropdown[open] .language-dropdown-chevron {
  transform: rotate(180deg);
}

.language-dropdown-menu {
  position: absolute;
  top: calc(100% + 9px);
  left: 50%;
  width: 238px;
  max-height: min(360px, 65vh);
  padding: 7px;
  overflow-y: auto;
  border: 1px solid #dce4ed;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(23, 44, 72, .17);
  transform: translateX(-50%);
}

.language-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -5px;
  left: calc(50% - 5px);
  width: 10px;
  height: 10px;
  border-top: 1px solid #dce4ed;
  border-left: 1px solid #dce4ed;
  background: #ffffff;
  transform: rotate(45deg);
}

.language-dropdown-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 50px;
  padding: 7px 10px;
  border-radius: 10px;
  color: var(--text);
  text-decoration: none;
  transition: background .16s ease;
}

.language-dropdown-option:hover,
.language-dropdown-option:focus-visible {
  background: #f5f8fb;
}

.language-dropdown-option:focus-visible {
  outline: 2px solid rgba(255, 102, 0, .16);
  outline-offset: -2px;
}

.language-dropdown-option.is-active {
  background: #fff6ef;
}

.language-dropdown-option .language-dropdown-flag {
  width: 28px;
  height: 28px;
  flex-basis: 28px;
  font-size: 18px;
}

.language-dropdown-option-copy {
  min-width: 0;
  display: flex;
  flex: 1;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.language-dropdown-option-copy strong {
  overflow: hidden;
  font-size: 14px;
  font-weight: 780;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-dropdown-option-copy small {
  color: #8492a5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
}

.language-dropdown-check {
  flex: 0 0 auto;
  color: var(--primary);
  font-size: 14px;
  font-weight: 900;
}

.legal-language-dropdown {
  margin-top: 0;
  flex: 0 0 auto;
}

.legal-language-dropdown .language-dropdown-menu {
  right: 0;
  left: auto;
  transform: none;
}

.legal-language-dropdown .language-dropdown-menu::before {
  right: 34px;
  left: auto;
}

@media (max-width: 720px) {
  .language-dropdown-menu {
    width: 220px;
  }

  .legal-language-dropdown .language-dropdown-menu {
    right: auto;
    left: 0;
  }

  .legal-language-dropdown .language-dropdown-menu::before {
    right: auto;
    left: 32px;
  }
}


/* =====================================================
   JSDOWNLOADER REDESIGN 2026
   Capa visual ligera: blanco cálido + navy + naranja.
===================================================== */

:root {
  --bg: #fffdfa;
  --surface: #ffffff;
  --surface-soft: #fffaf6;
  --text: #102849;
  --muted: #687a93;
  --line: #e3e9f1;
  --line-warm: #ffe0cc;
  --primary: #ff6600;
  --primary-hover: #e95d00;
  --primary-soft: #fff2e8;
  --download: #ff6600;
  --download-hover: #e95d00;
  --shadow: 0 12px 34px rgba(21, 45, 79, .055);
  --shadow-hover: 0 16px 38px rgba(21, 45, 79, .08);
}

body {
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 102, 0, .045), transparent 26%),
    radial-gradient(circle at 91% 65%, rgba(255, 102, 0, .035), transparent 24%),
    #fffdfa;
  color: var(--text);
}

a {
  color: inherit;
}

/* ---------------- HEADER ---------------- */

.site-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid rgba(227, 233, 241, .92);
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 5px 22px rgba(21, 45, 79, .025);
}

.site-nav-shell {
  width: min(1240px, calc(100% - 48px));
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 170px;
  align-items: center;
  gap: 22px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  color: var(--text);
  font-size: 21px;
  font-weight: 850;
  letter-spacing: -.025em;
  text-decoration: none;
}

.site-brand-icon {
  width: 39px;
  height: 39px;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 14px rgba(255, 102, 0, .16);
}

.site-navigation {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
  height: 72px;
}

.site-navigation > a,
.nav-platform-dropdown > summary {
  position: relative;
  min-height: 72px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: #243750;
  font-size: 14px;
  font-weight: 670;
  text-decoration: none;
  cursor: pointer;
  list-style: none;
  transition: color .18s ease;
}

.nav-platform-dropdown {
  position: relative;
}

.nav-platform-dropdown > summary::-webkit-details-marker {
  display: none;
}

.site-navigation > a::after,
.nav-platform-dropdown > summary::after {
  content: "";
  position: absolute;
  right: 17px;
  bottom: 0;
  left: 17px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  opacity: 0;
  transform: scaleX(.4);
  transition: opacity .18s ease, transform .18s ease;
}

.site-navigation > a:hover,
.site-navigation > a[aria-current="page"],
.nav-platform-dropdown > summary:hover,
.nav-platform-dropdown[open] > summary {
  color: var(--primary);
}

.site-navigation > a:hover::after,
.site-navigation > a[aria-current="page"]::after,
.nav-platform-dropdown > summary:hover::after,
.nav-platform-dropdown[open] > summary::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-platform-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  width: 250px;
  padding: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(21, 45, 79, .13);
  transform: translateX(-50%);
}

.nav-platform-menu a {
  min-height: 38px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  border-radius: 9px;
  color: #31445d;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.nav-platform-menu a:hover {
  background: #fff5ee;
  color: var(--primary);
}

.site-header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.site-header-actions .language-dropdown {
  margin-top: 0;
}

.site-header-actions .language-dropdown-trigger {
  min-width: 78px;
  min-height: 39px;
  border-color: transparent;
  box-shadow: none;
  background: transparent;
}

.site-header-actions .language-dropdown-current-flag {
  width: 25px;
  height: 25px;
  flex-basis: 25px;
  font-size: 16px;
}

.site-header-actions .language-dropdown-menu {
  right: 0;
  left: auto;
  transform: none;
}

.site-header-actions .language-dropdown-menu::before {
  right: 30px;
  left: auto;
}

.mobile-navigation {
  display: none;
}

.supported-strip {
  border-top: 1px solid #f0f3f7;
  background: #fff;
}

.supported-strip-inner {
  width: min(1240px, calc(100% - 48px));
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.supported-strip .supported-title {
  flex: 0 0 auto;
  margin: 0;
  color: #69798e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .055em;
}

.supported-strip .platforms {
  gap: 17px;
}

.supported-strip .platform-icon {
  width: 32px;
  height: 32px;
}

.supported-strip .platform-icon svg {
  width: 23px;
  height: 23px;
}

.supported-strip .youtube svg {
  width: 27px;
}

.supported-strip .platform-separator {
  height: 25px;
  margin: 0 8px;
}

.supported-strip .platform-adult-badge {
  width: 29px;
  height: 29px;
  font-size: 9px;
}

.supported-strip .adult-platform-popover {
  top: calc(100% + 9px);
}


/*
  En móvil la franja de plataformas usa overflow-x:auto.
  Un popover absoluto dentro de ese contenedor queda recortado.
  Al abrirlo, app.js lo porta temporalmente a <body> y estas
  reglas lo posicionan por encima del resto de la página.
*/
.adult-platform-popover.adult-platform-popover-portal {
  position: fixed;
  top: var(--adult-popover-top, 76px);
  right: auto;
  left: var(--adult-popover-left, 12px);
  width: min(220px, calc(100vw - 24px));
  max-height: var(--adult-popover-max-height, calc(100vh - 88px));
  overflow-y: auto;
  overscroll-behavior: contain;
  z-index: 10000;
}

.adult-platform-popover.adult-platform-popover-portal::before {
  right: auto;
  left: calc(var(--adult-popover-arrow-left, 190px) - 5px);
}

/* ---------------- HERO ---------------- */

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 0;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 102, 0, .065), transparent 24%),
    radial-gradient(circle at 87% 21%, rgba(255, 102, 0, .04), transparent 20%),
    linear-gradient(180deg, #fffefd 0%, #fffdfa 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: .48;
}

.hero::before {
  width: 170px;
  height: 310px;
  left: -92px;
  top: 180px;
  border: 1px solid rgba(255, 102, 0, .13);
  border-radius: 50%;
  box-shadow:
    18px 0 0 -17px rgba(255, 102, 0, .16),
    36px 0 0 -35px rgba(255, 102, 0, .18),
    54px 0 0 -53px rgba(255, 102, 0, .20);
}

.hero::after {
  right: 45px;
  top: 240px;
  width: 64px;
  height: 96px;
  background-image: radial-gradient(rgba(255, 102, 0, .35) 1.2px, transparent 1.2px);
  background-size: 12px 12px;
}

.hero-inner {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 58px 0 44px;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(480px, 1.04fr);
  gap: 56px;
  align-items: center;
  text-align: left;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-left: 0;
}

.hero-eyebrow {
  width: max-content;
  max-width: 100%;
  min-height: 34px;
  margin-bottom: 23px;
  padding: 7px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #ffe3d1;
  border-radius: 9px;
  background: rgba(255, 243, 234, .88);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
}

.hero-eyebrow-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 10px;
}

.hero h1 {
  max-width: 670px;
  margin: 0;
  color: #102849;
  font-size: clamp(42px, 4.1vw, 61px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.brand-accent {
  color: var(--primary);
}

.hero .subtitle {
  max-width: 650px;
  margin: 22px 0 24px;
  color: #64758c;
  font-size: 16px;
  line-height: 1.55;
}

.search-form {
  position: relative;
  width: min(680px, 100%);
  max-width: none;
  min-height: 68px;
  margin: 0;
  padding: 7px;
  display: flex;
  align-items: center;
  border: 1px solid #dfe6ee;
  border-radius: 14px;
  overflow: visible;
  background: #fff;
  box-shadow: 0 10px 28px rgba(21, 45, 79, .07);
}

.search-link-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  margin-left: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #99a9bc;
}

.search-link-icon svg {
  width: 22px;
  height: 22px;
}

.search-form input {
  min-width: 0;
  height: 52px;
  padding: 0 12px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 15px;
}

.search-form input::placeholder {
  color: #9aa8bb;
}

.search-form:focus-within {
  border-color: #ffc59e;
  box-shadow: 0 0 0 4px rgba(255, 102, 0, .07), 0 12px 28px rgba(21, 45, 79, .07);
}

.search-form button {
  min-width: 180px;
  height: 52px;
  padding: 0 24px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff751a, #ff5a00);
  font-size: 15px;
  box-shadow: 0 7px 16px rgba(255, 102, 0, .16);
}

.search-form button:hover {
  background: linear-gradient(135deg, #ff6810, #ee5700);
}

.message {
  width: min(680px, 100%);
  min-height: 20px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: left;
}

.message:empty {
  min-height: 0;
  margin-top: 0;
}

.message.error {
  margin-top: 10px;
  padding: 9px 12px;
  border: 1px solid #fecaca;
  border-radius: 9px;
  background: #fff7f7;
  color: #b42318;
}

.hero-trust {
  width: min(680px, 100%);
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #63748a;
  font-size: 12px;
  font-weight: 680;
}

.hero-trust > span {
  min-width: 0;
  flex: 1 1 0;
  min-height: 32px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-right: 1px solid #dfe5ec;
  white-space: nowrap;
}

.hero-trust > span:first-child {
  padding-left: 4px;
}

.hero-trust > span:last-child {
  padding-right: 4px;
  border-right: 0;
}

.hero-trust b.hero-trust-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0;
  font-weight: 800;
}

.hero-trust-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.hero-visual {
  position: relative;
  z-index: 3;
  min-width: 0;
}

/* ---------------- PREVIEW + RESULTADO ---------------- */

.result-stage {
  position: relative;
  min-height: 390px;
}

.result-placeholder {
  position: relative;
}

.preview-browser {
  position: relative;
  width: 100%;
  min-height: 350px;
  padding: 18px;
  border: 1px solid #f0e4dc;
  border-radius: 23px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 20px 48px rgba(62, 45, 32, .09);
}

.preview-browser::after {
  content: "⇩";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid #f4ebe5;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  font-size: 30px;
  font-weight: 700;
  box-shadow: 0 13px 30px rgba(21, 45, 79, .09);
}

.preview-browser-bar {
  height: 38px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.preview-browser-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6b63;
}

.preview-browser-bar i:nth-child(2) {
  background: #f7bd3b;
}

.preview-browser-bar i:nth-child(3) {
  background: #51c67a;
}

.preview-browser-bar span {
  height: 12px;
  flex: 1;
  margin-left: 10px;
  border-radius: 999px;
  background: #edf0f3;
}

.preview-browser-body {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(165px, .75fr);
  gap: 14px;
}

.preview-media {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 13px;
  background:
    linear-gradient(145deg, rgba(255, 210, 188, .78), rgba(255, 241, 232, .94)),
    #fff0e8;
}

.preview-media::before,
.preview-media::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: 35px;
  width: 80%;
  height: 54%;
  border-radius: 45% 0 0 0;
  background: rgba(255, 164, 118, .24);
  transform: rotate(-12deg);
}

.preview-media::after {
  right: auto;
  bottom: 20px;
  left: -25px;
  background: rgba(255, 255, 255, .52);
  transform: rotate(8deg);
}

.preview-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: #243750;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(21,45,79,.08);
  transform: translate(-50%, -50%);
}

.preview-progress {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 19px;
  left: 22px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
}

.preview-progress span {
  display: block;
  width: 48%;
  height: 100%;
  border-radius: inherit;
  background: var(--primary);
}

.preview-quality {
  padding: 18px 15px 14px;
  border: 1px solid #edf0f3;
  border-radius: 13px;
  background: #fff;
  color: #53647a;
  box-shadow: 0 7px 18px rgba(21, 45, 79, .035);
}

.preview-quality small {
  display: block;
  margin-bottom: 13px;
  color: #52637a;
  font-size: 11px;
  font-weight: 750;
}

.preview-quality > div {
  min-height: 34px;
  display: grid;
  grid-template-columns: 16px 54px 1fr;
  align-items: center;
  gap: 5px;
  font-size: 11px;
}

.preview-quality i {
  width: 12px;
  height: 12px;
  border: 1px solid #cbd5df;
  border-radius: 50%;
}

.preview-quality i.selected {
  border: 3px solid var(--primary);
}

.preview-quality b {
  color: #354860;
  font-weight: 700;
}

.preview-quality button {
  width: 100%;
  min-height: 43px;
  margin-top: 8px;
  border: 0;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font: inherit;
  font-weight: 800;
  pointer-events: none;
}

.preview-placeholder-copy {
  max-width: 460px;
  margin: 18px auto 0;
  text-align: center;
}

.preview-placeholder-eyebrow {
  display: none;
}

.preview-placeholder-copy strong {
  display: block;
  color: #293c55;
  font-size: 14px;
}

.preview-placeholder-copy p {
  max-width: 430px;
  margin: 5px auto 0;
  color: #8491a2;
  font-size: 12px;
  line-height: 1.5;
}

.result-stage-ready {
  display: none;
  margin-bottom: 10px;
  align-items: center;
  gap: 8px;
  color: #31536c;
  font-size: 12px;
  font-weight: 800;
}

.result-stage-ready-dot {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #7acb69;
  color: #fff;
  font-size: 10px;
}

.result-stage.has-results .result-placeholder {
  display: none;
}

.result-stage.has-results .result-stage-ready {
  display: flex;
}

.results {
  display: grid;
  gap: 14px;
}

.result-stage:not(.has-results) .results {
  display: none;
}

.video-card {
  min-width: 0;
  min-height: 250px;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(205px, 1.02fr) minmax(205px, .98fr);
  gap: 20px;
  align-items: stretch;
  border: 1px solid #ffe0cc;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 13px 34px rgba(21, 45, 79, .065);
}

.video-thumb {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 214px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(145deg, #f4e5dc, #edf2f7);
}

.video-thumb::after {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 50%;
  background: rgba(15, 31, 52, .52);
  color: #fff;
  font-size: 16px;
  box-shadow: 0 6px 16px rgba(15,31,52,.18);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.video-source {
  width: max-content;
  max-width: 100%;
  min-height: 30px;
  margin-bottom: 10px;
  padding: 4px 10px 4px 5px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #edf1f5;
  border-radius: 999px;
  background: #f8fafc;
  color: #5f7188;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: none;
}

.video-source-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.video-source-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.video-source-icon-youtube svg {
  width: 24px;
}

.video-source-letter {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #1e293b;
  color: #fff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.video-source-letter.adult {
  background: #111827;
}

.video-source-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.video-body h3 {
  margin: 0 0 12px;
  display: -webkit-box;
  overflow: hidden;
  color: #142c4c;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.video-quality-label {
  margin-top: auto;
  margin-bottom: 7px;
  color: #53657d;
  font-size: 11px;
  font-weight: 780;
}

.video-controls {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}

.quality-select {
  width: 100%;
  min-width: 0;
  height: 44px;
  padding: 0 12px;
  border: 1px solid #dce4ed;
  border-radius: 8px;
  background: #fff;
  color: #2e435e;
  font-size: 13px;
  font-weight: 650;
}

.download-button {
  width: 100%;
  height: 45px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff751a, #ff5a00);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 6px 14px rgba(255, 102, 0, .14);
}

.download-button:hover {
  background: linear-gradient(135deg, #ff6810, #ee5700);
}

.download-icon {
  margin-right: 5px;
  font-size: 18px;
}

.video-card .download-progress {
  margin-top: 10px;
  padding: 10px;
  border-color: #edf0f4;
  background: #fbfcfe;
}

.video-card .download-progress-track {
  height: 6px;
}

.result-stage.has-many-results .video-card {
  min-height: 190px;
  grid-template-columns: 165px minmax(0, 1fr);
}

.result-stage.has-many-results .video-thumb {
  min-height: 155px;
  aspect-ratio: 16 / 11;
}

/* Perfiles/canales: el panel derecho conserva su altura y hace scroll internamente. */
.result-stage.has-many-results {
  max-height: 650px;
  padding-right: 8px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: #ffc39b transparent;
}

.result-stage.has-many-results::-webkit-scrollbar {
  width: 8px;
}

.result-stage.has-many-results::-webkit-scrollbar-track {
  background: transparent;
}

.result-stage.has-many-results::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: #ffc39b;
  background-clip: padding-box;
}

.result-stage.has-many-results .result-stage-ready {
  position: sticky;
  z-index: 6;
  top: 0;
  margin: 0 0 10px;
  padding: 8px 4px 10px;
  background: rgba(255, 253, 250, .96);
  backdrop-filter: blur(7px);
}

.load-sentinel {
  min-height: 0;
  padding: 12px 0 0;
  color: #7d8ca0;
  font-size: 12px;
  font-weight: 650;
  text-align: center;
}

.load-sentinel:empty:not(.loading) {
  padding: 0;
}

/* ---------------- CONTENIDO SEO ---------------- */

.content {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 0 86px;
}

.seo-content {
  display: grid;
  gap: 22px;
  margin-top: 0;
}

.seo-section {
  padding: 30px 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.93);
  box-shadow: var(--shadow);
}

.seo-section-heading {
  max-width: 840px;
}

.seo-section-heading h2,
.seo-section h2 {
  margin: 0;
  color: #102849;
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: -.018em;
}

.seo-section p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.seo-section-intro {
  max-width: 800px;
  margin: 8px 0 0 !important;
}

.seo-benefits-section {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.seo-benefits-section > .seo-section-heading {
  display: none;
}

.seo-feature-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.seo-feature-card {
  min-width: 0;
  min-height: 122px;
  padding: 22px 23px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 17px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.seo-feature-card:hover {
  transform: translateY(-2px);
  border-color: #f0d8c8;
  box-shadow: var(--shadow-hover);
}

.seo-feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
}

.seo-feature-icon svg {
  width: 28px;
  height: 28px;
}

.seo-feature-card h3 {
  margin: 0 0 6px;
  color: #142c4c;
  font-size: 15px;
}

.seo-feature-card p {
  margin: 0;
  color: #68798f;
  font-size: 12.5px;
  line-height: 1.55;
}

.seo-platforms-section {
  padding: 28px 31px;
}

.seo-platform-links {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.platform-pill {
  min-height: 43px;
  padding: 9px 15px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #dce4ed;
  border-radius: 999px;
  background: #fff;
  color: #243952;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.platform-pill:hover {
  border-color: #ffbb8e;
  background: #fff8f3;
  transform: translateY(-1px);
}

.platform-pill-mark {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  display: inline-flex;
  border-radius: 5px;
  background: #d5dde7;
  box-shadow: inset 0 0 0 4px #fff;
}

.platform-pill-tiktok .platform-pill-mark { background: #111; }
.platform-pill-instagram .platform-pill-mark { background: linear-gradient(135deg,#ffb700,#ff3465,#9e36e8); }
.platform-pill-facebook .platform-pill-mark { background: #1877f2; border-radius: 50%; }
.platform-pill-youtube .platform-pill-mark { background: #ff0033; }
.platform-pill-x .platform-pill-mark { background: #111; }
.platform-pill-reddit .platform-pill-mark { background: #ff4500; border-radius: 50%; }
.platform-pill-kick .platform-pill-mark { background: #53fc18; }
.platform-pill-vimeo .platform-pill-mark { background: #1ab7ea; border-radius: 50%; }
.platform-pill-rumble .platform-pill-mark { background: #85c742; border-radius: 50%; }

.seo-steps-section {
  position: relative;
  padding: 36px 31px 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,102,0,.035), transparent 34%),
    rgba(255,255,255,.95);
}

.seo-section-heading-centered {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.seo-section-heading-centered .seo-section-intro {
  margin-right: auto !important;
  margin-left: auto !important;
}

.seo-step-grid {
  position: relative;
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.seo-step-card {
  position: relative;
  min-height: 210px;
  padding: 24px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  text-align: center;
  box-shadow: 0 7px 20px rgba(21,45,79,.035);
}

.seo-step-card:not(:last-child)::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: -18px;
  z-index: 2;
  color: var(--primary);
  font-size: 27px;
  font-weight: 300;
  transform: translateY(-50%);
}

.seo-step-number {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}

.seo-step-icon {
  width: 64px;
  height: 64px;
  margin-top: 9px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
}

.seo-step-icon svg {
  width: 31px;
  height: 31px;
}

.seo-step-copy h3 {
  margin: 18px 0 8px;
  color: #142c4c;
  font-size: 15px;
  line-height: 1.3;
}

.seo-step-copy p {
  margin: 0;
  color: #6a7b90;
  font-size: 12.5px;
  line-height: 1.55;
}

.home-landing .seo-step-copy h3 {
  display: none;
}

.home-landing .seo-step-copy p {
  margin-top: 17px;
}

.seo-overview-section {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.seo-overview-mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 900;
  letter-spacing: -.03em;
}

.seo-overview-section p {
  margin: 10px 0 0;
}

.seo-faq-section {
  position: relative;
  padding: 38px 40px 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 0 50%, rgba(255,102,0,.045), transparent 24%),
    radial-gradient(circle at 100% 50%, rgba(255,102,0,.04), transparent 24%),
    rgba(255,255,255,.95);
}

.seo-faq-section .seo-section-heading h2 {
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -.03em;
}

.seo-faq-section .seo-section-intro {
  margin-top: 8px !important;
  font-size: 14px;
}

.seo-faq-list {
  width: min(1030px, 100%);
  margin: 26px auto 0;
  display: grid;
  gap: 9px;
}

.seo-faq-item {
  overflow: hidden;
  border: 1px solid #e0e7ef;
  border-radius: 12px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 5px 15px rgba(21,45,79,.025);
  transition: border-color .18s ease, box-shadow .18s ease;
}

.seo-faq-item[open] {
  border-color: #ffcfae;
  background: #fffdfb;
  box-shadow: 0 8px 24px rgba(255,102,0,.055);
}

.seo-faq-item summary {
  position: relative;
  min-height: 62px;
  padding: 16px 56px 16px 24px;
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  color: #142c4c;
  font-size: 14px;
  font-weight: 780;
  cursor: pointer;
  list-style: none;
}

.seo-faq-item summary::-webkit-details-marker {
  display: none;
}

.seo-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid #ffb27f;
  border-radius: 50%;
  color: var(--primary);
  font-size: 19px;
  font-weight: 450;
  transform: translateY(-50%);
}

.seo-faq-item[open] summary::after {
  content: "−";
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.seo-faq-item summary:hover {
  background: #fffaf6;
}

.seo-faq-number {
  color: #142c4c;
  font-size: 17px;
  font-weight: 850;
}

.seo-faq-answer {
  padding: 0 56px 20px 68px;
}

.seo-faq-answer p {
  margin: 0;
  color: #697b91;
  font-size: 13px;
  line-height: 1.7;
}

/* ---------------- FOOTER ---------------- */

.site-footer {
  border-top: 1px solid #e6ebf1;
  background: rgba(255,255,255,.92);
}

.site-footer-inner {
  width: min(1240px, calc(100% - 48px));
}

.site-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-footer-brand img {
  border-radius: 7px;
}

/* ---------------- DROPDOWNS ---------------- */

.language-dropdown {
  z-index: 80;
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 1180px) {
  .site-nav-shell {
    grid-template-columns: 220px minmax(0, 1fr) 120px;
  }

  .site-navigation > a,
  .nav-platform-dropdown > summary {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 13px;
  }

  .site-navigation > a::after,
  .nav-platform-dropdown > summary::after {
    right: 10px;
    left: 10px;
  }

  .hero-inner {
    gap: 38px;
    grid-template-columns: minmax(0, .95fr) minmax(430px, 1.05fr);
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero h1 {
    font-size: clamp(39px, 4.3vw, 54px);
  }

  .seo-feature-grid {
    gap: 18px;
  }

  .seo-step-grid {
    gap: 16px;
  }
}

@media (max-width: 960px) {
  .site-nav-shell {
    grid-template-columns: 1fr auto auto;
    min-height: 66px;
  }

  .site-navigation {
    display: none;
  }

  .mobile-navigation {
    position: relative;
    display: block;
    order: 2;
  }

  .mobile-navigation > summary {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    list-style: none;
  }

  .mobile-navigation > summary::-webkit-details-marker {
    display: none;
  }

  .mobile-navigation > summary span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #3a4d64;
  }

  .mobile-navigation-menu {
    position: absolute;
    top: calc(100% + 9px);
    right: 0;
    width: min(310px, calc(100vw - 32px));
    padding: 9px;
    display: grid;
    gap: 3px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(21,45,79,.14);
  }

  .mobile-navigation-menu > a,
  .mobile-navigation-platforms a {
    min-height: 40px;
    padding: 9px 11px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    color: #31445d;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-navigation-menu a:hover {
    background: #fff5ee;
    color: var(--primary);
  }

  .mobile-navigation-platforms {
    padding: 9px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #eef2f6;
    border-bottom: 1px solid #eef2f6;
  }

  .mobile-navigation-platforms strong {
    grid-column: 1 / -1;
    padding: 5px 11px 7px;
    color: #8a98aa;
    font-size: 10px;
    letter-spacing: .04em;
    text-transform: uppercase;
  }

  .site-header-actions {
    order: 3;
  }

  .hero-inner {
    padding-top: 42px;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero-copy {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-eyebrow {
    margin-right: auto;
    margin-left: auto;
  }

  .hero h1,
  .hero .subtitle,
  .search-form,
  .message,
  .hero-trust {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    width: min(720px, 100%);
    margin: 0 auto;
  }

  .seo-feature-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .seo-feature-card {
    min-height: 105px;
  }

  .seo-step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-step-card:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-nav-shell,
  .supported-strip-inner,
  .hero-inner,
  .content,
  .site-footer-inner {
    width: min(100% - 28px, 1240px);
  }

  .site-nav-shell {
    min-height: 62px;
    grid-template-columns: 1fr auto auto;
    gap: 8px;
  }

  .site-brand {
    gap: 8px;
    font-size: 17px;
  }

  .site-brand-icon {
    width: 34px;
    height: 34px;
  }

  .site-header-actions .language-dropdown-trigger {
    min-width: 62px;
    padding: 4px 5px;
  }

  .site-header-actions .language-dropdown-current-code {
    font-size: 11px;
  }

  .site-header-actions .language-dropdown-chevron {
    display: none;
  }

  .supported-strip {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .supported-strip::-webkit-scrollbar {
    display: none;
  }

  .supported-strip-inner {
    width: max-content;
    min-width: 100%;
    min-height: 58px;
    padding: 0 14px;
    justify-content: flex-start;
    gap: 14px;
  }

  .supported-strip .supported-title {
    display: none;
  }

  .supported-strip .platforms {
    gap: 13px;
  }

  .hero-inner {
    padding: 32px 0 34px;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .hero .subtitle {
    margin-top: 17px;
    font-size: 14px;
  }

  .search-form {
    min-height: auto;
    padding: 6px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .search-link-icon {
    grid-column: 1;
    grid-row: 1;
  }

  .search-form input {
    grid-column: 2;
    grid-row: 1;
    height: 50px;
    padding-left: 4px;
    font-size: 13px;
  }

  .search-form button {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    min-width: 0;
    min-height: 49px;
    margin-top: 4px;
  }

  .hero-trust {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 14px;
  }

  .hero-trust > span {
    flex: 0 1 auto;
    padding: 0;
    border-right: 0;
  }

  .hero-trust b.hero-trust-icon {
    width: 21px;
    height: 21px;
    flex-basis: 21px;
  }

  .result-stage.has-many-results {
    max-height: 570px;
    padding-right: 5px;
  }

  .preview-browser {
    min-height: 290px;
    padding: 13px;
    border-radius: 18px;
  }

  .preview-browser-body {
    grid-template-columns: 1fr;
  }

  .preview-quality {
    display: none;
  }

  .preview-media {
    min-height: 235px;
  }

  .preview-browser::after {
    right: -8px;
    bottom: -16px;
    width: 58px;
    height: 58px;
    font-size: 24px;
  }

  .video-card,
  .result-stage.has-many-results .video-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .video-thumb,
  .result-stage.has-many-results .video-thumb {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .video-body h3 {
    -webkit-line-clamp: 2;
  }

  .seo-section {
    padding: 24px 20px;
  }

  .seo-feature-card {
    padding: 18px;
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .seo-feature-icon {
    width: 48px;
    height: 48px;
  }

  .seo-platform-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .platform-pill {
    min-width: 0;
    padding: 9px 11px;
  }

  .seo-step-grid {
    grid-template-columns: 1fr;
  }

  .seo-step-card {
    min-height: 0;
    padding: 22px 18px;
  }

  .seo-step-card::after {
    display: none !important;
  }

  .seo-overview-section {
    grid-template-columns: 1fr;
  }

  .seo-overview-mark {
    width: 54px;
    height: 54px;
  }

  .seo-faq-section {
    padding: 30px 16px 24px;
  }

  .seo-faq-item summary {
    min-height: 58px;
    padding: 14px 48px 14px 15px;
    grid-template-columns: 25px minmax(0, 1fr);
    gap: 9px;
    font-size: 13px;
  }

  .seo-faq-number {
    font-size: 14px;
  }

  .seo-faq-item summary::after {
    right: 14px;
  }

  .seo-faq-answer {
    padding: 0 18px 17px 49px;
  }
}

@media (max-width: 430px) {
  .site-brand span {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .seo-platform-links {
    grid-template-columns: 1fr;
  }

  .hero-eyebrow {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .preview-placeholder-copy {
    padding: 0 10px;
  }
}

/* =====================================================
   ADULT SEO
===================================================== */

.adult-popover-footer {
  display: grid;
  gap: 7px;
}

.adult-popover-seo-link {
  display: inline-flex;
  justify-content: center;
  color: #d9293b;
  font-size: 10.5px;
  font-weight: 800;
  text-decoration: none;
}

.adult-popover-seo-link:hover {
  text-decoration: underline;
}

.adult-seo-notice {
  border-color: #ffd6da;
  background: linear-gradient(135deg, #fffafa, #ffffff);
}

.adult-seo-mark {
  background: #fff0f1;
  color: #d9293b;
  font-size: 15px;
}

.adult-platform-pill .platform-pill-mark {
  background: #202938;
}

.adult-platform-pill-pornhub .platform-pill-mark { background: #f39a18; }
.adult-platform-pill-xvideos .platform-pill-mark { background: #1b2432; }
.adult-platform-pill-xnxx .platform-pill-mark { background: #111827; }
.adult-platform-pill-xhamster .platform-pill-mark { background: #2f3b52; }
.adult-platform-pill-eporner .platform-pill-mark { background: #465166; }
.adult-platform-pill-xxxi .platform-pill-mark { background: #111111; }
