﻿/* Ajusta os checks do checkbox no centro do quadrado */
.btn-search-center {
    margin: auto auto -3px 15px;
    width: 100%;
}

.icheck-primary input[type="checkbox"] + label::before {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: normal;
}

.icheck-primary input[type="checkbox"] + label::after {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    width: 100%;
    height: 100%;
}
/* Fim ajustes checkbox */


.divRestringir {
    min-width: 150px;
    text-align: center;
}

/* Não quebrar as linhas das tabelas */
tr {
    white-space: nowrap;
    min-width: 150px;
}

/* Ajustes input type file: Oculta o botão interno do input file no Chrome, Edge, Safari */
input[type="file"]::-webkit-file-upload-button {
    visibility: hidden;
}
/* Para Firefox */
input[type="file"]::file-selector-button {
    visibility: hidden;
}
/* Estiliza o input como se fosse um campo de texto */
input[type="file"] {
    border: 1px solid #ced4da;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    color: #6c757d;
    background-color: #fff;
}
/* Fim estilos input type file */


/* Estiliza Meus Planos */
.list-group-item {
    transition: all 0.2s ease-in-out;
    padding: 1.5rem;
}

.list-group-item:hover {
    background-color: #f8f9fa;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.badge {
    font-size: 0.85rem;
    padding: 0.4em 0.6em;
    border-radius: 0.5rem;
}

.bg-gradient-green:hover {
    background-color: #28a745;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Cor de fundo das telas */
.content-wrapper {
    background: #fffbf4;
}


/* Estiliza a página de Produtos Disponíveis */
/* Estiliza a página de Produtos Disponíveis */
.card-produto {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 1100px;
    margin: 0 auto;
}

.card-conteudo {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.card-info {
    flex: 1;
/*    min-width: 300px;*/
}

.card-info h5 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-info p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #6c757d;
}

.card-valor {
    font-size: 1rem;
    font-weight: bold;
    color: #007bff;
    white-space: nowrap;
    min-width: 120px;
    margin-right: 70px;
}

.btn-interesse {
    padding: 10px 18px;
    font-size: 0.95rem;
    border-radius: 8px;
    font-weight: bold;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}
h4.text-info {
    border-color: #0dcaf0;
}
h4.text-info {
    border-color: #0dcaf0;
}

.corGradienteMarrom {
    background: #331109;
    background: linear-gradient(90deg, rgb(53, 10, 0) 0%, rgb(85, 12, 0) 35%, rgb(145, 0, 0) 100%);
}

.corLogin {
    background: #300a0a;
    background: radial-gradient(circle, rgba(48, 10, 10, 1) 12%, rgba(54, 19, 19, 1) 100%);
}

.corLoginClaro {
    background: #fffbf3;   
}