/* Suporte */
.secao-suporte {
    background: linear-gradient(140deg, #4BF5FA, #3CB9EB);
    padding: 40px 0;
    border-radius: 15px;
}

/* Título */
.suporte-titulo {
    font-size: 22px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

/* Subtítulo */
.suporte-subtitulo {
    font-size: 14px;
    color: white;
    margin-bottom: 20px;
}

/* Input */
.suporte-input {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    outline: none;
}

/* Botão Enviar */
.btn-enviar-suporte {
    background: linear-gradient(90deg, #D15153, #862EF6);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
}

.btn-enviar-suporte:hover {
    background: linear-gradient(90deg, #862EF6, #D15153);
}

/*tutorial*/

.tutorial {
    padding: 40px 0;
}

.tutorial h2 {
    color: #3EBBEB;
    font-weight: bold;
    font-size: 1.8rem;
    text-align: center;
}

.card-tutorial {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    margin: 20px;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.card-tutorial:hover {
    transform: scale(1.03);
}

.card-tutorial h5 {
    margin-top: 10px;
    text-align: center;
    color: #828282;
}

/* Modal base */
.modal-tutorial {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}


/* Conteúdo do modal */
.modal-tutorial-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    width: 600px;
    max-width: 95%;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

.modal-tutorial-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.modal-tutorial-title h4 {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.tutorial-video-placeholder {
    background: #888;
    height: 300px;
    border-radius: 16px;
    margin: 20px 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tutorial-video-placeholder .play-icon {
    font-size: 50px;
    color: white;
    cursor: pointer;
    background-color: #3CB9EB;
    padding: 0px 20px;
    border-radius: 10px;
    transition: .3s ease;
}

.tutorial-video-placeholder .play-icon:hover {
    background-color: #2E6DA4;
}

/* Botão */
.btn-fechar-tutorial {
    background: #6751d1;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


/*Sugerir Melhoria */
.sugerir-melhoria {
    padding: 40px 0;
}

/* Título da seção */
.sugerir-melhoria .titulo-secao {
    font-size: 22px;
    font-weight: bold;
    color: #3EBBEB;
    margin-bottom: 20px;
}

/* Imagem principal */
.sugerir-melhoria .imagem-principal {
    border-radius: 20px;
    object-fit: cover;
}

/* Cards (Feedback e Sugestão) */
.sugerir-melhoria .card-feedback,
.sugerir-melhoria .card-sugestao {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    height: 350px;
}

.sugerir-melhoria .card-feedback h3,
.sugerir-melhoria .card-sugestao h3 {
    font-size: 20px;
    color: black;
    font-weight: bold;
    margin-top: 30px;
}

.sugerir-melhoria .card-feedback p,
.sugerir-melhoria .card-sugestao p {
    color: #8A8A8A;
}

/* Campos de input */
.sugerir-melhoria .form-control {
    width: 100%;
    height: 80px;
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 10px;
}

/* Botão de Enviar */
.sugerir-melhoria .btn-enviar {
    background: #3EBBEB;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease;
    width: 250px;
}

.sugerir-melhoria .btn-enviar:hover {
    transform: scale(1.05);
}

/*responsividade*/
@media (max-width: 768px) {

    .sugerir-melhoria .card-feedback h3,
    .sugerir-melhoria .card-sugestao h3 {
        font-size: 100%;
        margin-top: 0px;
    }

    .sugerir-melhoria .btn-enviar {
        width: 100%;
    }

    .sugerir-melhoria .card-feedback,
    .sugerir-melhoria .card-sugestao {
        width: 100%;
    }

    .tutorial h2 {
        font-size: 100%;
    }
}