:root {
  --c1: #31C5F7;
  /* azul celeste */
  --c2: #6C87F8;
  /* azul violeta */
  --c3: #C26BE0;
  /* violeta */
  --text: black;
  --nav-h: 60px;
  --maxw: 1200px;
}

* {
  box-sizing: border-box
}


a {
  text-decoration: none;
  color: white;
}

h1, h3, p {
  color: black;
}

h1 {
  font-size: 60px !important;
  font-weight: 700 !important;
}

h2 {
  font-size: 20px !important;
  font-weight: 400 !important;
  color: black !important;
}

/*NAV BAR*/
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: white;
  color: var(--text);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 10px 16px;
  min-height: var(--nav-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text)
}

.brand img {
  height: 28px;
  display: block
}

.links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  font-weight: 600;
}

.links a {
  color: var(--text);
  text-decoration: none;
  opacity: .95;
  letter-spacing: .2px;
  transition: opacity .2s, transform .2s;
}

.links a:hover {
  opacity: 1;
  transform: translateY(-1px)
}

.icons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 14px;

}

.icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .16);
  transition: transform .2s, background .2s;
}

.icon:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .22)
}

.icon svg {
  width: 20px;
  height: 20px;
  fill: black;
}

.nav-toggle {
  display: none
}

.burger {
  display: none;
  cursor: pointer;
  gap: 5px;
  padding: 6px 8px
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: black;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {

  .nav-toggle:checked {
    background-color: #120B37;

  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: auto;
  }

  .links,
  .icons {
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    width: 100%;
    padding: 20px 0;
    gap: 18px;
    animation: slideDown 0.3s ease;
  }


  .nav-toggle:checked~.links,
  .nav-toggle:checked~.icons {
    display: flex;
    background-color: red;

  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .links a {
    font-size: 1.1rem;

  }

  .links {
    padding-top: 100px;

  }

  .icons {
    flex-direction: row;
    justify-content: center;
  }
}


/* BUTTON */
button,
.btn {
  width: 250px;
  font-weight: 600;
  display: block;
  color: #fff !important;
  border: none;
  font-size: 1.5rem;
  transition: all 0.4s;
  border-radius: 10px;
  margin: 0;
}

.btn {
  background-color: #d84848;
  box-shadow: 0 5px 0 #a61616;
  text-shadow: 3px 2px 4px #a61616;
  width: 250px;
  font-weight: 600;
  display: block;
  color: #fff !important;
  border: none;
  font-size: 1.5rem;
  transition: all 0.4s;
  border-radius: 10px;
  margin: 0;
}

.btn a {
  color: white !important;
}

.btn:hover {
  font-weight: 600;
  display: block;
  color: #fff;
  border: none;
  font-size: 1.5rem;
  transition: all 0.4s;
  border-radius: 10px;
  margin: 0;
  background-color: #a61616;
}

/*BANNERS PAGES*/

.banner {
  position: relative;
  width: 100%;
  height: 600px;
  background: url('../img/background-home.png') no-repeat right center;
  background-size: cover;
  background-color: #020617;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 20px;
  overflow: hidden;
  padding-left: 60px;
  max-width: 1240px;
  margin: auto;
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.header-text {
  position: relative;
  z-index: 2;
  max-width: 600px;
  color: #fff !important;
}

.header-text h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff !important;

}

.header-text h2 {
  font-size: 1.1rem;
  font-weight: 400;
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 1.8rem;
  color: #fff !important;

}



.banner-games {
  position: relative;
  width: 100%;
  height: 600px;
  background: url('../img/frozen-game.png') no-repeat right center;
  background-size: cover;
  background-color: #020617;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 20px;
  overflow: hidden;
  padding-left: 60px;
  max-width: 1240px;
  margin: auto;
}

.banner-games::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}


.banner-tips {
  position: relative;
  width: 100%;
  height: 600px;
  background: url('../img/moana-tips.png') no-repeat right center;
  background-size: cover;
  background-color: #020617;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 20px;
  overflow: hidden;
  padding-left: 60px;
  max-width: 1240px;
  margin: auto;
}

.banner-tips::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}


/* Responsive */
@media (max-width: 768px) {
  .title-buttom {
    flex-direction: column;
    align-items: flex-start;
  }

  .title-buttom-tips {
    flex-direction: column;
    align-items: flex-start;
  }

  .title-buttom-review {
    flex-direction: column;
    align-items: flex-start;
  }

  .title-cards-home {
    display: flex;
    flex-direction: column;
  }

  .home p {
    display: flex;
    flex-direction: column;
    max-width: 300px;
  }

  .banner {
    flex-direction: column;
    max-width: 350px;
  }

  .banner img {
    width: 300px;
    padding-top: 30px;
  }

  .banner .header-text {
    max-width: 300px;
  }

  .header-text {
    padding: 0;
  }
}

/*TITTLE SECTION GAMES*/
.title-buttom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: auto;
  padding: 50px 0;

  h2 {
    font-size: 50px !important;
    font-weight: 700 !important;
  }
}

.title-buttom-tips {
  text-align: center;
  max-width: 1240px;
  margin: auto;
  padding: 50px 0;


  h2 {
    font-size: 50px !important;
    font-weight: 700 !important;
  }

  p {
    text-align: center;
    margin: auto;
    padding: 20px;
  }
}


.title-buttom-review {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: auto;

  h2 {
    font-size: 50px !important;
    font-weight: 700 !important;
  }
}

.home p {
  width: 600px;
}

.content-review {
  margin-top: 50px;
}

/*HOME SECTION BANNER BACKGOURND*/
.backgroun-banner {
  background-image: url(../img/background-banner.png);
  margin: auto;
  border-radius: 50px;
  max-width: 1240px;
  margin-top: 50px;
}

.glass {
  background: rgba(255, 255, 255, 0.15);
  /* capa translúcida */
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 80px;
  margin: auto;
  border-radius: 50px;
  max-width: 1240px;
}

button, .btn-background {
  background-color: transparent;
  width: 250px;
  font-weight: 600;
  padding: 5px 0;
  display: block;
  color: #fff;
  border: none;
  font-size: 1.5rem;
  transition: all 0.4s;
  border-radius: 10px;
  margin: auto;
}

.banner-text {
  max-width: 600px;
  margin: auto;
  text-align: center;
}

.banner-text h1 {
  padding: 20px 0;

}

/*responsive*/
@media (max-width: 768px) {
  .backgroun-banner {
    border-radius: 0px;
  }

  .banner-text h1 {
    padding: 20px 0;
    font-size: 30px !important;
  }

  .glass {
    border-radius: 0;
    padding: 80px 0;
  }
}

/* HOME SECTION GAMES */
.game {
  margin: 70px 0;
}

.cards-home-game {
  max-width: 1240px;
  margin: 0 auto;
}

.premium-games {
  max-width: 1240px;
  margin: 20px auto;

}

.card-slider {
  display: flex;
  gap: 20px;
  scroll-behavior: smooth;
  transition: transform 0.8s ease;
}

.card {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  text-align: center;
  padding: 20px;
}

.card-games {
  border-radius: 12px;
  text-align: center;
  padding: 16px;
}

.card:hover {
  transform: translateY(-3px);
}

.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 1.2rem !important;
  margin: 10px 0 14px;
}

.card-slider::-webkit-scrollbar {
  display: none;
}

.btn-free {
  display: flex;
  border: black solid 1px;
  background-color: #d84848;
  box-shadow: 0 5px 0 #a61616;
  text-shadow: 3px 2px 4px #a61616;
  padding: 15px 20px;
  justify-content: center;
  border: none;
  border-radius: 10px;
}

.premium-buttom {
  display: flex;
  border: #a61616 solid 2px;
  justify-content: center;
  padding: 10px 0;
  border-radius: 10px;

  h2 {
    font-weight: 800 !important;
    color: #a61616 !important;

  }

}

.premium-buttom-tips {
  display: flex;
  border: #a61616 solid 2px;
  justify-content: center;
  padding: 20px 0;
  border-radius: 10px;

  h2 {
    font-weight: 800 !important;
    color: #a61616 !important;

  }

}

.auto-scroll {
  animation: scroll-left 40s linear infinite;
}

.star-card {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .card {
    flex: 0 0 calc(33.333% - 15px);
  }
}

@media (max-width: 768px) {
  .auto-scroll {
    animation: none;
  }

  .card-slider {
    overflow-x: scroll;
  }

  .card {
    flex: 0 0 80%;
  }

  .cards-home-game {
    max-width: 300px;
  }

}


@media (max-width: 480px) {
  .card {
    flex: 0 0 100%;
  }
}

/*GAMES CARDS HOME*/

.card-games {
  border-radius: 12px;
  text-align: center;
  padding: 16px;

  h2 {
    font-weight: 900 !important;
    padding: 10px 0;
  }

  p {
    text-align: justify;
    height: 144px;
  }
}

.card-games:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.card-games img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.card-games h3 {
  font-size: 0.7rem !important;
  margin: 10px 0 14px;
}


/* Responsive */
@media (max-width: 768px) {

  .card-slider-1 {
    flex-direction: column;
  }

}


/*REVIEWS SECTION HOME*/
.title-buttom-review {
  padding: 60px 0;
}

@media (max-width: 768px) {

  .title-buttom-review, .title-buttom {
    padding: 20px 20px;
  }
}

.game-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 100px;
}

.card-reviews {
  border-radius: 16px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  width: 400px;
  padding: 15px;
  text-align: center;
  color: #fff;
  position: relative;
}

.imgs-reviews {
  display: flex;
  justify-content: space-around;
}

.title-review-star {
  border-top: solid 1px grey;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px;
  min-height: 220px;
}

.title-review-star p {
  text-align: justify;
}


.card-reviews .main-img {
  width: 220px;
  border-radius: 12px;
  margin-bottom: 10px;
}

.card-reviews .thumbs {
  display: flex;
  margin-bottom: 10px;
  flex-direction: column;
  justify-content: space-around;

}

.card-reviews .thumbs img {
  width: 110px;
  border-radius: 10px;
}

.display-star {
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.display-star img {
  height: 24px;
  width: 24px;
  margin-left: 200px;
}

.card-reviews h3 {
  font-size: 1.5rem;
  margin: 5px 0;
}



.card-reviews button {
  width: 100%;

}



/*MODAL POP UP*/
.modal-overlay {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  backdrop-filter: blur(12px);
  animation: fadeIn 0.3s ease;
}

.modal-dialog {
  background: white;
  border-radius: 12px;
  max-width: 420px;
  width: 90%;
  overflow: hidden;
  color: black;
  position: relative;
  animation: popIn 0.35s ease;
}

.modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 0.2px solid rgb(199, 199, 199);

}

.popup-image img {
  width: 100%;
  height: auto;
  display: block;
}

.modal-header h5 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 1rem 0 0.5rem;
}

.modal-body {
  padding: 0 1.2rem;
  line-height: 1.5;
}

.modal-footer {
  padding: 1.2rem 0 1.5rem;
}

.modal-body p {
  color: black;
}

.btn-close {
  position: absolute;
  top: 12px;
  right: 15px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-close:hover {
  opacity: 0.7;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes popIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-overlay.active {
  display: flex;
}

body.modal-open {
  overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
  .modal-dialog {
    margin: auto;

  }

  .modal-body p {
    font-size: 14px;
  }
}

/*POLITICS AND TERMS*/
.article {
  text-align: justify;
  width: 1240px;
  margin: auto;
}

.article h2 {
  color: black;
}

.article p {
  color: black;
}

.article ul li {
  color: black;
}

.article a {
  color: black;
}

/* Responsive */
@media (max-width: 768px) {
  .article {
    max-width: 340px;
  }

  .article .term-h1 {
    font-size: 50px !important;
    max-width: 340px;

  }
}

/* FOOTER */
.footer {
  background-color: white;
  color: #fff;
  padding: 40px 60px 20px;
  border-top: 1px solid #a61616;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1240px;
  margin: auto;
}

.footer-container img {
  width: 10%;
}

.footer-logo .logo-placeholder {
  width: 120px;
  height: 100px;
  border-radius: 4px;
}

.footer-column h3 {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-weight: 700;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: black;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}



.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #2a2a2a;
  padding-top: 20px;
  font-size: 13px;
}

.footer-bottom a {
  color: black;
  text-decoration: underline;
  transition: color 0.3s ease;
}


@media (max-width: 768px) {
  .footer-container {
    display: block;
    /* quita el flex en móviles */
    text-align: center;
  }

  .footer-container img {
    width: 30%;
  }

  .footer-cta {
    margin-top: 20px;
  }

  .footer-bottom {
    font-size: 12px;
  }

  .footer-column li {
    margin-bottom: 0px;
  }

  .footer-column h3 {
    margin-top: 20px;
  }

}

/*FAQS STYLES*/
.faqs {
  display: grid;
  gap: 2rem;
}

.faq__question {
  font-family: "Ubuntu", sans-serif;
  border-radius: 3px;
  outline: 0;
  color: #fff;
  display: flex;
  align-items: center;
  background: #a61616;
  padding: 1rem;
  cursor: pointer;
  font-weight: 500;
  font-size: 18px;
}

.faq__question::before {
  display: inline-block;
  content: "×";
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-right: 5px;
  font-weight: 900;
  transform: rotatez(-135deg);
  transition: all 0.4s ease-in-out;
}

.faq__answer {
  padding: 1rem;
  border: 1px solid rgb(106, 106, 106);
  border-radius: 5px;
  color: #fff;
}

.faq__answer a {
  color: black;
}

.faq[open] {
  outline: 0;
}

.faq[open] .faq__question::before {
  transform: rotate(0);
}

.faq[open] .faq__answer {
  -webkit-animation: slide-down 0.5s ease-in-out;
  animation: slide-down 0.5s ease-in-out;
}

@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-1rem);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-1rem);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


@keyframes animStar {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-2000px);
  }
}

.xwing {
  position: absolute;
  left: 7%;
  width: 650px;
  animation: fly-in 2s ease-out;
}

/* Responsive */
@media all and (max-width: 1300px) {
  .xwing {
    width: 500px;
  }
}

@media all and (max-width: 800px) {
  .xwing {
    width: 450px;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    animation: fly-in-mobile 2s ease-out;
  }


}

@keyframes fly-in {
  0% {
    left: -900px;
    top: -23%;
  }

  100% {
    left: 7%;
    top: 90px;
  }
}

@keyframes fly-in-mobile {
  0% {
    left: -900px;
  }

  100% {
    left: 50%;
  }
}


/*PAGES REVIEWS & TIP*/

/* HERO */
.hero {
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 40px;
  color: #fff;
  position: relative;
  background-image: url(../img/main-reviews.png);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: auto;
}

.hero h2 {
  font-size: 70px !important;
  font-weight: 700;
  margin-bottom: 8px;
}

.hero p {
  font-size: 30px !important;
  opacity: 0.9;
  max-width: 650px;
}

/* LAYOUT */
.page {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
  margin: 60px auto;
  padding: 0px 50px;
}

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

.review-page img {
  max-width: 100%;
  padding: 30px 0;
}

.back-btn {
  display: inline-block;
  background: #d84848;
  color: black;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 6px;
  transition: background 0.3s;
}

/* SIDEBAR */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.side-card {
  background-color: #343444;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s;
  display: flex;
}

.side-card:hover {
  transform: translateY(-3px);
}

.side-card img {
  object-fit: cover;
  width: 30%;
}

.side-info {
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
}

.side-info h3 {
  font-size: 1rem;
  color: #fff;
}

.side-info a {
  color: #aaa;
  text-decoration: none;
  font-size: 1.2rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .page {
    display: flex;
    flex-direction: column;
  }

  .review-page {
    max-width: 300px;
  }

  .review-page img {
    max-width: 300px;
  }
}


/*HERO TIPS PAGE PIRATE*/
.hero-pirate {
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 40px;
  color: #fff;
  position: relative;
  background-image: url(../tips/moana/background-moana.png);
}

.hero-pirate::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-pirate h2 {
  color: white !important;
  font-size: 50px !important;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.hero-pirate p {
  font-size: 20px !important;
  opacity: 0.9;
  max-width: 650px;
  text-align: center;
  margin: auto;
  color: white !important;
}


/*HERO TIPS PAGE SIMPSONS*/
.hero-simps {
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 40px;
  color: #fff;
  position: relative;
  background-image: url(../tips/ferb/background-ferb.png);
}

.hero-simps::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* capa semitransparente */
}

.hero-simps h2 {
  font-size: 50px !important;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
  color: white !important;
}

.hero-simps p {
  font-size: 20px !important;
  opacity: 0.9;
  max-width: 650px;
  text-align: center;
  margin: auto;
  color: white !important;

}



/*HERO TIPS PAGE SPIDER*/
.hero-spi {
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 40px;
  color: #fff;
  position: relative;
  background-image: url(../tips/spiderverse/background-spi.png);
}

.hero-spi::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* capa semitransparente */
}

.hero-spi h2 {
  font-size: 50px !important;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
  color: white !important;
}

.hero-spi p {
  font-size: 20px !important;
  opacity: 0.9;
  max-width: 650px;
  text-align: center;
  margin: auto;
  color: white !important;

}

.tips-main {
  margin-top: 100px;
}

/*HERO REVIEWS PAGE SPIDER*/
.hero-spiderman {
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 40px;
  color: #fff;
  position: relative;
  background-image: url(../reviews/imgs/spiderman.png);
}

.hero-spiderman::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* capa semitransparente */
}

.hero-spiderman h2 {
  font-size: 50px !important;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

.hero-spiderman p {
  font-size: 20px !important;
  opacity: 0.9;
  max-width: 650px;
  text-align: center;
}


/*HERO REVIEWS PAGE MICKEY*/
.hero-mickey {
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 40px;
  color: #fff;
  position: relative;
  background-image: url(../reviews/imgs/mickey.png);
}

.hero-mickey::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* capa semitransparente */
}

.hero-mickey h2 {
  font-size: 50px !important;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

.hero-mickey p {
  font-size: 20px !important;
  opacity: 0.9;
  max-width: 650px;
  text-align: center;
}


/*HERO REVIEWS PAGE MICKEY*/
.hero-sonic {
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 40px;
  color: #fff;
  position: relative;
  background-image: url(../reviews/imgs/sonic.png);
}

.hero-sonic::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* capa semitransparente */
}

.hero-sonic h2 {
  font-size: 50px !important;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

.hero-sonic p {
  font-size: 20px !important;
  opacity: 0.9;
  max-width: 650px;
  text-align: center;
}



/*CARDS REVIEWS SLIDEER HOME*/
.reviews-slider {
  position: relative;
  overflow: hidden;
  max-width: 1240px;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: auto;
}

.slider-track {
  overflow: hidden;
  width: 100%;
}

.reviews-cards {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.card-rese {
  display: flex;
  background: #222;
  color: #fff;
  padding: 1rem;
  border-radius: 12px;
  min-width: 50%;
  box-sizing: border-box;
  flex-shrink: 0;
  margin-right: 1rem;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}

.card-rese img {
  width: 20%;
}

.card-rese .stars {
  width: 50%;
}

.card-rese p {
  width: 300px;
}

.nav-button-slider {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
  background-color: grey;
  width: 20px;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

@media (max-width: 768px) {
  .card-rese {
    flex-direction: column;
    align-items: flex-start;
    min-width: 100%;
    margin-right: 0.5rem;
  }

  .slider-track {
    width: 95%;
  }

}