/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding: 30px 0 0 0;
  min-height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Fix for carousel height consistency */
.hero .carousel-inner {
  height: 100%;
}

.hero .carousel-item {
  min-height: 550px; /* Ensures a minimum height */
}

/* Ensure the row inside carousel item takes full width and aligns properly */
.hero .carousel-item > .row {
  width: 100%;
  margin: 0;
  min-height: 550px; /* Ensure row matches the item height to enable vertical centering */
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(135deg, var(--color-pw-2) 10%, var(--color-pw-2) 45%, transparent 45%, transparent 100%); */
  opacity: 0.05;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding: 10px 15px;
}

.hero .hero-content {
  padding-right: 30px;
}

@media (max-width: 991px) {
  .hero .hero-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 50px;
  }
}

.hero .hero-content h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero .hero-content h1 span {
  color: var(--color-pw-1);
  position: relative;
}

@media (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  .hero .hero-content h1 {
    font-size: 32px;
  }
}

.hero .hero-content p {
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 35px;
  max-width: 500px;
}

@media (max-width: 991px) {
  .hero .hero-content p {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .hero .hero-content p {
    font-size: 16px;
  }
}

.hero .hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .hero .hero-actions {
    flex-direction: column;
    gap: 20px;
  }
}

.hero .btn-video {
  color: var(--default-color);
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}

.hero .btn-video i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-pw-1);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--color-pw-1), transparent 70%);
}

.hero .btn-video:hover {
  color: var(--color-pw-1);
}

.hero .btn-video:hover i {
  background: color-mix(in srgb, var(--color-pw-1), transparent 15%);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--color-pw-1), transparent 60%);
  transform: scale(1.1);
}

.hero .hero-image {
  position: relative;
  text-align: center;
}

@media (max-width: 991px) {
  .hero .hero-image {
    margin-top: 50px;
  }
}

.hero .hero-image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, color-mix(in srgb, var(--color-pw-1), transparent 90%) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulse 4s ease-in-out infinite;
}

@media (max-width: 768px) {
  .hero .hero-image::before {
    width: 300px;
    height: 300px;
  }
}

.hero .floating {
  max-width: 85%;
  height: auto;
  animation: floating 3s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%));
}

@media (max-width: 768px) {
  .hero .floating {
    max-width: 90%;
  }
}

@keyframes floating {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

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

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.1;
  }
}

/* Pricing cards refinements to match attachment */
.pricing-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 16px;
  padding: 24px;
}

.lh{
  height: 50vh;
}

/* Marca d'água no destaque: topo-direita, sem repetir, crescimento suave no hover */
.pricing-card.featured::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 30%;
  background-image: url('/assets/images/icons/logo-1.png');
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 100% auto; /* escala inicial */
  opacity: 0.30; 
  transform-origin: right top;
  transform: scale(1);
  transition: transform 1.2s ease;
  pointer-events: none;
  z-index: 0;
}
.pricing-card.featured:hover::before {
  transform: scale(1.15);
}
.pricing-card .featured-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-pw-1);
  color: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 600;
  font-size: .875rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pricing-card .featured-badge i { font-size: 0.9rem; }
.pricing-card .plan-header .plan-name {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.pricing-card .plan-header .plan-description {
  color: var(--default-color);
  opacity: .8;
  margin-bottom: 14px;
}
.pricing-card .pricing-display .price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.pricing-card .pricing-display .currency { font-size: 1rem; }
.pricing-card .pricing-display .amount { font-size: 2.5rem; font-weight: 800; }
.pricing-card .pricing-display .period { font-size: 1rem; opacity: .9; }
.pricing-card .pricing-display .old-price {
  margin-top: 4px;
  color: var(--default-color);
  opacity: .6;
  font-size: .95rem;
  text-decoration: line-through;
}
.pricing-card .pricing-display .setup {
  margin-top: .25rem;
  font-size: .9rem;
  opacity: .8;
}
.pricing-card .features-list { margin-top: 14px; }
.pricing-card .feature { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; }
.pricing-card .feature i { color: #20a052; font-size: 1.1rem; }
.pricing-card .btn-plan {
  display: block;
  margin-top: 18px;
  padding: 12px;
  border: 2px solid rgba(0,0,0,0.16);
  border-radius: 10px;
  text-align: center;
  color: var(--default-color);
  background: transparent;
  font-weight: 600;
  transition: border-color .2s ease, color .2s ease, background-color .2s ease;
}
.pricing-card .btn-plan:hover {
  border-color: var(--color-pw-1);
  color: var(--color-pw-1);
  background: rgba(171,27,22,0.04);
}

/* Segmented pill toggle (Clube/Eventos e Mensal/Anual) */
.segmented-toggle {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 4px;
}
.segmented-toggle .toggle-btn {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--default-color);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.segmented-toggle .toggle-btn.active {
  background: var(--color-pw-1);
  color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.segmented-toggle .toggle-btn:not(.active):hover {
  background: rgba(0,0,0,0.04);
}

/* btn select price */
.btn-color-pw {
    color: var(--color-pw-1) !important;
    border-color: var(--color-pw-1) !important;
}

.btn-color-pw.active,
.btn-color-pw:hover {
    background-color: var(--color-pw-1) !important;
    color: #fff !important;
}

/* Hero carousel indicators */
#heroUnifiedCarousel .carousel-indicators {
  position: absolute;
  bottom: 20px;
}

#heroUnifiedCarousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
  margin: 0 6px;
}

#heroUnifiedCarousel .carousel-indicators .active {
  background-color: var(--color-pw-1);
}

/*--------------------------------------------------------------
# About Section Background
--------------------------------------------------------------*/
.about.back-session {
  background-image: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2), 
    rgba(255, 255, 255, 0.5)), 
    url('../images/home/bkc.png'
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}