/* Estilos customizados para os slides (se utilizado em outras partes do projeto) */
.slide {
    display: none;
}
.slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.logo {
    max-width: 200px;
}

.container_conteudo {
    min-height: calc(100vh - 82px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos gerais */
body {
    background-color: rgb(231, 231, 231);
    width: 100%;
    min-height: 100%;
    padding: 0;
}

input,
select,
textarea {
    font-size: 16px !important; /* Garante que o zoom não ocorra */
}

#background {
    min-height: calc(100vh - 82px);
    background: url(../../img/padrao-cinza.svg); /* camada inferior: imagem */
    background-color: white; /* cor de fundo, caso as camadas não cubram todo o espaço */
}

.fs-7 {
    font-size: 0.7rem;
}

.fs-8 {
    font-size: 0.8rem;
}

.progress-bar {
    background: #000d1e;
    color: #000d1e;
}

/* Estilo do footer */
footer {
    background: #000d1e;
    height: auto;
}

/* Tamanho de fonte para o texto principal do footer */
footer .texteprin {
    font-size: 0.7rem;
}

footer .politica {
    font-size: 0.8rem;
    font-weight: 600;
}

footer .dev {
    font-size: 0.7rem;
    font-weight: 500;
}

#logoCPQuali {
    width: 200px;
}

.btn-personalizado {
    background: #000d1e;
    width: 90%;
    height: 60px;
    font-weight: bolder;
    transition: ease-in-out 0.1s;
}

.btn-personalizado:hover {
    background: #00295f;
    color: white;
    font-weight: bolder;
    scale: 102%;
}

/* Custom styles for slide transitions */
.slide {
    display: none;
}

.slide.active {
    display: block;
}

.btn:disabled {
    background: #00295f;
}

/* Animation keyframes */
@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutToLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutToRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

input:active {
    border: none;
}

.fs-9 {
    font-size: 0.9rem;
}

#reviewContent ul {
    list-style: none; /* Remove as bolinhas */
    padding: 0; /* Remove espaçamento extra */
    margin: 0;
}

/* Estilos CSS customizados */
.notification-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 5px;
}

.notification-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    text-align: center;

    width: 100%;
}

.notification-card h2 {
    color: #36245d;
    font-size: 2rem;
    margin-bottom: 20px;
}

.notification-card .success-message {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.notification-card .details {
    font-size: 1rem;
    color: #666;
}

.notification-card hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 20px 0;
}

.notification-card .alert-message {
    font-weight: bold;
    color: #555;
    margin-bottom: 25px;
}

.notification-card .btn-info {
    background: #36245d;
    color: #fff;
    transition: background 0.3s;
}

.notification-card .btn-info:hover {
    background: #27ae60;
}

.fw-light {
    line-height: 1.2;
}

/* Estilização da tela de introdução (overlay) */
#introSlide {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #20284e21, #36245dda);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    z-index: 1000; /* Fica acima do conteúdo */
}

/* Cartão centralizado */
#introSlide .card {
    background: #fff;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 100%;
    max-width: 60%;
}

/* Espaçamento interno do cartão */
#introSlide .card-body {
    padding: 40px;
}

/* Título */
#introSlide h2 {
    font-size: 2.5rem;
    color: #36245d;
    margin-bottom: 20px;
}

/* Parágrafos */
#introSlide p {
    font-size: 1.2rem;
    color: #00295f;
    margin-bottom: 15px;
    line-height: 1.5;
}

#introSlide .card {
    max-width: 80%;
}

/* Botão personalizado */
.btn-personalizado {
    background-color: #36245d;
    border: none;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
}

.btn-personalizado:hover {
    background-color: #20284e;
}

/* Ajustes para dispositivos móveis */
@media (max-width: 576px) {
    .container_conteudo {
        min-height: calc(100vh - 170px);
    }

    .logo {
        max-width: 130px;
    }

    .lead {
        font-size: 0.9rem;
    }

    #introSlide {
        padding: 15px;
    }
    #introSlide .card-body {
        padding: 20px;
    }

    #introSlide .card {
        max-width: 90%;
        position: relative;
        top: -40px;
    }

    .politica {
        margin-top: 25px;
    }
    #introSlide h2 {
        font-size: 1.8rem;
    }
    #introSlide p {
        font-size: 1rem;
    }
    .btn-personalizado {
        padding: 10px 10px;
        width: 100%;
        font-size: 0.8rem;
    }

    footer {
        height: auto;
        font-size: 0.7rem;
    }

    .tituloCamapnha {
        font-size: 1.8rem;
        font-weight: 500;
    }

    footer p {
        margin: 20px;
    }

    .notification-card h2 {
        font-size: 1.6rem;
    }

    .text-center {
        text-align: justify;
        word-wrap: break-word;
        hyphens: auto;
    }
}
