.cardFistInfoPlano {
  border-radius: 16px;
  background: #fff;
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.cardFistInfoPlano:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.headerCardFistInfoPlano {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 3rem 1.8rem 3rem;
  background-color: white;
  border-bottom: 1px solid #f0f0f0;
}

.headerCardFistInfoPlano h2 {
  font-size: 1.75rem;
  white-space: nowrap;
  font-weight: 800;
  color: #333;
  margin: 0;
}

.headerCardFistInfoPlano p {
  font-size: 1.05rem;
  max-width: 360px;
  color: #666;
  line-height: 1.4;
  margin: 0.5rem 0 0 0;
}

.infoHeaderPrice {
  text-align: right;
}

.infoHeaderPrice h2 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 900;
  color: #333;
}

.infoHeaderPrice span {
  font-weight: 600;
  font-size: .9rem;
  color: #666;
}

.bodyCardFistInfoPlano {
  background-color: #fafafa;
  padding: 2.5rem 3rem;
  position: relative;
}

.bodyCardFistInfoPlano .line {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.bodyCardFistInfoPlano .line span {
  border-bottom: 2px dotted rgba(0, 0, 0, 0.2);
  transition: all .3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .8rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: #444;
  padding-bottom: 4px;
  position: relative;
}

.bodyCardFistInfoPlano .line span::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23333'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: cover;
  transition: .3s ease;
}

.bodyCardFistInfoPlano .line span:hover {
  border-bottom: 2px dotted #333;
  color: #000;
}

.bodyCardFistInfoPlano .line span:hover::before {
  transform: scale(1.15);
}

/* Tooltip */
.tooltip-item {
  position: relative;
  cursor: pointer;
}

.tooltip-content {
  display: none;
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  background-color: white;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.159);
  padding: 1rem;
  width: 270px;
  font-size: .8rem;
  font-weight: 400;
  text-align: left;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  line-height: 1.4;
}

.tooltip-item:hover .tooltip-content {
  display: block;
}

.tooltip-arrow {
  position: absolute;
  bottom: -8px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid white;
}

.tooltip-arrow::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: -8px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid rgba(0, 0, 0, 0.159);
  z-index: -1;
}

.tooltip-btn {
  display: block;
  width: 100%;
  margin-top: 0.8rem;
  padding: 0.5rem;
  background-color: black;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  text-align: center;
}

.tooltip-btn:hover {
  background-color: #333;
}

/* Accordion */
.accordion-features {
  border-radius: 10px;
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  width: 100%;
  padding: 1rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.accordion-header:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.accordion-header span {
  font-weight: 600;
  color: #333;
}

.accordion-header i {
  transition: transform 0.3s;
  color: #666;
}

.accordion-header.active i {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: rgba(0, 0, 0, 0.02);
}

.accordion-content.active {
  max-height: 200px;
}

.accordion-content p {
  padding: 1rem;
  margin: 0;
  color: #666;
  line-height: 1.5;
}

/* Contador Card */
.contadorCard {
  border-radius: 16px;
  background: #fff;
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  padding: 2.5rem 2.5rem 1.5rem 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contadorCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.contadorCardHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.quantity-stepper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btnQuantity {
  padding: 9px 15px;
  font-weight: 700;
  border-radius: 10px;
  background: transparent;
  border: 2px solid #333;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: .9rem;
}

.btnQuantity:hover {
  background: #333;
  color: #fff;
  transform: scale(1.05);
}

.quantity-stepper .titleQuantitystepper {
  font-weight: 700;
  font-size: 0.9rem;
  color: #333;
}

.quantity {
  font-weight: 700;
  font-size: 1.2rem;
  min-width: 30px;
  text-align: center;
  color: #333;
}

.priceHeader {
  display: flex;
  flex-direction: column;
  text-align: end;
}

.priceHeader .msgPrice {
  font-size: 0.6rem;
  font-weight: 600;
  white-space: nowrap;
  color: #666;
}

.priceHeader .price {
  font-weight: 900;
  font-size: 1.8rem;
  color: #333;
}

.contadorCardBody p {
  width: 100%;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Card Valor Final */
.cardValorFinal {
  border-radius: 16px;
  background: #fff;
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.cardValorFinalHeader {
  border-bottom: 1px solid rgba(0, 0, 0, 0.144);
  padding: 2.5rem 2rem;
}

.cardValorFinalHeader h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0px;
}

.resumePrice {
  padding: 2.5rem 2rem;
  background-color: white;
}

.resumePrice .resumeLinePrice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.7rem;
}

.resumePrice .resumeLinePrice span {
  font-weight: 800;
  font-size: 1.1rem;
}

.valorFinalPrice {
  background-color: black;
  color: white;
  padding: 3rem 2rem;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.priceFinalArea {
  display: flex;
  justify-content: space-between;
}

.priceFinalArea span {
  font-weight: 700;
}

.priceFinalArea .priceFinal {
  font-size: 2.1rem;
  font-weight: 800;
}

.btnTeste {
  background-color: white;
  margin-top: 2.5rem;
  color: black;
  padding: 1rem 4rem;
  text-decoration: none;
  border-radius: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  border: 1px solid rgba(0, 0, 0, 0);
  transition: all .5s;
  white-space: nowrap;
}

.btnTeste:hover {
  background-color: black;
  color: white;
  border: 1px solid white;
}

/* Versão Mobile */
.contadorCardMobile {
  display: none;
}

/* Responsivo */
@media (max-width: 992px) {
  .headerCardFistInfoPlano {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 1rem;
    padding: 2rem 2rem 1.5rem 2rem;
  }

  .infoHeaderPrice {
    text-align: center;
    width: 100%;
  }

  .bodyCardFistInfoPlano {
    padding: 2rem 2rem;
  }

  .bodyCardFistInfoPlano .line {
    gap: 1.5rem;
    margin-bottom: 1.2rem;
  }

  .contadorCard {
    padding: 2rem 2rem 1.5rem 2rem;
  }

  .contadorCardHeader {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .priceHeader {
    text-align: left;
    width: 100%;
  }

  .contadorCardMobile {
    display: block;
  }

  .contadorCardMobile .quantity-stepper {
    display: flex;
    align-items: center;
    gap: .5rem;
    width: 100%;
    justify-content: space-between;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.242);
    border-radius: 10px;
  }

  .contadorCardDesktop {
    display: none;
  }

  .contadorCardMobile .titleQuantitystepper {
    font-weight: 700;
    padding-left: .2rem;
    font-size: 1.10rem;
  }
}

@media (max-width: 576px) {
  .headerCardFistInfoPlano,
  .bodyCardFistInfoPlano,
  .contadorCard {
    padding: 1.5rem;
    text-align: center;
  }

  .headerCardFistInfoPlano h2 {
    font-size: 1.5rem;
  }

  .infoHeaderPrice h2 {
    font-size: 1.8rem;
  }

  .bodyCardFistInfoPlano .line {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .bodyCardFistInfoPlano .line span {
    font-size: 1rem;
  }

  .quantity-stepper {
    gap: 1rem;
  }

  .contadorCardBody p {
    font-size: 1rem;
  }
}