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

* {
  box-sizing: border-box
}

body {
  background-color: #FDFEFA;
}

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

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;
}

/*NAV BAR*/
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #FDFEFA;
  color: black;
  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: black;
}

.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: black;
  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: black;
  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: currentColor
}

.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: #FDFEFA;
  }


  .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: #FDFEFA;

  }

  @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 */
.btn-banner {
  padding: 10px 0;
  width: 250px;
  font-weight: 600;
  display: block;
  background: var(--buttom, linear-gradient(186deg, #26C8CD 19.6%, #00451E 169.62%));
  border: none;
  font-size: 1.5rem;
  transition: all 0.4s;
  border-radius: 10px;
  margin: auto;
}

.btn-banner a {
  color: white !important;

}

/*BANNERS PAGES*/

.banner {
  background-image: url(../img/banner-home.png);
  height: 100vh;
  margin: auto;
  background-color: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
}

.header-text {
  padding: 150px;
}

.header-text h1 {
  color: white;
}

.banner .header-text {
  text-align: center;
}

.banner h2 {
  max-width: 600px;
  padding: 20px 0;
  margin: auto;
  color: white;
}


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

  }

  .title-buttom h2 {
    font-size: 50px !important;
    margin-bottom: 35px;
  }

  .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;
  }

  .header-text {
    padding: 100px 0;
  }
}

/*TITLE ARROW HOME*/
.arrow {
  display: flex;
  max-width: 1240px;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 50px 0;
}

@media (max-width: 768px) {
  .arrow {
    flex-direction: column;
  }

  .arrow-title p {
    font-size: 16px !important;
    max-width: 300px !important;
  }

  .arrow-title {
    margin-left: 0px !important;
    padding: 0 20px;
  }

}

.arrow img {
  width: 200px;
}

.arrow-title {
  margin-left: 55px;
}


.arrow-title h2 {
  font-size: 40px !important;
  font-style: normal !important;
  font-weight: 800 !important;
  line-height: normal !important;
  text-transform: uppercase !important;
}

.arrow-title p {
  text-align: justify;
  font-size: 25px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  max-width: 700px;
}

.arrow-title-right {
  margin-right: 55px;
}

.arrow-title-right h2 {
  font-size: 40px !important;
  font-style: normal !important;
  font-weight: 800 !important;
  line-height: normal !important;
  text-transform: uppercase !important;
}

.arrow-title-right p {
  text-align: justify;
  font-size: 25px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  max-width: 700px;
}


@media (max-width: 768px) {

  .arrow-title-right p {
    font-size: 16px !important;
    max-width: 300px !important;
  }

  .arrow-title-right {
    margin-right: 0px !important;
    padding: 0 20px;
  }

}

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

.title-cards-home {
  text-align: center !important;
  font-size: 100px !important;
  font-style: normal !important;
  font-weight: 800 !important;
  line-height: normal !important;
  margin-bottom: -50px;

}


.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 SECTION GAMES */
.cards-home-game {
  overflow: hidden;
  margin: 0 auto;
  background: #EFF0F3;
}

.cards-home-recipes {
  overflow: hidden;
  margin: 0 auto;
}


body.recipes .card {
  background-color: white;
  box-shadow: 5px 5px 14px #dddddd;
}

body.fitness .card {
  background-color: white;
  padding: 20px;
}

.card-slider {
  display: flex;
  gap: 20px;
  scroll-behavior: smooth;
  transition: transform 0.8s ease;
  height: 600px;
  justify-content: center;
  max-width: 1240px;
  margin: auto;
  align-items: center;
}

@media (max-width: 768px) {
  .card-slider {
    flex-direction: column;
    min-height: 500px;
    flex-wrap: wrap;
  }
}

.card {
  flex: 0 0 calc(25% - 15px);
  border-radius: 12px;
  text-align: center;
  padding: 16px;
  border: none;
  background-color: transparent;
}

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

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

.card .star {
  color: gold;
  font-size: 1.1em;
  margin-left: 4px;
}

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

.btn-free {
  display: flex;
  padding: 15px 20px;
  border: black solid 1px;
  justify-content: center;
  color: black;
  border-radius: 5px;
}

.premium-buttom {
  display: flex;
  border-radius: 5px;
  background: var(--buttom, linear-gradient(186deg, #26C8CD 19.6%, #00451E 169.62%));
  justify-content: center;
  padding: 10px 0;
  border-radius: 5px;

  h2 {
    font-weight: 900 !important;
    color: white;
  }
}


/* 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 {
    padding: 50px;
  }

  .cards-home-game {
    margin: auto;
  }

}

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


/*GAMES CARDS HOME*/

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

.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;
}

.car-games .star {
  color: gold;
  font-size: 1.1em;
  margin-left: 4px;
}

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

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

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




/* HOME REVIEWS */
.testimonials-section {
  position: relative;
  width: 100%;
  background: url(../img/background-img.home.png) no-repeat center center/cover;
  min-height: 750px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 520px;
  padding-bottom: 120px;
}

.testimonials-container {
  background-color: #EFF0F3;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin: 0 auto;
  padding: 60px 50px;
  max-width: 1150px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.testimonial-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  width: 230px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

.stars {
  color: #f6c600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.testimonial-card h4 {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.testimonial-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
  .testimonials-section {
    padding-top: 460px;
  }

  .testimonials-container {
    gap: 30px;
    padding: 50px 40px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding-top: 320px;
  }

  .testimonials-container {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
  }
}






/*MODAL POP UP*/
.modal-overlay {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  backdrop-filter: blur(20px);
  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;
}

.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: black;
  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;
  text-align: justify;

}

.article ul li {
  color: black;
}

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

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

  }
}

/* FOOTER */
footer {
  border-top: black 1px solid;
  color: black;
}

footer p {
  font-size: 13px;
}

footer a {
  color: black;
}

footer a:hover {
  text-transform: underline;
}

.copyright {
  color: black;
}

.copyright a {
  color: black;
}

footer .icon-gamearena {
  font-size: 40px;
}

footer h5 {
  font-size: 1rem;
  line-height: 1.5rem;
}

footer h5 .icon-Logo-Gamezboy {
  font-size: 1.2rem;
}

.icon-Logo-Gamezboy img {
  width: 30% !important;
}

b,
strong {
  font-weight: bold !important;
}

a h3.full-name {
  color: black;
}


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

.faq__question {
  font-family: "Ubuntu", sans-serif;
  border-radius: 3px;
  outline: 0;
  color: white;
  display: flex;
  align-items: center;
  background:var(--buttom, linear-gradient(186deg, #26C8CD 19.6%, #00451E 169.62%));
  padding: 2rem;
  cursor: pointer;
  font-weight: 800;
  font-size: 22px;
}

.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;
  background: rgb(0 0 0 / 50%);
  border-radius: 5px;
  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;
  color: white;
  font-size: 18px;
}

@-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;
  color: white;
}

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

}



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

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

.review-page h1{
  text-align: left !important;
  font-size: 40px !important;
  max-width: 600px;
  padding: 20px 0;
}

.review-page p {
  max-width: 700px;
}

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

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

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

.side-card {
  box-shadow: 1px 1px 15px rgb(177, 177, 177);
  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: black;
}

.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;
  }
}


/*PAGES GAMES*/

.banner-games {
  background-image: url(../img/football-banner.png);
  margin: auto;
  background-color: cover;
  background-repeat: no-repeat;
}


.header-text h1 {
  color: white;
}


.banner-games .header-text {
  text-align: center;
}

.banner-games h2 {
  max-width: 600px;
  padding: 20px 0;
  margin: auto;
  color: white;

}



/*PAGES TIPS*/

.banner-tips {
  background-image: url(../img/recipes.png);
  margin: auto;
  background-color: cover;
  background-repeat: no-repeat;
}

.header-text h1 {
  color: white;
}


.banner-tips .header-text {
  text-align: center;
}

.banner-tips h2 {
  max-width: 600px;
  padding: 20px 0;
  margin: auto;
  color: white;

}

/*PAGES REVIEWAS*/

.banner-reviews {
  background-image: url(../img/main-reviews.png);
  margin: auto;
  background-color: cover;
  background-repeat: no-repeat;
}

.header-text h1 {
  color: white;
  padding-bottom: 20px;
}

@media (max-width: 768px) {
  .header-text h1 {
    font-size: 40px !important;
  }
}


.banner-reviews .header-text {
  text-align: center;
}

.banner-reviews h2 {
  max-width: 600px;
  padding: 20px 0;
  margin: auto;
  color: white;

}



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

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

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

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

/*HERO TIP PAGE CRASH*/
.hero-crash {
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 40px;
  color: #fff;
  position: relative;
  background-image: url(../img/rotation-football-banner.png);
}

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

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

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


/*HERO TIP PAGE POKEMON*/
.hero-pokemon {
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 40px;
  color: #fff;
  position: relative;
  background-image: url(../tenis/smarter-swings/tenis-article-2.png);
}

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

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

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


/*HERO TIP PAGE MICKET*/
.hero-mickey {
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 40px;
  color: #fff;
  position: relative;
  background-image: url(../tenis/tennis-2025/tenis-article-1.png);
}

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

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

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



/*HERO TIP PAGE SONIC*/
.hero-sonic {
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 40px;
  color: #fff;
  position: relative;
  background-image: url(../basket/Hoops/basket3.png);
}

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

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

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



/*HERO TIP PAGE spiderman*/
.hero-spiderman {
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 40px;
  color: #fff;
  position: relative;
  background-image: url(../basket/Next-Gen/basket4.png);
}

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

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

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


.banner-publish {
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px;
  color: #fff;
  position: relative;
  background-image: url(../img/backgroun-home-publis.png);
  border-radius: 20px;
  margin: 20px auto;
  max-width: 1240px;

}


.banner-publish h2 {
  color: white;
  font-size: 35px !important;
  font-weight: 800 !important;
}

.banner-publish p {
  color: white;
  font-size: 20px !important;
}

.live {
  display: flex;
  align-items: center;
}

.live h4 {
  margin-left: 15px;
  font-weight: 900;
}

.live-dot {
  width: 20px;
  height: 20px;
  background-color: #ff2b6d;
  /* el color central */
  border-radius: 50%;
  position: relative;
  animation: pulse 1.5s infinite;
}

.live-dot::before,
.live-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 43, 109, 0.4);
  animation: ripple 1.5s infinite;
}

.live-dot::after {
  animation-delay: 0.75s;
  /* segundo pulso desfasado */
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}