body {
    margin: 0px;
    padding: 0px;
    font-family: Arial, sans-serif;
}
.container {
    margin: 0 auto;
    padding: 150px 20px;
    max-width: 1200px;
}

.plano-forge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px;
}

.imagem {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    border: 3px solid #ffbf00;
    padding: 10px;
}

.p-f p{
  margin: 40px;
}

.texto {
    margin-left: 30px;
    max-width: 600px;
}

.p-f button{
    margin-top: 90px;
    margin-left: 50px;
    border-color: var(--a-footer);
    color: var(--a-footer);
    border-radius: 5px;
    background-color: transparent;
}

.p-f button:hover{
    border-color: #ffbf00;
    color: #ffbf00;
    border-radius: 5px;
    background-color: transparent;
}

.radio-input {
    margin-top: 20px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    flex-direction: row; /* Mantém os elementos lado a lado */
    gap: 0.5rem; /* Adiciona um gap pequeno entre os elementos */
  }
  
  .radio-input input {
    display: none;
  }
  
  .radio-input label {
    --border-color: var(--a-footer);
    border: 3px solid var(--border-color);
    border-radius: 6px;
    min-width: 5rem;
    margin: 0.5rem; /* Reduz a margem */
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
  }
  
  .radio-input input:checked + label {
    --border-color: #ffbf00;
    border-color: var(--border-color);
    border-width: 2px;
  }
  
  .radio-input label:hover {
    --border-color: #ffbf00;
    border-color: var(--border-color);
  }
  
  .radio-input input:checked + label span.circle::before {
    content: "";
    display: inline;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #2f64d8;
    width: 15px;
    height: 15px;
    border-radius: 50%;
  }
  
  .text {
    padding: 2px;
    color: var(--a-footer);
    display: flex;
    align-items: center;
  }
  
  .price {
    padding: 2px;
    color: var(--a-footer);
    display: flex;
    flex-direction: column;
    text-align: right;
    font-weight: bold;
  }
  
  .small {
    font-size: 10px;
    color: var(--a-footer);;
    font-weight: 100;
  }
  
  .info {
    position: absolute;
    display: inline-block;
    font-size: 11px;
    background-color: #ffbf00;
    color: rgb(0, 0, 0);
    border-radius: 15px;
    padding: 1px 9px;
    top: 0;
    transform: translateY(-50%);
    right: 5px;
  }



.planos-hover h2{
    margin: 30px;
}
.planos-hover p{
  margin: 40px;
}
.planos-hover h2:hover{
  transition: all 0.3s ease-in-out;
  color: #ffbf00;
}

.titulo-plano{
  font: 700 6rem 'Nunito Sans', sans-serif;
  font-size: 5rem;
  color: #ffbf00;
}
.opcaopagamento h3{
  margin-top: 50px;
  margin-left: 60px;
}

.opcaodepagamento p{
  margin: 20px;
}

.opcaodepagamento span{
  color: var(--span);
  margin-left: 40px;
}