/**
 * Estilos para o sistema de voucher
 */

.voucher-download-section {
    margin: 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.voucher-download-section h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.5em;
    font-weight: 600;
}

.voucher-download-section p {
    margin-bottom: 20px;
    color: #666;
    font-size: 1.1em;
}

.voucher-download-btn {
    background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
    color: white !important;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,124,186,0.3);
}

.voucher-download-btn:hover {
    background: linear-gradient(135deg, #005a87 0%, #004466 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,124,186,0.4);
    color: white !important;
    text-decoration: none;
}

.voucher-download-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,124,186,0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .voucher-download-section {
        margin: 15px 0;
        padding: 15px;
    }
    
    .voucher-download-section h3 {
        font-size: 1.3em;
    }
    
    .voucher-download-section p {
        font-size: 1em;
    }
    
    .voucher-download-btn {
        padding: 10px 20px;
        font-size: 1em;
        width: 100%;
        max-width: 300px;
    }
} 