﻿.manual-candidato {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 480px;
    min-height: 90px;
    padding: 12px 20px;
    color: #fff;
    background: linear-gradient(135deg, #064b4e, #063d40);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 3px 8px rgba(0, 0, 0, .18);
    transition: transform .2s ease, box-shadow .2s ease;
}

    .manual-candidato:hover {
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 5px 12px rgba(0, 0, 0, .25);
    }

.manual-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    border: 1px solid #22d4d2;
    border-radius: 50%;
    color: #fff;
    flex-shrink: 0;
}

    .manual-icon > .bi-book {
        font-size: 43px;
        line-height: 1;
    }

.manual-download {
    position: absolute;
    right: -7px;
    bottom: -5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #fff;
    background: #079c9c;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 17px;
}

.manual-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

    .manual-text small {
        margin-bottom: 4px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1px;
        color: #d6eeee;
    }

    .manual-text strong {
        font-size: 25px;
        font-weight: 800;
        letter-spacing: .5px;
    }

        .manual-text strong:first-of-type {
            color: #11d0cc;
        }

        .manual-text strong:last-of-type {
            color: #fff;
            font-size: 20px;
            margin-top: 3px;
        }

/* Ajuste para telas pequenas */
@media (max-width: 400px) {
    .manual-candidato {
        gap: 10px;
        padding: 10px 14px;
    }

    .manual-icon {
        width: 65px;
        height: 58px;
    }

        .manual-icon > .bi-book {
            font-size: 36px;
        }

    .manual-text strong {
        font-size: 21px;
    }

        .manual-text strong:last-of-type {
            font-size: 17px;
        }
}

.video-reserva {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 480px;
    min-height: 90px;
    padding: 12px 20px;
    color: #fff;
    background: linear-gradient(135deg, #063b4b, #032b3c);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 3px 8px rgba(0, 0, 0, .18);
    transition: transform .2s ease, box-shadow .2s ease;
}

    .video-reserva:hover {
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 5px 12px rgba(0, 0, 0, .25);
    }

.video-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    flex-shrink: 0;
    color: #fff;
    border: 2px solid #00cdd0;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0, 205, 208, .08), inset 0 0 12px rgba(0, 205, 208, .15);
}

    .video-icon .bi-play-fill {
        font-size: 38px;
        line-height: 1;
        margin-left: 4px;
    }

.video-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

    .video-text small {
        margin-bottom: 5px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .8px;
        color: #d5eeee;
    }

    .video-text strong {
        font-size: 25px;
        font-weight: 800;
        letter-spacing: .5px;
        color: #0bd0ce;
    }

        .video-text strong:last-of-type {
            margin-top: 2px;
        }

@media (max-width: 400px) {
    .video-reserva {
        gap: 10px;
        padding: 10px 14px;
    }

    .video-icon {
        width: 60px;
        height: 60px;
    }

        .video-icon .bi-play-fill {
            font-size: 34px;
        }

    .video-text strong {
        font-size: 21px;
    }

    .video-text small {
        font-size: 10px;
    }
}