/* ===================================
   ESTILOS ESPECÍFICOS - PÁGINA HBO MAX
   =================================== */

/* ===================================
   HERO HBO MAX
   =================================== */
.hbo-hero {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.hbo-hero-banner {
  width: 100%;
  height: auto;
  display: block;
}

.hbo-hero-text {
  position: absolute;
  top: 65%;
  left: 65%;
  transform: translate(-50%, -50%);
  width: 600px;
  max-width: 90%;
  z-index: 2;
}

.hbo-hero-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  margin: 0;
  text-align: center;
}

.hbo-hero-text p b {
  color: #333;
  font-weight: 700;
}

/* ===================================
   LOGOS SEÇÃO
   =================================== */
.hbo-logos-section {
  text-align: center;
  margin: 80px 0 40px;
  padding: 0 20px;
}

.hbo-logos-section h2 {
  font-weight: 300;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 32px;
  margin-bottom: 40px;
}

.hbo-logos-section h2 b {
  font-weight: 800;
  color: #555;
}

.hbo-logos {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hbo-logos img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===================================
   BANNER DE CONTEÚDOS
   =================================== */
.hbo-banner-content {
  width: 100%;
  overflow: hidden;
  margin: 40px 0;
}

.hbo-banner-content img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===================================
   PLANOS HBO MAX
   =================================== */
.hbo-planos {
  padding: 80px 20px;
  background: #f9f9f9;
}

.hbo-planos-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px;
}

.hbo-texto-planos {
  max-width: 380px;
  text-align: left;
}

.hbo-texto-planos h3 {
  font-size: 32px;
  color: #555;
  font-weight: 800;
  margin: 0 0 20px;
  line-height: 1.2;
}

.hbo-texto-planos p {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.hbo-cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.hbo-card-plan {
  background-color: #dcdcdc;
  border-radius: 50px;
  width: 240px;
  padding: 40px 30px 90px;
  text-align: center;
  color: #fff;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.hbo-card-plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hbo-card-plan.orange {
  background: linear-gradient(135deg, #ff6b00, #ff8c00);
}

.hbo-card-plan.gray {
  background: linear-gradient(135deg, #bfbfbf, #999999);
}

.hbo-card-plan h4 {
  font-size: 48px;
  margin: 0 0 25px;
  font-weight: 800;
  color: #fff;
}

.hbo-card-plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  font-size: 15px;
  text-align: left;
  color: #fff;
}

.hbo-card-plan ul li {
  margin: 10px 0;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.hbo-card-plan ul li::before {
  content: "▶";
  font-size: 10px;
  margin-right: 10px;
  opacity: 0.8;
}

.hbo-card-plan .btn {
  background-color: #fff;
  color: #ff6600;
  border: none;
  border-radius: 30px;
  padding: 14px 35px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hbo-card-plan .btn:hover {
  background-color: #ff6600;
  color: #fff;
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

/* ===================================
   RESPONSIVO
   =================================== */
@media (max-width: 768px) {
  .hbo-hero {
    height: auto;
    min-height: 400px;
    display: flex;
    flex-direction: column;
  }

  .hbo-hero-banner {
    width: 100%;
    height: auto;
    min-height: 250px;
    object-fit: cover;
  }

  .hbo-hero-text {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 30px 20px !important;
    background: #fff;
    box-sizing: border-box;
  }

  .hbo-hero-text p {
    font-size: 15px !important;
    line-height: 1.7 !important;
    text-align: center !important;
    color: #666 !important;
  }

  .hbo-hero h1 {
    font-size: 36px;
  }

  .hbo-hero-content {
    padding: 30px;
    margin: 0 20px;
  }

  .hbo-logos-section {
    margin: 60px 0 30px;
    padding: 0;
  }

  .hbo-logos-section h2 {
    font-size: 20px;
    padding: 0 20px;
    margin-bottom: 30px;
  }

  .hbo-logos {
    width: 100%;
    padding: 0;
  }

  .hbo-logos img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block;
  }

  .hbo-planos {
    padding: 60px 20px;
  }

  .hbo-planos-wrapper {
    gap: 40px;
  }

  .hbo-texto-planos {
    text-align: center;
  }

  .hbo-texto-planos h3 {
    font-size: 26px;
  }

  .hbo-card-plan {
    width: 220px;
  }
}

@media (max-width: 640px) {
  .hbo-hero {
    height: 300px;
  }

  .hbo-hero h1 {
    font-size: 28px;
  }

  .hbo-hero-content {
    padding: 20px;
  }

  .hbo-hero p {
    font-size: 14px;
  }

  .hbo-logos-section {
    margin: 50px 0 25px;
    padding: 0;
  }

  .hbo-logos-section h2 {
    font-size: 18px;
    padding: 0 15px;
    margin-bottom: 25px;
  }

  .hbo-logos {
    width: 100%;
    padding: 0;
  }

  .hbo-logos img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block;
  }

  .hbo-planos {
    padding: 40px 20px;
  }

  .hbo-texto-planos h3 {
    font-size: 24px;
  }

  .hbo-texto-planos p {
    font-size: 14px;
  }

  .hbo-card-plan {
    width: 200px;
    padding: 35px 25px 85px;
  }

  .hbo-card-plan h4 {
    font-size: 40px;
  }
}
