
/* CSS para os cards do começo da tela */
.cor_juripraxis {
    color: #0000A3;
}

.destaque {
    font-weight: bold;
}


.centro {
    text-align: center;
}

.card {
    border: none;
    /* background-color: #f8f9fa; */
    background-color: #ffffff;
    text-align: center;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* GERA SOMBRA EM TODOS OS CARDS */
    transition: transform 0.2s, box-shadow 0.2s; /* GERA SOMBRA EM TODOS OS CARDS */
}

.card:hover {
    transform: translateY(-5px); /* GERA SOMBRA EM TODOS OS CARDS */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* GERA SOMBRA EM TODOS OS CARDS */
}

.card-body {
    color: #444444;
}
.card-icon {
    font-size: 2em;
    color: #0000A3;
}
.card-title {
    font-size: 1.2em;
    margin-top: 10px;
    text-align: left;
}

.card-title::after {
    content: "";
    display: block;
    width: 30px;
    height: 3px;
    background: #0000A3;
    bottom: 0;
    left: 0;
}


.card-text {
    font-size: 0.9em;
    margin-top: 10px;
    text-align: justify;
}


/* CSS para a parte da Metodologia */
.box-img-methodology {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.box-txt-methodology {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.box-txt-methodology h2 {
    margin-bottom: 20px;
    color: #444444;
}
.box-txt-methodology p {
    color: #666666;
}
.box-txt-methodology .btn-primary {
    margin-top: 20px;
    background-color: #0000A3;
    border: none;
}

/* CSS para a parte do computador  */
.computer-img {
    position: relative;
    width: 100%;
    max-width: 400px;
}
.computer-screen {
    position: absolute;
    top: 12%;
    left: 12%;
    width: 76%;
    height: 64%;
    overflow: hidden;
}
.computer-screen img {
    width: 100%;
    height: auto;
}

/* CSS para a parte do FAQ  */
.faq-section {
    margin: 40px 0;
}
.faq-title {
    text-align: center;
    margin-bottom: 20px;
}
.accordion-button::after {
    background-image: none;
    font-size: 1.5rem;
    color: #0000A3;
}
.accordion-button.collapsed::after {
    content: '\2212'; /* minus sign */
}

/* CSS para a parte do Carrossel  */
.carousel-item img {
    width: 100%;
    height: 500px; /* Define a altura fixa */
    object-fit: cover; /* Ajusta a imagem para cobrir o contêiner */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    /* background-color: #0000A3; Cor dos controles */
    border-radius: 1%;
    width: 50px;
    height: 50px;
}



/* Botão de check do cadastro */
.form-check1.form-switch1 {
    display: flex;
    align-items: center;
}

.form-check1.form-switch1 .switch-input1 {
    width: 40px;
    height: 20px;
    background-color: #ccc;
    border-radius: 20px;
    position: relative;
    appearance: none;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}

.form-check1.form-switch1 .switch-input1::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.form-check1.form-switch1 .switch-input1:checked {
    background-color: #007bff;
}

.form-check1.form-switch1 .switch-input1:checked::before {
    transform: translateX(20px);
}

.form-check1.form-switch1 .switch-label1 {
    margin: 0;
}


.espacamento {
    line-height: 2;
}



.strikethrough {
    text-decoration: line-through;
}

.discounted-price {
    color: red;
}

/* CSS para acertar o carrossel das trilhas */
.carousel-img {
    height: 250px; /* Define uma altura fixa */
    object-fit: contain; /* Garante que a imagem não seja cortada */
    object-position: center; /* Centraliza a imagem dentro do container */
    background-color: #f8f9fa; /* Cor de fundo para evitar bordas brancas no contraste */
}

@media (max-width: 768px) {
    .carousel-img {
        height: 200px; /* Reduz a altura em dispositivos menores */
    }
}


.card-cabecalho{
    background-color:rgba(0, 0, 92, 0.9); /* Cor do header */
    padding: 0px;
    margin: 0px;
    text-align: center;
    width: 100%;
    border-radius: 10px 10px 0px 0px;
}

.card-cabecalho h3{
    color: white; /* Cor do texto */
}

.card-cabecalho h4{
    color: white; /* Cor do texto */
}