/* planos.css */

/* Container geral da sessão de planos */
.secao-planos {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    z-index: 10; /* eleva o z-index para sobrepor qualquer fundo anterior */
}

.secao-planos h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    
}

.secao-planos p {
    font-size: 16px;
    color: #333;
    margin-bottom: 40px;
}

/* Abas de troca */
.abas-planos {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    
}

.abas-planos button {
    background-color: #f0f0f0;
    width: 542px;
    border: none;
    padding: 10px 30px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.abas-planos button.ativo {
    background-color: #000;
    color: #fff;
}

/* Container dos cards de planos */
.planos-container {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.planos-container.ativo {
    display: flex !important;
}

/* Cards dos planos */
.plano {
    width: 250px;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    flex-direction: column;
    justify-content: space-between;
    min-height: 450px;
    display: flex;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.plano h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.featur-title {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    line-height: 1;
    text-align: center;
  }

.plano p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.plano .preco {
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
    margin-top: auto;
}

.plano button {
    background-color: #000;
    color: #fff;
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 20px;
    align-self: center;
}

/* Cores dos planos (mensal ou anual) */
.cor-1 { background-color: #DFEBED; }
.cor-2 { background-color: #DEECDD; }
.cor-3 { background-color: #FDE8C9; }
.cor-4 { background-color: #E1D1FE; }

/* Aviso importante abaixo dos planos */
.info-importante {
    font-size: 12px;
    font-style: italic;
    color: #333;
    max-width: 800px;
    margin: 20px auto 40px;
    line-height: 1.4;
    text-align: left;
}

/* Bloco final de chamada para teste gratuito */
.bloco-teste {
    border: 3px solid #000000;
    padding: 40px 20px;
    margin-top: 60px;
    text-align: center;
    background-color: #fff; 
    position: relative;
    z-index: 10;
}

.bloco-teste h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.bloco-teste button {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.bloco-teste button:hover {
    opacity: 0.9;
}

/* Formulário de solicitação de teste */
.formulario-teste {
    background-color: #f3f3f3;
    max-width: 400px;
    margin: 30px auto;
    padding: 30px;
    border-radius: 8px;
    text-align: left;
    display: none;
}

.formulario-teste h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.formulario-teste label {
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.formulario-teste input {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.formulario-teste p {
    font-size: 12px;
    color: #444;
    margin-bottom: 20px;
}

.formulario-teste .botoes {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.formulario-teste .botoes button {
    flex: 1;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.formulario-teste .btn-fechar {
    background-color: #fde8c9;
}

.formulario-teste .btn-enviar {
    background-color: #deecdd;
}

/* Oculta elemento até que seja chamado via JS */
#formulario-teste.oculto {
    display: none !important;
}


/* Deixa o link do botão "Entre em contato" com o mesmo estilo dos outros */
  
.btn-planos {
    background-color: black;
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}
  
.btn-planos:hover {
    opacity: 0.9;
    font-weight: 500;
    background-color: #fff;
    color: #000;
    
}

.preco-old {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    align-self: center;
    margin-bottom: 8px;
  }
  
  .preco-old-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #333;
  }
  
  .preco-old-valor {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    text-decoration: line-through;
  }
  
  .preco {
    display: inline-block;
    align-self: center;
    margin: 0 0 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #000;
  }
  
  .promo-info {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 12px;
    color: #555;
    line-height: 1.4;
    margin: 0 auto 16px;
    max-width: 200px;
  }
  
  .promo-info strong {
    font-weight: 600;
  }
  
  
  
  
  
  
  
