body {
  font-family: 'Poppins', sans-serif;
}

main.mainbox *:not(i):not(.icon):not(.fa):not(.fas):not(.far):not(.fab):not(.fa-solid):not(.fa-regular):not(.fa-brands) {
  font-family: 'Poppins', sans-serif !important;
}

.hbp-hero .row{
  justify-content: space-between;
}
.bg-1{background-color: #ffffff!important;}
.bg-3{background-color: #d9d9d9!important;}

/* Responsive Typography */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.8rem;
}

video{
  max-width: 100%;
}


.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: none; /* 👈 oculto por defecto */
  background: #fff;
  border-radius: 14px;
  padding: 10px 0;
  margin-top: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
  z-index: 1000;
  animation: fadeIn 0.25s ease;
}

.search-results.active {
  display: block;
}

.search-group-title {
  font-size: 12px;
  font-weight: 600;
  color: #999;
  padding: 8px 16px 4px;
  text-transform: uppercase;
}

.result-item {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  font-size: 14px;
  color: #222;
  text-decoration: none;
  transition: all 0.2s ease;
}

.result-item:hover {
  background: #f8f9fa;
  color: #e63946;
  padding-left: 20px;
}

.result-item::before {
  content: "↗";
  font-size: 12px;
  margin-right: 10px;
  opacity: 0.5;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.justify-text {
  text-align: justify;
}

/* ==========================
   HELP CENTER PAGE
========================== */
.help-center-page {
  font-family: 'Poppins', sans-serif;
  background: #efefef;
  color: #111;
}

/* Generic */
.section-line {
  width: 140px;
  height: 2px;
  background: #e53935;
}

.section-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0;
}

/* HERO */
.help-hero {
  background: #ffffff;
}

.hero-copy {
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.help-title {
  font-size: 4rem;
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.help-subtitle {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.search-wrapper {
  position: relative;
  max-width: 300px;
}

.help-search-input {
  height: 44px;
  border: 2px solid #e53935;
  border-radius: 999px;
  padding: 0 50px 0 18px;
  font-size: 0.95rem;
  box-shadow: none !important;
}

.help-search-input:focus {
  border-color: #e53935;
}

.help-search-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  color: #e53935;
  border-radius: 50%;
}

.hero-image-wrap {
  text-align: right;
}

.hero-image {
  width: 100%;
  max-width: 700px;
  object-fit: cover;
}

/* QUICK ACTIONS */
.quick-actions {
  background: #eeeeee;
}

.manage-subscription-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 280px;
  padding: 10px 18px;
  border: 2px solid #e53935;
  border-radius: 6px;
  color: #666;
  text-decoration: none;
  font-size: 0.95rem;
  background: #fff;
  transition: all 0.3s ease;
}

.manage-subscription-btn:hover {
  color: #e53935;
  transform: translateY(-2px);
}

.manage-subscription-btn span {
  color: #e53935;
}

.quick-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quick-icon {
  max-width: 72px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.quick-card:hover .quick-icon {
  transform: translateY(-4px) scale(1.03);
}

.quick-link {
  display: inline-block;
  min-width: 120px;
  border: 1.5px solid #bf0c04;
  border-radius: 6px;
  padding: 8px 12px;
  color: #777;
  font-size: 0.8rem;
  text-decoration: none;
  background: #fff;
  transition: all 0.3s ease;
}

.quick-link:hover {
  background: #bf0c04;
  color: #fff;
}

/* GET SUPPORT */
.get-support {
  background: #ffffff;
}

.support-card {
  height: 100%;
}

.support-img {
  width: 100%;
  max-height: 230px;
  margin-bottom: 16px;
}

.support-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.support-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #333;
}

.support-card a {
  color: #111;
  text-decoration: underline;
}

/* VIDEO SECTION */
.improved-section {
  background: #777;
  color: #fff;
}

.improved-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.video-frame {
  max-width: 700px;
}

.video-thumb {
  display: block;
  position: relative;
  text-decoration: none;
}

.video-thumb img {
  width: 100%;
  display: block;
}

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn i {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 4px solid rgba(255,255,255,0.85);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  padding-left: 5px;
  transition: transform 0.3s ease;
}

.video-thumb:hover .play-btn i {
  transform: scale(1.08);
}

/* HELP TOPICS */
.help-topics {
  background: #efefef;
}

.topics-row {
  max-width: 100%;
  margin: 0 auto;
}

.topic-column h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.15;
}

.topic-column ul {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
}

.topic-column li {
  margin-bottom: 8px;
}

.topic-column a {
  color: #111;
  text-decoration: none;
  transition: color 0.3s ease;
}

.topic-column a:hover {
  color: #e53935;
}

/* FAQS */
.faqs-section {
  background: #fff;
}

.faq-main-icon {
  max-width: 160px!important;
}

.faq-column {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  padding: 28px 24px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.faq-column h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1.25rem;
}

.faq-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.faq-item {
  margin-bottom: 14px;
}

.faq-toggle {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  line-height: 1.5;
  position: relative;
  padding-right: 24px;
  transition: all 0.3s ease;
}

.faq-toggle:hover {
  color: #be0c11;
}

.faq-toggle::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #e53935;
  transition: transform 0.3s ease;
}

.faq-toggle[aria-expanded="true"]::after {
  content: "x";
}

.faq-answer {
  margin-top: 10px;
}

.faq-answer-box {
  background: #f8fbff;
  border-left: 3px solid #be0c11;
  border-radius: 10px;
  padding: 14px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #555;
}

.faq-answer-box a {
  color: #2a7de1;
  text-decoration: none;
}

.faq-answer-box a:hover {
  text-decoration: underline;
}

.faq-view-all {
  margin-top: 18px;
}

.faq-view-all a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #be0c11;
  text-decoration: none;
}

.faq-view-all a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1199px) {
  .help-title {
    font-size: 3.2rem;
  }

  .improved-title {
    font-size: 2rem;
  }
}

@media (max-width: 991px) {
  .help-hero .row {
    row-gap: 30px;
  }

  .hero-copy {
    max-width: 100%;
    text-align: center;
  }

  .section-line {
    margin-left: auto;
    margin-right: auto;
  }

  .search-wrapper {
    margin: 0 auto;
  }

  .hero-image-wrap {
    text-align: center;
  }

  .help-title {
    font-size: 2.8rem;
  }

  .support-card {
    text-align: center;
  }

  .section-heading {
    font-size: 1.8rem;
  }
}

@media (max-width: 767px) {
  .help-title {
    font-size: 2.3rem;
  }

  .section-heading {
    font-size: 1.6rem;
  }

  .improved-title {
    font-size: 1.6rem;
  }

  .manage-subscription-btn {
    min-width: 100%;
  }

  .quick-link {
    min-width: 100px;
  }

  .faq-main-icon {
    max-width: 110px;
  }
}

/* =========================
   REVIEWS SECTION
========================= */
.reviews-section {
  background: #000;
  padding: 80px 0 90px;
  overflow: hidden;
}

.reviews-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
  line-height: 1.05;
}

/* Estrellas */
.reviews-stars {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 10px;
}

.reviews-stars .star {
  display: inline-block;
  color: #ffd400;
  line-height: 1;
  text-shadow:
    0 0 0 #ffea66,
    1px 1px 0 #c9a300;
  transform-origin: center;
}

.reviews-stars .star-sm {
  font-size: 2.2rem;
  transform: translateY(8px);
}

.reviews-stars .star-md {
  font-size: 3rem;
  transform: translateY(3px);
}

.reviews-stars .star-lg {
  font-size: 4.5rem;
}

/* Slider */
.reviews-slider-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 70px;
}

.reviews-viewport {
  width: 100%;
}

.reviews-track {
  display: flex;
  gap: 18px;
  transition: transform 0.45s ease;
  will-change: transform;
}

/* 2 cards visibles desktop */
.review-card {
  flex: 0 0 calc(50% - 9px);
  background: linear-gradient(90deg, #1b1d22 0%, #202227 100%);
  border: 1px solid rgba(255,255,255,0.06);
  min-height: 185px;
  max-height: 330px;
  padding: 14px 18px 16px;
  color: #fff;
  position: relative;
}

/* Header */
.review-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

.review-avatar.orange { background: #f56b2a; }
.review-avatar.blue   { background: #1877f2; }
.review-avatar.green  { background: #1fa971; }
.review-avatar.purple { background: #7c4dff; }
.review-avatar.pink { background: #ff4c9b; }
.review-avatar.red { background: #e10a00; }

.review-user-info {
  flex: 1;
  min-width: 0;
}

.review-name {
  font-size: 1rem;
  font-weight: 600;
  color: #8eb8ff;
  line-height: 1.1;
}

.review-meta-top {
  font-size: 0.8rem;
  color: #c4c4c4;
  margin-top: 2px;
}

.review-info-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  border: 1px solid #8a8a8a;
  color: #c9c9c9;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
}

/* LÃƒÂ­nea rating */
.review-rating-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.review-stars-small {
  color: #ffc400;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.review-time {
  font-size: 0.95rem;
  color: #d6d6d6;
}

.review-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  border: 1px solid #7d7d7d;
  border-radius: 4px;
  padding: 2px 6px;
  line-height: 1;
}

.review-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
  color: #f2f2f2;
}

/* Flechas */
.reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 2rem;
  font-weight: 700;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.reviews-nav:hover {
  transform: translateY(-50%) scale(1.08);
}

.reviews-prev {
  left: 8px;
}

.reviews-next {
  right: 8px;
}

/* Botones */
.reviews-buttons{
  display: flex;
  gap: 12px;
}
.reviews-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 14px 18px;
  background: #c40000;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.25s ease;
}

.reviews-btn:hover {
  background: #e00000;
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991.98px) {
  .reviews-slider-wrapper {
    padding: 0 55px;
  }

  .review-card {
    flex: 0 0 100%;
  }

  .reviews-nav {
    width: 48px;
    height: 48px;
    font-size: 1.7rem;
  }
}

@media (max-width: 575.98px) {
  .reviews-section {
    padding: 60px 0 70px;
  }

  .reviews-slider-wrapper {
    padding: 0 42px;
  }

  .reviews-title {
    margin-bottom: 4px;
  }

  .reviews-btn {
    width: 100%;
    max-width: 320px;
    min-width: auto;
    font-size: 0.85rem;
    letter-spacing: 2px;
  }

  .review-card {
    min-height: auto;
    padding: 14px;
  }

  .review-text {
    font-size: 0.95rem;
  }
}

/* =========================
   UNIVERSAL VIEWER
========================= */
.universal-viewer {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.universal-viewer.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.universal-viewer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(4px);
}

.universal-viewer__content {
  position: relative;
  z-index: 2;
  width: min(95vw, 1200px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.universal-viewer__media {
  width: 100%;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.universal-viewer__media img,
.universal-viewer__media video {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  object-fit: contain;
  background: #000;
}

.universal-viewer__media video {
  width: auto;
  min-width: min(90vw, 420px);
}

.universal-viewer__close {
  position: absolute;
  top: -8px;
  right: 0;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  transition: transform 0.2s ease, background 0.2s ease;
}

.universal-viewer__close:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.05);
}

body.viewer-open {
  overflow: hidden;
}

/* cursor bonito para indicar que se puede ampliar */
[data-lightbox] {
  cursor: pointer;
}

/* en mÃƒÂ³vil */
@media (max-width: 768px) {
  .universal-viewer__content {
    width: 100vw;
    padding: 14px;
  }

  .universal-viewer__close {
    top: 10px;
    right: 10px;
    position: fixed;
  }

  .universal-viewer__media img,
  .universal-viewer__media video {
    max-height: 80vh;
    border-radius: 10px;
  }
}